From 78a4cb3c37ab53f15e89779c2830066d74235395 Mon Sep 17 00:00:00 2001 From: Welton Moura Date: Tue, 10 Dec 2024 10:32:13 -0300 Subject: [PATCH] first commit --- comandos.txt | 7 + gestaoRaul/__pycache__/manage.cpython-310.pyc | Bin 0 -> 839 bytes gestaoRaul/categories/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 163 bytes .../__pycache__/admin.cpython-310.pyc | Bin 0 -> 204 bytes .../__pycache__/apps.cpython-310.pyc | Bin 0 -> 450 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 612 bytes .../__pycache__/urls.cpython-310.pyc | Bin 0 -> 299 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 341 bytes gestaoRaul/categories/admin.py | 3 + gestaoRaul/categories/apps.py | 6 + .../categories/migrations/0001_initial.py | 21 + .../0002_rename_category_categories.py | 17 + gestaoRaul/categories/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 633 bytes ...rename_category_categories.cpython-310.pyc | Bin 0 -> 553 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 174 bytes gestaoRaul/categories/models.py | 10 + .../categories/templates/categories.html | 11 + gestaoRaul/categories/tests.py | 3 + gestaoRaul/categories/urls.py | 10 + gestaoRaul/categories/views.py | 6 + gestaoRaul/clients/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 160 bytes .../clients/__pycache__/admin.cpython-310.pyc | Bin 0 -> 201 bytes .../clients/__pycache__/apps.cpython-310.pyc | Bin 0 -> 441 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 556 bytes .../clients/__pycache__/urls.cpython-310.pyc | Bin 0 -> 311 bytes .../clients/__pycache__/views.cpython-310.pyc | Bin 0 -> 332 bytes gestaoRaul/clients/admin.py | 3 + gestaoRaul/clients/apps.py | 6 + gestaoRaul/clients/migrations/0001_initial.py | 23 + gestaoRaul/clients/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 726 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 171 bytes gestaoRaul/clients/models.py | 8 + gestaoRaul/clients/templates/clients.html | 12 + gestaoRaul/clients/tests.py | 3 + gestaoRaul/clients/urls.py | 10 + gestaoRaul/clients/views.py | 6 + gestaoRaul/comandas/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 161 bytes .../__pycache__/admin.cpython-310.pyc | Bin 0 -> 202 bytes .../comandas/__pycache__/apps.cpython-310.pyc | Bin 0 -> 444 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 1259 bytes .../comandas/__pycache__/urls.cpython-310.pyc | Bin 0 -> 295 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 335 bytes gestaoRaul/comandas/admin.py | 3 + gestaoRaul/comandas/apps.py | 6 + .../comandas/migrations/0001_initial.py | 30 + .../migrations/0002_productcomanda.py | 25 + gestaoRaul/comandas/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1094 bytes .../0002_productcomanda.cpython-310.pyc | Bin 0 -> 963 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 172 bytes gestaoRaul/comandas/models.py | 23 + gestaoRaul/comandas/templates/comandas.html | 12 + gestaoRaul/comandas/tests.py | 3 + gestaoRaul/comandas/urls.py | 10 + gestaoRaul/comandas/views.py | 6 + gestaoRaul/db.sqlite3 | Bin 0 -> 131072 bytes gestaoRaul/gestaoRaul/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 163 bytes .../__pycache__/settings.cpython-310.pyc | Bin 0 -> 2556 bytes .../__pycache__/urls.cpython-310.pyc | Bin 0 -> 1209 bytes .../__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 572 bytes gestaoRaul/gestaoRaul/asgi.py | 16 + gestaoRaul/gestaoRaul/settings.py | 135 + gestaoRaul/gestaoRaul/urls.py | 30 + gestaoRaul/gestaoRaul/wsgi.py | 16 + gestaoRaul/manage.py | 22 + gestaoRaul/mesas/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 158 bytes .../mesas/__pycache__/admin.cpython-310.pyc | Bin 0 -> 199 bytes .../mesas/__pycache__/apps.cpython-310.pyc | Bin 0 -> 435 bytes .../mesas/__pycache__/models.cpython-310.pyc | Bin 0 -> 573 bytes .../mesas/__pycache__/urls.cpython-310.pyc | Bin 0 -> 289 bytes .../mesas/__pycache__/views.cpython-310.pyc | Bin 0 -> 326 bytes gestaoRaul/mesas/admin.py | 3 + gestaoRaul/mesas/apps.py | 6 + gestaoRaul/mesas/migrations/0001_initial.py | 23 + gestaoRaul/mesas/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 728 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 169 bytes gestaoRaul/mesas/models.py | 13 + gestaoRaul/mesas/templates/mesas.html | 56 + gestaoRaul/mesas/tests.py | 3 + gestaoRaul/mesas/urls.py | 10 + gestaoRaul/mesas/views.py | 6 + gestaoRaul/products/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 161 bytes .../__pycache__/admin.cpython-310.pyc | Bin 0 -> 202 bytes .../products/__pycache__/apps.cpython-310.pyc | Bin 0 -> 444 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 902 bytes .../products/__pycache__/urls.cpython-310.pyc | Bin 0 -> 313 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 335 bytes gestaoRaul/products/admin.py | 3 + gestaoRaul/products/apps.py | 6 + .../products/migrations/0001_initial.py | 27 + gestaoRaul/products/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1027 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 172 bytes gestaoRaul/products/models.py | 15 + gestaoRaul/products/templates/products.html | 12 + gestaoRaul/products/tests.py | 3 + gestaoRaul/products/urls.py | 10 + gestaoRaul/products/views.py | 5 + gestaoRaul/templates/base.html | 17 + .../templates/static/mesas/css/mesas.css | 26 + gestaoRaul/typePay/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 160 bytes .../typePay/__pycache__/admin.cpython-310.pyc | Bin 0 -> 201 bytes .../typePay/__pycache__/apps.cpython-310.pyc | Bin 0 -> 441 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 463 bytes .../typePay/__pycache__/urls.cpython-310.pyc | Bin 0 -> 293 bytes .../typePay/__pycache__/views.cpython-310.pyc | Bin 0 -> 332 bytes gestaoRaul/typePay/admin.py | 3 + gestaoRaul/typePay/apps.py | 6 + gestaoRaul/typePay/migrations/0001_initial.py | 21 + gestaoRaul/typePay/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 629 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 171 bytes gestaoRaul/typePay/models.py | 6 + gestaoRaul/typePay/templates/typePay.html | 12 + gestaoRaul/typePay/tests.py | 3 + gestaoRaul/typePay/urls.py | 10 + gestaoRaul/typePay/views.py | 6 + .../Django-5.1.4.dist-info/AUTHORS | 1106 ++ .../Django-5.1.4.dist-info/INSTALLER | 1 + .../Django-5.1.4.dist-info/LICENSE | 27 + .../Django-5.1.4.dist-info/LICENSE.python | 288 + .../Django-5.1.4.dist-info/METADATA | 101 + .../Django-5.1.4.dist-info/RECORD | 4540 +++++++ .../Django-5.1.4.dist-info/REQUESTED | 0 .../Django-5.1.4.dist-info/WHEEL | 5 + .../Django-5.1.4.dist-info/entry_points.txt | 2 + .../Django-5.1.4.dist-info/top_level.txt | 1 + .../typing_extensions.cpython-310.pyc | Bin 0 -> 100331 bytes .../site-packages/_distutils_hack/__init__.py | 222 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7585 bytes .../__pycache__/override.cpython-310.pyc | Bin 0 -> 238 bytes .../site-packages/_distutils_hack/override.py | 1 + .../asgiref-3.8.1.dist-info/INSTALLER | 1 + .../asgiref-3.8.1.dist-info/LICENSE | 27 + .../asgiref-3.8.1.dist-info/METADATA | 246 + .../asgiref-3.8.1.dist-info/RECORD | 27 + .../asgiref-3.8.1.dist-info/WHEEL | 5 + .../asgiref-3.8.1.dist-info/top_level.txt | 1 + .../Lib/site-packages/asgiref/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 200 bytes .../__pycache__/compatibility.cpython-310.pyc | Bin 0 -> 1448 bytes .../current_thread_executor.cpython-310.pyc | Bin 0 -> 3517 bytes .../asgiref/__pycache__/local.cpython-310.pyc | Bin 0 -> 4222 bytes .../__pycache__/server.cpython-310.pyc | Bin 0 -> 5758 bytes .../asgiref/__pycache__/sync.cpython-310.pyc | Bin 0 -> 13738 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 3187 bytes .../__pycache__/timeout.cpython-310.pyc | Bin 0 -> 3307 bytes .../__pycache__/typing.cpython-310.pyc | Bin 0 -> 7593 bytes .../asgiref/__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 4829 bytes .../site-packages/asgiref/compatibility.py | 48 + .../asgiref/current_thread_executor.py | 115 + .../Lib/site-packages/asgiref/local.py | 128 + .../Lib/site-packages/asgiref/py.typed | 0 .../Lib/site-packages/asgiref/server.py | 157 + gestao_raul/Lib/site-packages/asgiref/sync.py | 613 + .../Lib/site-packages/asgiref/testing.py | 103 + .../Lib/site-packages/asgiref/timeout.py | 118 + .../Lib/site-packages/asgiref/typing.py | 278 + gestao_raul/Lib/site-packages/asgiref/wsgi.py | 166 + .../site-packages/distutils-precedence.pth | 1 + .../Lib/site-packages/django/__init__.py | 24 + .../Lib/site-packages/django/__main__.py | 10 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 998 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 412 bytes .../__pycache__/shortcuts.cpython-310.pyc | Bin 0 -> 5481 bytes .../Lib/site-packages/django/apps/__init__.py | 4 + .../apps/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 289 bytes .../apps/__pycache__/config.cpython-310.pyc | Bin 0 -> 6311 bytes .../apps/__pycache__/registry.cpython-310.pyc | Bin 0 -> 13066 bytes .../Lib/site-packages/django/apps/config.py | 274 + .../Lib/site-packages/django/apps/registry.py | 437 + .../Lib/site-packages/django/conf/__init__.py | 272 + .../conf/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9380 bytes .../global_settings.cpython-310.pyc | Bin 0 -> 9249 bytes .../django/conf/app_template/__init__.py-tpl | 0 .../django/conf/app_template/admin.py-tpl | 3 + .../django/conf/app_template/apps.py-tpl | 6 + .../app_template/migrations/__init__.py-tpl | 0 .../django/conf/app_template/models.py-tpl | 3 + .../django/conf/app_template/tests.py-tpl | 3 + .../django/conf/app_template/views.py-tpl | 3 + .../django/conf/global_settings.py | 667 + .../django/conf/locale/__init__.py | 629 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7676 bytes .../conf/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 27068 bytes .../conf/locale/af/LC_MESSAGES/django.po | 1335 ++ .../conf/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 35688 bytes .../conf/locale/ar/LC_MESSAGES/django.po | 1389 ++ .../django/conf/locale/ar/__init__.py | 0 .../ar/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ar/__pycache__/formats.cpython-310.pyc | Bin 0 -> 401 bytes .../django/conf/locale/ar/formats.py | 21 + .../conf/locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 33960 bytes .../conf/locale/ar_DZ/LC_MESSAGES/django.po | 1397 ++ .../django/conf/locale/ar_DZ/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../ar_DZ/__pycache__/formats.cpython-310.pyc | Bin 0 -> 666 bytes .../django/conf/locale/ar_DZ/formats.py | 29 + .../conf/locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 15579 bytes .../conf/locale/ast/LC_MESSAGES/django.po | 1237 ++ .../conf/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 28595 bytes .../conf/locale/az/LC_MESSAGES/django.po | 1347 ++ .../django/conf/locale/az/__init__.py | 0 .../az/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../az/__pycache__/formats.cpython-310.pyc | Bin 0 -> 726 bytes .../django/conf/locale/az/formats.py | 30 + .../conf/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 37554 bytes .../conf/locale/be/LC_MESSAGES/django.po | 1391 ++ .../conf/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 34729 bytes .../conf/locale/bg/LC_MESSAGES/django.po | 1353 ++ .../django/conf/locale/bg/__init__.py | 0 .../bg/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../bg/__pycache__/formats.cpython-310.pyc | Bin 0 -> 359 bytes .../django/conf/locale/bg/formats.py | 21 + .../conf/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 16660 bytes .../conf/locale/bn/LC_MESSAGES/django.po | 1218 ++ .../django/conf/locale/bn/__init__.py | 0 .../bn/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../bn/__pycache__/formats.cpython-310.pyc | Bin 0 -> 615 bytes .../django/conf/locale/bn/formats.py | 32 + .../conf/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 14009 bytes .../conf/locale/br/LC_MESSAGES/django.po | 1297 ++ .../conf/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 10824 bytes .../conf/locale/bs/LC_MESSAGES/django.po | 1238 ++ .../django/conf/locale/bs/__init__.py | 0 .../bs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../bs/__pycache__/formats.cpython-310.pyc | Bin 0 -> 428 bytes .../django/conf/locale/bs/formats.py | 21 + .../conf/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 27707 bytes .../conf/locale/ca/LC_MESSAGES/django.po | 1340 ++ .../django/conf/locale/ca/__init__.py | 0 .../ca/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ca/__pycache__/formats.cpython-310.pyc | Bin 0 -> 748 bytes .../django/conf/locale/ca/formats.py | 30 + .../conf/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 34015 bytes .../conf/locale/ckb/LC_MESSAGES/django.po | 1332 ++ .../django/conf/locale/ckb/__init__.py | 0 .../ckb/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../ckb/__pycache__/formats.cpython-310.pyc | Bin 0 -> 518 bytes .../django/conf/locale/ckb/formats.py | 21 + .../conf/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 30186 bytes .../conf/locale/cs/LC_MESSAGES/django.po | 1388 ++ .../django/conf/locale/cs/__init__.py | 0 .../cs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../cs/__pycache__/formats.cpython-310.pyc | Bin 0 -> 862 bytes .../django/conf/locale/cs/formats.py | 43 + .../conf/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 18319 bytes .../conf/locale/cy/LC_MESSAGES/django.po | 1278 ++ .../django/conf/locale/cy/__init__.py | 0 .../cy/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../cy/__pycache__/formats.cpython-310.pyc | Bin 0 -> 773 bytes .../django/conf/locale/cy/formats.py | 33 + .../conf/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 27799 bytes .../conf/locale/da/LC_MESSAGES/django.po | 1341 ++ .../django/conf/locale/da/__init__.py | 0 .../da/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../da/__pycache__/formats.cpython-310.pyc | Bin 0 -> 653 bytes .../django/conf/locale/da/formats.py | 26 + .../conf/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 29167 bytes .../conf/locale/de/LC_MESSAGES/django.po | 1356 ++ .../django/conf/locale/de/__init__.py | 0 .../de/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../de/__pycache__/formats.cpython-310.pyc | Bin 0 -> 667 bytes .../django/conf/locale/de/formats.py | 29 + .../django/conf/locale/de_CH/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../de_CH/__pycache__/formats.cpython-310.pyc | Bin 0 -> 674 bytes .../django/conf/locale/de_CH/formats.py | 35 + .../conf/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 30724 bytes .../conf/locale/dsb/LC_MESSAGES/django.po | 1392 ++ .../conf/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 33648 bytes .../conf/locale/el/LC_MESSAGES/django.po | 1332 ++ .../django/conf/locale/el/__init__.py | 0 .../el/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../el/__pycache__/formats.cpython-310.pyc | Bin 0 -> 764 bytes .../django/conf/locale/el/formats.py | 34 + .../conf/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../conf/locale/en/LC_MESSAGES/django.po | 1614 +++ .../django/conf/locale/en/__init__.py | 0 .../en/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../en/__pycache__/formats.cpython-310.pyc | Bin 0 -> 929 bytes .../django/conf/locale/en/formats.py | 65 + .../conf/locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 25633 bytes .../conf/locale/en_AU/LC_MESSAGES/django.po | 1299 ++ .../django/conf/locale/en_AU/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../en_AU/__pycache__/formats.cpython-310.pyc | Bin 0 -> 776 bytes .../django/conf/locale/en_AU/formats.py | 41 + .../django/conf/locale/en_CA/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../en_CA/__pycache__/formats.cpython-310.pyc | Bin 0 -> 723 bytes .../django/conf/locale/en_CA/formats.py | 31 + .../conf/locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 12108 bytes .../conf/locale/en_GB/LC_MESSAGES/django.po | 1221 ++ .../django/conf/locale/en_GB/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../en_GB/__pycache__/formats.cpython-310.pyc | Bin 0 -> 776 bytes .../django/conf/locale/en_GB/formats.py | 41 + .../django/conf/locale/en_IE/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../en_IE/__pycache__/formats.cpython-310.pyc | Bin 0 -> 822 bytes .../django/conf/locale/en_IE/formats.py | 37 + .../conf/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 27676 bytes .../conf/locale/eo/LC_MESSAGES/django.po | 1331 ++ .../django/conf/locale/eo/__init__.py | 0 .../eo/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../eo/__pycache__/formats.cpython-310.pyc | Bin 0 -> 929 bytes .../django/conf/locale/eo/formats.py | 44 + .../conf/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 29265 bytes .../conf/locale/es/LC_MESSAGES/django.po | 1412 ++ .../django/conf/locale/es/__init__.py | 0 .../es/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../es/__pycache__/formats.cpython-310.pyc | Bin 0 -> 765 bytes .../django/conf/locale/es/formats.py | 30 + .../conf/locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 29668 bytes .../conf/locale/es_AR/LC_MESSAGES/django.po | 1377 ++ .../django/conf/locale/es_AR/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../es_AR/__pycache__/formats.cpython-310.pyc | Bin 0 -> 729 bytes .../django/conf/locale/es_AR/formats.py | 30 + .../conf/locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 18079 bytes .../conf/locale/es_CO/LC_MESSAGES/django.po | 1258 ++ .../django/conf/locale/es_CO/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../es_CO/__pycache__/formats.cpython-310.pyc | Bin 0 -> 770 bytes .../django/conf/locale/es_CO/formats.py | 26 + .../conf/locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 18501 bytes .../conf/locale/es_MX/LC_MESSAGES/django.po | 1279 ++ .../django/conf/locale/es_MX/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../es_MX/__pycache__/formats.cpython-310.pyc | Bin 0 -> 770 bytes .../django/conf/locale/es_MX/formats.py | 26 + .../django/conf/locale/es_NI/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../es_NI/__pycache__/formats.cpython-310.pyc | Bin 0 -> 770 bytes .../django/conf/locale/es_NI/formats.py | 26 + .../django/conf/locale/es_PR/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../es_PR/__pycache__/formats.cpython-310.pyc | Bin 0 -> 764 bytes .../django/conf/locale/es_PR/formats.py | 27 + .../conf/locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 18840 bytes .../conf/locale/es_VE/LC_MESSAGES/django.po | 1260 ++ .../conf/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 27273 bytes .../conf/locale/et/LC_MESSAGES/django.po | 1341 ++ .../django/conf/locale/et/__init__.py | 0 .../et/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../et/__pycache__/formats.cpython-310.pyc | Bin 0 -> 361 bytes .../django/conf/locale/et/formats.py | 21 + .../conf/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 21725 bytes .../conf/locale/eu/LC_MESSAGES/django.po | 1313 ++ .../django/conf/locale/eu/__init__.py | 0 .../eu/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../eu/__pycache__/formats.cpython-310.pyc | Bin 0 -> 542 bytes .../django/conf/locale/eu/formats.py | 21 + .../conf/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 31655 bytes .../conf/locale/fa/LC_MESSAGES/django.po | 1343 ++ .../django/conf/locale/fa/__init__.py | 0 .../fa/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../fa/__pycache__/formats.cpython-310.pyc | Bin 0 -> 511 bytes .../django/conf/locale/fa/formats.py | 21 + .../conf/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 27865 bytes .../conf/locale/fi/LC_MESSAGES/django.po | 1332 ++ .../django/conf/locale/fi/__init__.py | 0 .../fi/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../fi/__pycache__/formats.cpython-310.pyc | Bin 0 -> 801 bytes .../django/conf/locale/fi/formats.py | 36 + .../conf/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 30291 bytes .../conf/locale/fr/LC_MESSAGES/django.po | 1394 ++ .../django/conf/locale/fr/__init__.py | 0 .../fr/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../fr/__pycache__/formats.cpython-310.pyc | Bin 0 -> 668 bytes .../django/conf/locale/fr/formats.py | 27 + .../django/conf/locale/fr_BE/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../fr_BE/__pycache__/formats.cpython-310.pyc | Bin 0 -> 746 bytes .../django/conf/locale/fr_BE/formats.py | 32 + .../django/conf/locale/fr_CA/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../fr_CA/__pycache__/formats.cpython-310.pyc | Bin 0 -> 750 bytes .../django/conf/locale/fr_CA/formats.py | 30 + .../django/conf/locale/fr_CH/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../fr_CH/__pycache__/formats.cpython-310.pyc | Bin 0 -> 746 bytes .../django/conf/locale/fr_CH/formats.py | 32 + .../conf/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 2286 bytes .../conf/locale/fy/LC_MESSAGES/django.po | 1218 ++ .../django/conf/locale/fy/__init__.py | 0 .../fy/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../fy/__pycache__/formats.cpython-310.pyc | Bin 0 -> 192 bytes .../django/conf/locale/fy/formats.py | 21 + .../conf/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 31429 bytes .../conf/locale/ga/LC_MESSAGES/django.po | 1426 ++ .../django/conf/locale/ga/__init__.py | 0 .../ga/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ga/__pycache__/formats.cpython-310.pyc | Bin 0 -> 355 bytes .../django/conf/locale/ga/formats.py | 21 + .../conf/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 30752 bytes .../conf/locale/gd/LC_MESSAGES/django.po | 1386 ++ .../django/conf/locale/gd/__init__.py | 0 .../gd/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../gd/__pycache__/formats.cpython-310.pyc | Bin 0 -> 462 bytes .../django/conf/locale/gd/formats.py | 21 + .../conf/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 28464 bytes .../conf/locale/gl/LC_MESSAGES/django.po | 1356 ++ .../django/conf/locale/gl/__init__.py | 0 .../gl/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../gl/__pycache__/formats.cpython-310.pyc | Bin 0 -> 529 bytes .../django/conf/locale/gl/formats.py | 21 + .../conf/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 32301 bytes .../conf/locale/he/LC_MESSAGES/django.po | 1351 ++ .../django/conf/locale/he/__init__.py | 0 .../he/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../he/__pycache__/formats.cpython-310.pyc | Bin 0 -> 474 bytes .../django/conf/locale/he/formats.py | 21 + .../conf/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 19712 bytes .../conf/locale/hi/LC_MESSAGES/django.po | 1254 ++ .../django/conf/locale/hi/__init__.py | 0 .../hi/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../hi/__pycache__/formats.cpython-310.pyc | Bin 0 -> 357 bytes .../django/conf/locale/hi/formats.py | 21 + .../conf/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 19457 bytes .../conf/locale/hr/LC_MESSAGES/django.po | 1274 ++ .../django/conf/locale/hr/__init__.py | 0 .../hr/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../hr/__pycache__/formats.cpython-310.pyc | Bin 0 -> 960 bytes .../django/conf/locale/hr/formats.py | 44 + .../conf/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 30380 bytes .../conf/locale/hsb/LC_MESSAGES/django.po | 1384 ++ .../conf/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 29197 bytes .../conf/locale/hu/LC_MESSAGES/django.po | 1358 ++ .../django/conf/locale/hu/__init__.py | 0 .../hu/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../hu/__pycache__/formats.cpython-310.pyc | Bin 0 -> 717 bytes .../django/conf/locale/hu/formats.py | 30 + .../conf/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 22207 bytes .../conf/locale/hy/LC_MESSAGES/django.po | 1237 ++ .../conf/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 21428 bytes .../conf/locale/ia/LC_MESSAGES/django.po | 1289 ++ .../conf/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 27405 bytes .../conf/locale/id/LC_MESSAGES/django.po | 1338 ++ .../django/conf/locale/id/__init__.py | 0 .../id/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../id/__pycache__/formats.cpython-310.pyc | Bin 0 -> 945 bytes .../django/conf/locale/id/formats.py | 49 + .../conf/locale/ig/LC_MESSAGES/django.mo | Bin 0 -> 27188 bytes .../conf/locale/ig/LC_MESSAGES/django.po | 1271 ++ .../django/conf/locale/ig/__init__.py | 0 .../ig/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ig/__pycache__/formats.cpython-310.pyc | Bin 0 -> 727 bytes .../django/conf/locale/ig/formats.py | 32 + .../conf/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 14317 bytes .../conf/locale/io/LC_MESSAGES/django.po | 1231 ++ .../conf/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 24273 bytes .../conf/locale/is/LC_MESSAGES/django.po | 1302 ++ .../django/conf/locale/is/__init__.py | 0 .../is/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../is/__pycache__/formats.cpython-310.pyc | Bin 0 -> 415 bytes .../django/conf/locale/is/formats.py | 21 + .../conf/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 28587 bytes .../conf/locale/it/LC_MESSAGES/django.po | 1367 ++ .../django/conf/locale/it/__init__.py | 0 .../it/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../it/__pycache__/formats.cpython-310.pyc | Bin 0 -> 932 bytes .../django/conf/locale/it/formats.py | 43 + .../conf/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 30945 bytes .../conf/locale/ja/LC_MESSAGES/django.po | 1331 ++ .../django/conf/locale/ja/__init__.py | 0 .../ja/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ja/__pycache__/formats.cpython-310.pyc | Bin 0 -> 522 bytes .../django/conf/locale/ja/formats.py | 21 + .../conf/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 24759 bytes .../conf/locale/ka/LC_MESSAGES/django.po | 1239 ++ .../django/conf/locale/ka/__init__.py | 0 .../ka/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ka/__pycache__/formats.cpython-310.pyc | Bin 0 -> 930 bytes .../django/conf/locale/ka/formats.py | 48 + .../conf/locale/kab/LC_MESSAGES/django.mo | Bin 0 -> 7139 bytes .../conf/locale/kab/LC_MESSAGES/django.po | 1211 ++ .../conf/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 13148 bytes .../conf/locale/kk/LC_MESSAGES/django.po | 1223 ++ .../conf/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 7223 bytes .../conf/locale/km/LC_MESSAGES/django.po | 1196 ++ .../django/conf/locale/km/__init__.py | 0 .../km/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../km/__pycache__/formats.cpython-310.pyc | Bin 0 -> 483 bytes .../django/conf/locale/km/formats.py | 21 + .../conf/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 17515 bytes .../conf/locale/kn/LC_MESSAGES/django.po | 1232 ++ .../django/conf/locale/kn/__init__.py | 0 .../kn/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../kn/__pycache__/formats.cpython-310.pyc | Bin 0 -> 300 bytes .../django/conf/locale/kn/formats.py | 21 + .../conf/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 29175 bytes .../conf/locale/ko/LC_MESSAGES/django.po | 1333 ++ .../django/conf/locale/ko/__init__.py | 0 .../ko/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ko/__pycache__/formats.cpython-310.pyc | Bin 0 -> 999 bytes .../django/conf/locale/ko/formats.py | 54 + .../conf/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 31395 bytes .../conf/locale/ky/LC_MESSAGES/django.po | 1279 ++ .../django/conf/locale/ky/__init__.py | 0 .../ky/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ky/__pycache__/formats.cpython-310.pyc | Bin 0 -> 756 bytes .../django/conf/locale/ky/formats.py | 32 + .../conf/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 8008 bytes .../conf/locale/lb/LC_MESSAGES/django.po | 1213 ++ .../conf/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 21421 bytes .../conf/locale/lt/LC_MESSAGES/django.po | 1324 ++ .../django/conf/locale/lt/__init__.py | 0 .../lt/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../lt/__pycache__/formats.cpython-310.pyc | Bin 0 -> 960 bytes .../django/conf/locale/lt/formats.py | 45 + .../conf/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 29213 bytes .../conf/locale/lv/LC_MESSAGES/django.po | 1367 ++ .../django/conf/locale/lv/__init__.py | 0 .../lv/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../lv/__pycache__/formats.cpython-310.pyc | Bin 0 -> 968 bytes .../django/conf/locale/lv/formats.py | 46 + .../conf/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 22737 bytes .../conf/locale/mk/LC_MESSAGES/django.po | 1273 ++ .../django/conf/locale/mk/__init__.py | 0 .../mk/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../mk/__pycache__/formats.cpython-310.pyc | Bin 0 -> 871 bytes .../django/conf/locale/mk/formats.py | 40 + .../conf/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 30808 bytes .../conf/locale/ml/LC_MESSAGES/django.po | 1274 ++ .../django/conf/locale/ml/__init__.py | 0 .../ml/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ml/__pycache__/formats.cpython-310.pyc | Bin 0 -> 783 bytes .../django/conf/locale/ml/formats.py | 43 + .../conf/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 33282 bytes .../conf/locale/mn/LC_MESSAGES/django.po | 1345 ++ .../django/conf/locale/mn/__init__.py | 0 .../mn/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../mn/__pycache__/formats.cpython-310.pyc | Bin 0 -> 271 bytes .../django/conf/locale/mn/formats.py | 21 + .../conf/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 27608 bytes .../conf/locale/mr/LC_MESSAGES/django.po | 1280 ++ .../conf/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 27066 bytes .../conf/locale/ms/LC_MESSAGES/django.po | 1286 ++ .../django/conf/locale/ms/__init__.py | 0 .../ms/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ms/__pycache__/formats.cpython-310.pyc | Bin 0 -> 823 bytes .../django/conf/locale/ms/formats.py | 38 + .../conf/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 2589 bytes .../conf/locale/my/LC_MESSAGES/django.po | 1197 ++ .../conf/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 27007 bytes .../conf/locale/nb/LC_MESSAGES/django.po | 1324 ++ .../django/conf/locale/nb/__init__.py | 0 .../nb/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../nb/__pycache__/formats.cpython-310.pyc | Bin 0 -> 793 bytes .../django/conf/locale/nb/formats.py | 41 + .../conf/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 27248 bytes .../conf/locale/ne/LC_MESSAGES/django.po | 1253 ++ .../conf/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 28191 bytes .../conf/locale/nl/LC_MESSAGES/django.po | 1356 ++ .../django/conf/locale/nl/__init__.py | 0 .../nl/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../nl/__pycache__/formats.cpython-310.pyc | Bin 0 -> 1297 bytes .../django/conf/locale/nl/formats.py | 92 + .../conf/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 26850 bytes .../conf/locale/nn/LC_MESSAGES/django.po | 1305 ++ .../django/conf/locale/nn/__init__.py | 0 .../nn/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../nn/__pycache__/formats.cpython-310.pyc | Bin 0 -> 793 bytes .../django/conf/locale/nn/formats.py | 41 + .../conf/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 17994 bytes .../conf/locale/os/LC_MESSAGES/django.po | 1235 ++ .../conf/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 11253 bytes .../conf/locale/pa/LC_MESSAGES/django.po | 1213 ++ .../conf/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 30667 bytes .../conf/locale/pl/LC_MESSAGES/django.po | 1422 ++ .../django/conf/locale/pl/__init__.py | 0 .../pl/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../pl/__pycache__/formats.cpython-310.pyc | Bin 0 -> 677 bytes .../django/conf/locale/pl/formats.py | 30 + .../conf/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 20657 bytes .../conf/locale/pt/LC_MESSAGES/django.po | 1254 ++ .../django/conf/locale/pt/__init__.py | 0 .../pt/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../pt/__pycache__/formats.cpython-310.pyc | Bin 0 -> 824 bytes .../django/conf/locale/pt/formats.py | 39 + .../conf/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 29218 bytes .../conf/locale/pt_BR/LC_MESSAGES/django.po | 1403 ++ .../django/conf/locale/pt_BR/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../pt_BR/__pycache__/formats.cpython-310.pyc | Bin 0 -> 762 bytes .../django/conf/locale/pt_BR/formats.py | 34 + .../conf/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 21493 bytes .../conf/locale/ro/LC_MESSAGES/django.po | 1323 ++ .../django/conf/locale/ro/__init__.py | 0 .../ro/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ro/__pycache__/formats.cpython-310.pyc | Bin 0 -> 767 bytes .../django/conf/locale/ro/formats.py | 35 + .../conf/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 38774 bytes .../conf/locale/ru/LC_MESSAGES/django.po | 1424 ++ .../django/conf/locale/ru/__init__.py | 0 .../ru/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ru/__pycache__/formats.cpython-310.pyc | Bin 0 -> 746 bytes .../django/conf/locale/ru/formats.py | 30 + .../conf/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 29965 bytes .../conf/locale/sk/LC_MESSAGES/django.po | 1394 ++ .../django/conf/locale/sk/__init__.py | 0 .../sk/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../sk/__pycache__/formats.cpython-310.pyc | Bin 0 -> 679 bytes .../django/conf/locale/sk/formats.py | 30 + .../conf/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 23147 bytes .../conf/locale/sl/LC_MESSAGES/django.po | 1351 ++ .../django/conf/locale/sl/__init__.py | 0 .../sl/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../sl/__pycache__/formats.cpython-310.pyc | Bin 0 -> 943 bytes .../django/conf/locale/sl/formats.py | 44 + .../conf/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 28679 bytes .../conf/locale/sq/LC_MESSAGES/django.po | 1353 ++ .../django/conf/locale/sq/__init__.py | 0 .../sq/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../sq/__pycache__/formats.cpython-310.pyc | Bin 0 -> 387 bytes .../django/conf/locale/sq/formats.py | 21 + .../conf/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 35035 bytes .../conf/locale/sr/LC_MESSAGES/django.po | 1364 ++ .../django/conf/locale/sr/__init__.py | 0 .../sr/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../sr/__pycache__/formats.cpython-310.pyc | Bin 0 -> 893 bytes .../django/conf/locale/sr/formats.py | 44 + .../conf/locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 28715 bytes .../conf/locale/sr_Latn/LC_MESSAGES/django.po | 1638 +++ .../django/conf/locale/sr_Latn/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/formats.cpython-310.pyc | Bin 0 -> 898 bytes .../django/conf/locale/sr_Latn/formats.py | 44 + .../conf/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 28006 bytes .../conf/locale/sv/LC_MESSAGES/django.po | 1362 ++ .../django/conf/locale/sv/__init__.py | 0 .../sv/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../sv/__pycache__/formats.cpython-310.pyc | Bin 0 -> 790 bytes .../django/conf/locale/sv/formats.py | 35 + .../conf/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 13534 bytes .../conf/locale/sw/LC_MESSAGES/django.po | 1221 ++ .../conf/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 7094 bytes .../conf/locale/ta/LC_MESSAGES/django.po | 1230 ++ .../django/conf/locale/ta/__init__.py | 0 .../ta/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ta/__pycache__/formats.cpython-310.pyc | Bin 0 -> 302 bytes .../django/conf/locale/ta/formats.py | 21 + .../conf/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 13259 bytes .../conf/locale/te/LC_MESSAGES/django.po | 1233 ++ .../django/conf/locale/te/__init__.py | 0 .../te/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../te/__pycache__/formats.cpython-310.pyc | Bin 0 -> 300 bytes .../django/conf/locale/te/formats.py | 21 + .../conf/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 28497 bytes .../conf/locale/tg/LC_MESSAGES/django.po | 1299 ++ .../django/conf/locale/tg/__init__.py | 0 .../tg/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../tg/__pycache__/formats.cpython-310.pyc | Bin 0 -> 756 bytes .../django/conf/locale/tg/formats.py | 32 + .../conf/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 18629 bytes .../conf/locale/th/LC_MESSAGES/django.po | 1208 ++ .../django/conf/locale/th/__init__.py | 0 .../th/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../th/__pycache__/formats.cpython-310.pyc | Bin 0 -> 736 bytes .../django/conf/locale/th/formats.py | 33 + .../conf/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 27792 bytes .../conf/locale/tk/LC_MESSAGES/django.po | 1337 ++ .../django/conf/locale/tk/__init__.py | 0 .../tk/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../tk/__pycache__/formats.cpython-310.pyc | Bin 0 -> 756 bytes .../django/conf/locale/tk/formats.py | 32 + .../conf/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 28842 bytes .../conf/locale/tr/LC_MESSAGES/django.po | 1359 ++ .../django/conf/locale/tr/__init__.py | 0 .../tr/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../tr/__pycache__/formats.cpython-310.pyc | Bin 0 -> 672 bytes .../django/conf/locale/tr/formats.py | 30 + .../conf/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 14500 bytes .../conf/locale/tt/LC_MESSAGES/django.po | 1211 ++ .../conf/locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 12822 bytes .../conf/locale/udm/LC_MESSAGES/django.po | 1197 ++ .../conf/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 35467 bytes .../conf/locale/ug/LC_MESSAGES/django.po | 1353 ++ .../django/conf/locale/ug/__init__.py | 0 .../ug/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../ug/__pycache__/formats.cpython-310.pyc | Bin 0 -> 483 bytes .../django/conf/locale/ug/formats.py | 14 + .../conf/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 29855 bytes .../conf/locale/uk/LC_MESSAGES/django.po | 1382 ++ .../django/conf/locale/uk/__init__.py | 0 .../uk/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../uk/__pycache__/formats.cpython-310.pyc | Bin 0 -> 801 bytes .../django/conf/locale/uk/formats.py | 35 + .../conf/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 12291 bytes .../conf/locale/ur/LC_MESSAGES/django.po | 1222 ++ .../conf/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 26443 bytes .../conf/locale/uz/LC_MESSAGES/django.po | 1322 ++ .../django/conf/locale/uz/__init__.py | 0 .../uz/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../uz/__pycache__/formats.cpython-310.pyc | Bin 0 -> 768 bytes .../django/conf/locale/uz/formats.py | 30 + .../conf/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 17396 bytes .../conf/locale/vi/LC_MESSAGES/django.po | 1234 ++ .../django/conf/locale/vi/__init__.py | 0 .../vi/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../vi/__pycache__/formats.cpython-310.pyc | Bin 0 -> 519 bytes .../django/conf/locale/vi/formats.py | 21 + .../conf/locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 26944 bytes .../conf/locale/zh_Hans/LC_MESSAGES/django.po | 1326 ++ .../django/conf/locale/zh_Hans/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/formats.cpython-310.pyc | Bin 0 -> 910 bytes .../django/conf/locale/zh_Hans/formats.py | 42 + .../conf/locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 26802 bytes .../conf/locale/zh_Hant/LC_MESSAGES/django.po | 1293 ++ .../django/conf/locale/zh_Hant/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/formats.cpython-310.pyc | Bin 0 -> 910 bytes .../django/conf/locale/zh_Hant/formats.py | 42 + .../conf/project_template/manage.py-tpl | 22 + .../project_name/__init__.py-tpl | 0 .../project_template/project_name/asgi.py-tpl | 16 + .../project_name/settings.py-tpl | 123 + .../project_template/project_name/urls.py-tpl | 22 + .../project_template/project_name/wsgi.py-tpl | 16 + .../django/conf/urls/__init__.py | 9 + .../urls/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 464 bytes .../urls/__pycache__/i18n.cpython-310.pyc | Bin 0 -> 1311 bytes .../urls/__pycache__/static.cpython-310.pyc | Bin 0 -> 1058 bytes .../site-packages/django/conf/urls/i18n.py | 39 + .../site-packages/django/conf/urls/static.py | 30 + .../site-packages/django/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 186 bytes .../django/contrib/admin/__init__.py | 52 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1237 bytes .../admin/__pycache__/actions.cpython-310.pyc | Bin 0 -> 2405 bytes .../admin/__pycache__/apps.cpython-310.pyc | Bin 0 -> 1478 bytes .../admin/__pycache__/checks.cpython-310.pyc | Bin 0 -> 34554 bytes .../__pycache__/decorators.cpython-310.pyc | Bin 0 -> 3452 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1015 bytes .../admin/__pycache__/filters.cpython-310.pyc | Bin 0 -> 21175 bytes .../admin/__pycache__/forms.cpython-310.pyc | Bin 0 -> 1407 bytes .../admin/__pycache__/helpers.cpython-310.pyc | Bin 0 -> 15734 bytes .../admin/__pycache__/models.cpython-310.pyc | Bin 0 -> 6741 bytes .../admin/__pycache__/options.cpython-310.pyc | Bin 0 -> 66223 bytes .../admin/__pycache__/sites.cpython-310.pyc | Bin 0 -> 17706 bytes .../admin/__pycache__/tests.cpython-310.pyc | Bin 0 -> 8778 bytes .../admin/__pycache__/utils.cpython-310.pyc | Bin 0 -> 17453 bytes .../admin/__pycache__/widgets.cpython-310.pyc | Bin 0 -> 19637 bytes .../django/contrib/admin/actions.py | 94 + .../django/contrib/admin/apps.py | 27 + .../django/contrib/admin/checks.py | 1359 ++ .../django/contrib/admin/decorators.py | 111 + .../django/contrib/admin/exceptions.py | 25 + .../django/contrib/admin/filters.py | 716 ++ .../django/contrib/admin/forms.py | 31 + .../django/contrib/admin/helpers.py | 568 + .../admin/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 17407 bytes .../admin/locale/af/LC_MESSAGES/django.po | 774 ++ .../admin/locale/af/LC_MESSAGES/djangojs.mo | Bin 0 -> 5773 bytes .../admin/locale/af/LC_MESSAGES/djangojs.po | 324 + .../admin/locale/am/LC_MESSAGES/django.mo | Bin 0 -> 8309 bytes .../admin/locale/am/LC_MESSAGES/django.po | 636 + .../admin/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 19890 bytes .../admin/locale/ar/LC_MESSAGES/django.po | 731 ++ .../admin/locale/ar/LC_MESSAGES/djangojs.mo | Bin 0 -> 6545 bytes .../admin/locale/ar/LC_MESSAGES/djangojs.po | 278 + .../admin/locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 19947 bytes .../admin/locale/ar_DZ/LC_MESSAGES/django.po | 738 ++ .../locale/ar_DZ/LC_MESSAGES/djangojs.mo | Bin 0 -> 6423 bytes .../locale/ar_DZ/LC_MESSAGES/djangojs.po | 280 + .../admin/locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 2476 bytes .../admin/locale/ast/LC_MESSAGES/django.po | 636 + .../admin/locale/ast/LC_MESSAGES/djangojs.mo | Bin 0 -> 2137 bytes .../admin/locale/ast/LC_MESSAGES/djangojs.po | 211 + .../admin/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 18963 bytes .../admin/locale/az/LC_MESSAGES/django.po | 791 ++ .../admin/locale/az/LC_MESSAGES/djangojs.mo | Bin 0 -> 5225 bytes .../admin/locale/az/LC_MESSAGES/djangojs.po | 272 + .../admin/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 23275 bytes .../admin/locale/be/LC_MESSAGES/django.po | 791 ++ .../admin/locale/be/LC_MESSAGES/djangojs.mo | Bin 0 -> 7703 bytes .../admin/locale/be/LC_MESSAGES/djangojs.po | 333 + .../admin/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 22994 bytes .../admin/locale/bg/LC_MESSAGES/django.po | 791 ++ .../admin/locale/bg/LC_MESSAGES/djangojs.mo | Bin 0 -> 7195 bytes .../admin/locale/bg/LC_MESSAGES/djangojs.po | 320 + .../admin/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 18585 bytes .../admin/locale/bn/LC_MESSAGES/django.po | 713 + .../admin/locale/bn/LC_MESSAGES/djangojs.mo | Bin 0 -> 2313 bytes .../admin/locale/bn/LC_MESSAGES/djangojs.po | 207 + .../admin/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 6489 bytes .../admin/locale/br/LC_MESSAGES/django.po | 671 + .../admin/locale/br/LC_MESSAGES/djangojs.mo | Bin 0 -> 1658 bytes .../admin/locale/br/LC_MESSAGES/djangojs.po | 217 + .../admin/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 8845 bytes .../admin/locale/bs/LC_MESSAGES/django.po | 657 + .../admin/locale/bs/LC_MESSAGES/djangojs.mo | Bin 0 -> 1183 bytes .../admin/locale/bs/LC_MESSAGES/djangojs.po | 211 + .../admin/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 17535 bytes .../admin/locale/ca/LC_MESSAGES/django.po | 750 ++ .../admin/locale/ca/LC_MESSAGES/djangojs.mo | Bin 0 -> 6075 bytes .../admin/locale/ca/LC_MESSAGES/djangojs.po | 330 + .../admin/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 23234 bytes .../admin/locale/ckb/LC_MESSAGES/django.po | 792 ++ .../admin/locale/ckb/LC_MESSAGES/djangojs.mo | Bin 0 -> 7671 bytes .../admin/locale/ckb/LC_MESSAGES/djangojs.po | 329 + .../admin/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 19004 bytes .../admin/locale/cs/LC_MESSAGES/django.po | 803 ++ .../admin/locale/cs/LC_MESSAGES/djangojs.mo | Bin 0 -> 6596 bytes .../admin/locale/cs/LC_MESSAGES/djangojs.po | 332 + .../admin/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 12521 bytes .../admin/locale/cy/LC_MESSAGES/django.po | 675 + .../admin/locale/cy/LC_MESSAGES/djangojs.mo | Bin 0 -> 3801 bytes .../admin/locale/cy/LC_MESSAGES/djangojs.po | 222 + .../admin/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 18085 bytes .../admin/locale/da/LC_MESSAGES/django.po | 788 ++ .../admin/locale/da/LC_MESSAGES/djangojs.mo | Bin 0 -> 5984 bytes .../admin/locale/da/LC_MESSAGES/djangojs.po | 329 + .../admin/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 18731 bytes .../admin/locale/de/LC_MESSAGES/django.po | 791 ++ .../admin/locale/de/LC_MESSAGES/djangojs.mo | Bin 0 -> 6130 bytes .../admin/locale/de/LC_MESSAGES/djangojs.po | 331 + .../admin/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 19122 bytes .../admin/locale/dsb/LC_MESSAGES/django.po | 792 ++ .../admin/locale/dsb/LC_MESSAGES/djangojs.mo | Bin 0 -> 6609 bytes .../admin/locale/dsb/LC_MESSAGES/djangojs.po | 335 + .../admin/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 22968 bytes .../admin/locale/el/LC_MESSAGES/django.po | 737 ++ .../admin/locale/el/LC_MESSAGES/djangojs.mo | Bin 0 -> 6509 bytes .../admin/locale/el/LC_MESSAGES/djangojs.po | 272 + .../admin/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../admin/locale/en/LC_MESSAGES/django.po | 978 ++ .../admin/locale/en/LC_MESSAGES/djangojs.mo | Bin 0 -> 356 bytes .../admin/locale/en/LC_MESSAGES/djangojs.po | 383 + .../admin/locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 16191 bytes .../admin/locale/en_AU/LC_MESSAGES/django.po | 724 ++ .../locale/en_AU/LC_MESSAGES/djangojs.mo | Bin 0 -> 5001 bytes .../locale/en_AU/LC_MESSAGES/djangojs.po | 266 + .../admin/locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 11159 bytes .../admin/locale/en_GB/LC_MESSAGES/django.po | 691 + .../locale/en_GB/LC_MESSAGES/djangojs.mo | Bin 0 -> 3147 bytes .../locale/en_GB/LC_MESSAGES/djangojs.po | 218 + .../admin/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 14194 bytes .../admin/locale/eo/LC_MESSAGES/django.po | 728 ++ .../admin/locale/eo/LC_MESSAGES/djangojs.mo | Bin 0 -> 4595 bytes .../admin/locale/eo/LC_MESSAGES/djangojs.po | 268 + .../admin/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 19193 bytes .../admin/locale/es/LC_MESSAGES/django.po | 818 ++ .../admin/locale/es/LC_MESSAGES/djangojs.mo | Bin 0 -> 6347 bytes .../admin/locale/es/LC_MESSAGES/djangojs.po | 336 + .../admin/locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 19355 bytes .../admin/locale/es_AR/LC_MESSAGES/django.po | 803 ++ .../locale/es_AR/LC_MESSAGES/djangojs.mo | Bin 0 -> 6647 bytes .../locale/es_AR/LC_MESSAGES/djangojs.po | 343 + .../admin/locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 15156 bytes .../admin/locale/es_CO/LC_MESSAGES/django.po | 697 + .../locale/es_CO/LC_MESSAGES/djangojs.mo | Bin 0 -> 3895 bytes .../locale/es_CO/LC_MESSAGES/djangojs.po | 223 + .../admin/locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 11517 bytes .../admin/locale/es_MX/LC_MESSAGES/django.po | 720 ++ .../locale/es_MX/LC_MESSAGES/djangojs.mo | Bin 0 -> 3380 bytes .../locale/es_MX/LC_MESSAGES/djangojs.po | 219 + .../admin/locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 16837 bytes .../admin/locale/es_VE/LC_MESSAGES/django.po | 698 + .../locale/es_VE/LC_MESSAGES/djangojs.mo | Bin 0 -> 4635 bytes .../locale/es_VE/LC_MESSAGES/djangojs.po | 222 + .../admin/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 17574 bytes .../admin/locale/et/LC_MESSAGES/django.po | 784 ++ .../admin/locale/et/LC_MESSAGES/djangojs.mo | Bin 0 -> 5880 bytes .../admin/locale/et/LC_MESSAGES/djangojs.po | 329 + .../admin/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 15009 bytes .../admin/locale/eu/LC_MESSAGES/django.po | 732 ++ .../admin/locale/eu/LC_MESSAGES/djangojs.mo | Bin 0 -> 4480 bytes .../admin/locale/eu/LC_MESSAGES/djangojs.po | 267 + .../admin/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 20889 bytes .../admin/locale/fa/LC_MESSAGES/django.po | 790 ++ .../admin/locale/fa/LC_MESSAGES/djangojs.mo | Bin 0 -> 6050 bytes .../admin/locale/fa/LC_MESSAGES/djangojs.po | 271 + .../admin/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 17289 bytes .../admin/locale/fi/LC_MESSAGES/django.po | 772 ++ .../admin/locale/fi/LC_MESSAGES/djangojs.mo | Bin 0 -> 5822 bytes .../admin/locale/fi/LC_MESSAGES/djangojs.po | 329 + .../admin/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 20013 bytes .../admin/locale/fr/LC_MESSAGES/django.po | 807 ++ .../admin/locale/fr/LC_MESSAGES/djangojs.mo | Bin 0 -> 6509 bytes .../admin/locale/fr/LC_MESSAGES/djangojs.po | 332 + .../admin/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../admin/locale/fy/LC_MESSAGES/django.po | 609 + .../admin/locale/fy/LC_MESSAGES/djangojs.mo | Bin 0 -> 476 bytes .../admin/locale/fy/LC_MESSAGES/djangojs.po | 145 + .../admin/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 19428 bytes .../admin/locale/ga/LC_MESSAGES/django.po | 810 ++ .../admin/locale/ga/LC_MESSAGES/djangojs.mo | Bin 0 -> 6910 bytes .../admin/locale/ga/LC_MESSAGES/djangojs.po | 341 + .../admin/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 18871 bytes .../admin/locale/gd/LC_MESSAGES/django.po | 754 ++ .../admin/locale/gd/LC_MESSAGES/djangojs.mo | Bin 0 -> 5904 bytes .../admin/locale/gd/LC_MESSAGES/djangojs.po | 286 + .../admin/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 18542 bytes .../admin/locale/gl/LC_MESSAGES/django.po | 795 ++ .../admin/locale/gl/LC_MESSAGES/djangojs.mo | Bin 0 -> 6083 bytes .../admin/locale/gl/LC_MESSAGES/djangojs.po | 329 + .../admin/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 19856 bytes .../admin/locale/he/LC_MESSAGES/django.po | 771 ++ .../admin/locale/he/LC_MESSAGES/djangojs.mo | Bin 0 -> 6893 bytes .../admin/locale/he/LC_MESSAGES/djangojs.po | 334 + .../admin/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 13811 bytes .../admin/locale/hi/LC_MESSAGES/django.po | 706 + .../admin/locale/hi/LC_MESSAGES/djangojs.mo | Bin 0 -> 4893 bytes .../admin/locale/hi/LC_MESSAGES/djangojs.po | 217 + .../admin/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 14702 bytes .../admin/locale/hr/LC_MESSAGES/django.po | 716 ++ .../admin/locale/hr/LC_MESSAGES/djangojs.mo | Bin 0 -> 3360 bytes .../admin/locale/hr/LC_MESSAGES/djangojs.po | 223 + .../admin/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 18894 bytes .../admin/locale/hsb/LC_MESSAGES/django.po | 792 ++ .../admin/locale/hsb/LC_MESSAGES/djangojs.mo | Bin 0 -> 6693 bytes .../admin/locale/hsb/LC_MESSAGES/djangojs.po | 337 + .../admin/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 18629 bytes .../admin/locale/hu/LC_MESSAGES/django.po | 786 ++ .../admin/locale/hu/LC_MESSAGES/djangojs.mo | Bin 0 -> 6034 bytes .../admin/locale/hu/LC_MESSAGES/djangojs.po | 329 + .../admin/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 18274 bytes .../admin/locale/hy/LC_MESSAGES/django.po | 708 + .../admin/locale/hy/LC_MESSAGES/djangojs.mo | Bin 0 -> 5636 bytes .../admin/locale/hy/LC_MESSAGES/djangojs.po | 219 + .../admin/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 11278 bytes .../admin/locale/ia/LC_MESSAGES/django.po | 664 + .../admin/locale/ia/LC_MESSAGES/djangojs.mo | Bin 0 -> 3177 bytes .../admin/locale/ia/LC_MESSAGES/djangojs.po | 216 + .../admin/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 17877 bytes .../admin/locale/id/LC_MESSAGES/django.po | 789 ++ .../admin/locale/id/LC_MESSAGES/djangojs.mo | Bin 0 -> 5275 bytes .../admin/locale/id/LC_MESSAGES/djangojs.po | 325 + .../admin/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 12624 bytes .../admin/locale/io/LC_MESSAGES/django.po | 668 + .../admin/locale/io/LC_MESSAGES/djangojs.mo | Bin 0 -> 464 bytes .../admin/locale/io/LC_MESSAGES/djangojs.po | 145 + .../admin/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 16804 bytes .../admin/locale/is/LC_MESSAGES/django.po | 720 ++ .../admin/locale/is/LC_MESSAGES/djangojs.mo | Bin 0 -> 5174 bytes .../admin/locale/is/LC_MESSAGES/djangojs.po | 267 + .../admin/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 18505 bytes .../admin/locale/it/LC_MESSAGES/django.po | 798 ++ .../admin/locale/it/LC_MESSAGES/djangojs.mo | Bin 0 -> 5640 bytes .../admin/locale/it/LC_MESSAGES/djangojs.po | 287 + .../admin/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 19945 bytes .../admin/locale/ja/LC_MESSAGES/django.po | 784 ++ .../admin/locale/ja/LC_MESSAGES/djangojs.mo | Bin 0 -> 6233 bytes .../admin/locale/ja/LC_MESSAGES/djangojs.po | 322 + .../admin/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 20101 bytes .../admin/locale/ka/LC_MESSAGES/django.po | 699 + .../admin/locale/ka/LC_MESSAGES/djangojs.mo | Bin 0 -> 5516 bytes .../admin/locale/ka/LC_MESSAGES/djangojs.po | 218 + .../admin/locale/kab/LC_MESSAGES/django.mo | Bin 0 -> 3531 bytes .../admin/locale/kab/LC_MESSAGES/django.po | 631 + .../admin/locale/kab/LC_MESSAGES/djangojs.mo | Bin 0 -> 1844 bytes .../admin/locale/kab/LC_MESSAGES/djangojs.po | 204 + .../admin/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 12845 bytes .../admin/locale/kk/LC_MESSAGES/django.po | 695 + .../admin/locale/kk/LC_MESSAGES/djangojs.mo | Bin 0 -> 2387 bytes .../admin/locale/kk/LC_MESSAGES/djangojs.po | 210 + .../admin/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 10403 bytes .../admin/locale/km/LC_MESSAGES/django.po | 636 + .../admin/locale/km/LC_MESSAGES/djangojs.mo | Bin 0 -> 1334 bytes .../admin/locale/km/LC_MESSAGES/djangojs.po | 201 + .../admin/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 9203 bytes .../admin/locale/kn/LC_MESSAGES/django.po | 639 + .../admin/locale/kn/LC_MESSAGES/djangojs.mo | Bin 0 -> 1847 bytes .../admin/locale/kn/LC_MESSAGES/djangojs.po | 261 + .../admin/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 18815 bytes .../admin/locale/ko/LC_MESSAGES/django.po | 800 ++ .../admin/locale/ko/LC_MESSAGES/djangojs.mo | Bin 0 -> 5985 bytes .../admin/locale/ko/LC_MESSAGES/djangojs.po | 327 + .../admin/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 20129 bytes .../admin/locale/ky/LC_MESSAGES/django.po | 711 + .../admin/locale/ky/LC_MESSAGES/djangojs.mo | Bin 0 -> 5888 bytes .../admin/locale/ky/LC_MESSAGES/djangojs.po | 260 + .../admin/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 913 bytes .../admin/locale/lb/LC_MESSAGES/django.po | 632 + .../admin/locale/lb/LC_MESSAGES/djangojs.mo | Bin 0 -> 474 bytes .../admin/locale/lb/LC_MESSAGES/djangojs.po | 145 + .../admin/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 17033 bytes .../admin/locale/lt/LC_MESSAGES/django.po | 720 ++ .../admin/locale/lt/LC_MESSAGES/djangojs.mo | Bin 0 -> 5183 bytes .../admin/locale/lt/LC_MESSAGES/djangojs.po | 236 + .../admin/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 18547 bytes .../admin/locale/lv/LC_MESSAGES/django.po | 793 ++ .../admin/locale/lv/LC_MESSAGES/djangojs.mo | Bin 0 -> 6446 bytes .../admin/locale/lv/LC_MESSAGES/djangojs.po | 335 + .../admin/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 17948 bytes .../admin/locale/mk/LC_MESSAGES/django.po | 726 ++ .../admin/locale/mk/LC_MESSAGES/djangojs.mo | Bin 0 -> 4719 bytes .../admin/locale/mk/LC_MESSAGES/djangojs.po | 262 + .../admin/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 20830 bytes .../admin/locale/ml/LC_MESSAGES/django.po | 700 + .../admin/locale/ml/LC_MESSAGES/djangojs.mo | Bin 0 -> 6200 bytes .../admin/locale/ml/LC_MESSAGES/djangojs.po | 214 + .../admin/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 22236 bytes .../admin/locale/mn/LC_MESSAGES/django.po | 776 ++ .../admin/locale/mn/LC_MESSAGES/djangojs.mo | Bin 0 -> 5228 bytes .../admin/locale/mn/LC_MESSAGES/djangojs.po | 218 + .../admin/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 21488 bytes .../admin/locale/mr/LC_MESSAGES/django.po | 753 ++ .../admin/locale/mr/LC_MESSAGES/djangojs.mo | Bin 0 -> 468 bytes .../admin/locale/mr/LC_MESSAGES/djangojs.po | 145 + .../admin/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 16840 bytes .../admin/locale/ms/LC_MESSAGES/django.po | 721 ++ .../admin/locale/ms/LC_MESSAGES/djangojs.mo | Bin 0 -> 5018 bytes .../admin/locale/ms/LC_MESSAGES/djangojs.po | 264 + .../admin/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 3677 bytes .../admin/locale/my/LC_MESSAGES/django.po | 629 + .../admin/locale/my/LC_MESSAGES/djangojs.mo | Bin 0 -> 3268 bytes .../admin/locale/my/LC_MESSAGES/djangojs.po | 206 + .../admin/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 16244 bytes .../admin/locale/nb/LC_MESSAGES/django.po | 720 ++ .../admin/locale/nb/LC_MESSAGES/djangojs.mo | Bin 0 -> 4939 bytes .../admin/locale/nb/LC_MESSAGES/djangojs.po | 269 + .../admin/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 15772 bytes .../admin/locale/ne/LC_MESSAGES/django.po | 688 + .../admin/locale/ne/LC_MESSAGES/djangojs.mo | Bin 0 -> 5362 bytes .../admin/locale/ne/LC_MESSAGES/djangojs.po | 213 + .../admin/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 18565 bytes .../admin/locale/nl/LC_MESSAGES/django.po | 799 ++ .../admin/locale/nl/LC_MESSAGES/djangojs.mo | Bin 0 -> 6122 bytes .../admin/locale/nl/LC_MESSAGES/djangojs.po | 334 + .../admin/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 16504 bytes .../admin/locale/nn/LC_MESSAGES/django.po | 736 ++ .../admin/locale/nn/LC_MESSAGES/djangojs.mo | Bin 0 -> 4939 bytes .../admin/locale/nn/LC_MESSAGES/djangojs.po | 266 + .../admin/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 14978 bytes .../admin/locale/os/LC_MESSAGES/django.po | 665 + .../admin/locale/os/LC_MESSAGES/djangojs.mo | Bin 0 -> 3806 bytes .../admin/locale/os/LC_MESSAGES/djangojs.po | 217 + .../admin/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 8629 bytes .../admin/locale/pa/LC_MESSAGES/django.po | 706 + .../admin/locale/pa/LC_MESSAGES/djangojs.mo | Bin 0 -> 1148 bytes .../admin/locale/pa/LC_MESSAGES/djangojs.po | 253 + .../admin/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 19372 bytes .../admin/locale/pl/LC_MESSAGES/django.po | 816 ++ .../admin/locale/pl/LC_MESSAGES/djangojs.mo | Bin 0 -> 6655 bytes .../admin/locale/pl/LC_MESSAGES/djangojs.po | 356 + .../admin/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 18681 bytes .../admin/locale/pt/LC_MESSAGES/django.po | 792 ++ .../admin/locale/pt/LC_MESSAGES/djangojs.mo | Bin 0 -> 5392 bytes .../admin/locale/pt/LC_MESSAGES/djangojs.po | 331 + .../admin/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 18810 bytes .../admin/locale/pt_BR/LC_MESSAGES/django.po | 821 ++ .../locale/pt_BR/LC_MESSAGES/djangojs.mo | Bin 0 -> 6329 bytes .../locale/pt_BR/LC_MESSAGES/djangojs.po | 333 + .../admin/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 15157 bytes .../admin/locale/ro/LC_MESSAGES/django.po | 758 ++ .../admin/locale/ro/LC_MESSAGES/djangojs.mo | Bin 0 -> 4639 bytes .../admin/locale/ro/LC_MESSAGES/djangojs.po | 228 + .../admin/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 24187 bytes .../admin/locale/ru/LC_MESSAGES/django.po | 807 ++ .../admin/locale/ru/LC_MESSAGES/djangojs.mo | Bin 0 -> 8392 bytes .../admin/locale/ru/LC_MESSAGES/djangojs.po | 350 + .../admin/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 18945 bytes .../admin/locale/sk/LC_MESSAGES/django.po | 802 ++ .../admin/locale/sk/LC_MESSAGES/djangojs.mo | Bin 0 -> 6305 bytes .../admin/locale/sk/LC_MESSAGES/djangojs.po | 337 + .../admin/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 15077 bytes .../admin/locale/sl/LC_MESSAGES/django.po | 774 ++ .../admin/locale/sl/LC_MESSAGES/djangojs.mo | Bin 0 -> 6146 bytes .../admin/locale/sl/LC_MESSAGES/djangojs.po | 328 + .../admin/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 18886 bytes .../admin/locale/sq/LC_MESSAGES/django.po | 790 ++ .../admin/locale/sq/LC_MESSAGES/djangojs.mo | Bin 0 -> 6122 bytes .../admin/locale/sq/LC_MESSAGES/djangojs.po | 328 + .../admin/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 23216 bytes .../admin/locale/sr/LC_MESSAGES/django.po | 792 ++ .../admin/locale/sr/LC_MESSAGES/djangojs.mo | Bin 0 -> 7234 bytes .../admin/locale/sr/LC_MESSAGES/djangojs.po | 330 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 12383 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 694 + .../locale/sr_Latn/LC_MESSAGES/djangojs.mo | Bin 0 -> 6021 bytes .../locale/sr_Latn/LC_MESSAGES/djangojs.po | 392 + .../admin/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 18004 bytes .../admin/locale/sv/LC_MESSAGES/django.po | 795 ++ .../admin/locale/sv/LC_MESSAGES/djangojs.mo | Bin 0 -> 5938 bytes .../admin/locale/sv/LC_MESSAGES/djangojs.po | 328 + .../admin/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 17698 bytes .../admin/locale/sw/LC_MESSAGES/django.po | 779 ++ .../admin/locale/sw/LC_MESSAGES/djangojs.mo | Bin 0 -> 3647 bytes .../admin/locale/sw/LC_MESSAGES/djangojs.po | 217 + .../admin/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 10179 bytes .../admin/locale/ta/LC_MESSAGES/django.po | 643 + .../admin/locale/ta/LC_MESSAGES/djangojs.mo | Bin 0 -> 1379 bytes .../admin/locale/ta/LC_MESSAGES/djangojs.po | 204 + .../admin/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 10590 bytes .../admin/locale/te/LC_MESSAGES/django.po | 640 + .../admin/locale/te/LC_MESSAGES/djangojs.mo | Bin 0 -> 1362 bytes .../admin/locale/te/LC_MESSAGES/djangojs.po | 205 + .../admin/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 15463 bytes .../admin/locale/tg/LC_MESSAGES/django.po | 699 + .../admin/locale/tg/LC_MESSAGES/djangojs.mo | Bin 0 -> 5154 bytes .../admin/locale/tg/LC_MESSAGES/djangojs.po | 222 + .../admin/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 16394 bytes .../admin/locale/th/LC_MESSAGES/django.po | 671 + .../admin/locale/th/LC_MESSAGES/djangojs.mo | Bin 0 -> 6250 bytes .../admin/locale/th/LC_MESSAGES/djangojs.po | 213 + .../admin/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 2845 bytes .../admin/locale/tk/LC_MESSAGES/django.po | 738 ++ .../admin/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 18745 bytes .../admin/locale/tr/LC_MESSAGES/django.po | 794 ++ .../admin/locale/tr/LC_MESSAGES/djangojs.mo | Bin 0 -> 6044 bytes .../admin/locale/tr/LC_MESSAGES/djangojs.po | 328 + .../admin/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 12952 bytes .../admin/locale/tt/LC_MESSAGES/django.po | 655 + .../admin/locale/tt/LC_MESSAGES/djangojs.mo | Bin 0 -> 2607 bytes .../admin/locale/tt/LC_MESSAGES/djangojs.po | 208 + .../admin/locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 622 bytes .../admin/locale/udm/LC_MESSAGES/django.po | 606 + .../admin/locale/udm/LC_MESSAGES/djangojs.mo | Bin 0 -> 462 bytes .../admin/locale/udm/LC_MESSAGES/djangojs.po | 142 + .../admin/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 23241 bytes .../admin/locale/ug/LC_MESSAGES/django.po | 790 ++ .../admin/locale/ug/LC_MESSAGES/djangojs.mo | Bin 0 -> 7306 bytes .../admin/locale/ug/LC_MESSAGES/djangojs.po | 323 + .../admin/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 22319 bytes .../admin/locale/uk/LC_MESSAGES/django.po | 775 ++ .../admin/locale/uk/LC_MESSAGES/djangojs.mo | Bin 0 -> 5787 bytes .../admin/locale/uk/LC_MESSAGES/djangojs.po | 275 + .../admin/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 13106 bytes .../admin/locale/ur/LC_MESSAGES/django.po | 661 + .../admin/locale/ur/LC_MESSAGES/djangojs.mo | Bin 0 -> 2678 bytes .../admin/locale/ur/LC_MESSAGES/djangojs.po | 211 + .../admin/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 4634 bytes .../admin/locale/uz/LC_MESSAGES/django.po | 724 ++ .../admin/locale/uz/LC_MESSAGES/djangojs.mo | Bin 0 -> 3783 bytes .../admin/locale/uz/LC_MESSAGES/djangojs.po | 261 + .../admin/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 18077 bytes .../admin/locale/vi/LC_MESSAGES/django.po | 726 ++ .../admin/locale/vi/LC_MESSAGES/djangojs.mo | Bin 0 -> 5302 bytes .../admin/locale/vi/LC_MESSAGES/djangojs.po | 268 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 17143 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 779 ++ .../locale/zh_Hans/LC_MESSAGES/djangojs.mo | Bin 0 -> 5715 bytes .../locale/zh_Hans/LC_MESSAGES/djangojs.po | 332 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 16991 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 757 ++ .../locale/zh_Hant/LC_MESSAGES/djangojs.mo | Bin 0 -> 4230 bytes .../locale/zh_Hant/LC_MESSAGES/djangojs.po | 213 + .../contrib/admin/migrations/0001_initial.py | 75 + .../0002_logentry_remove_auto_add.py | 21 + .../0003_logentry_add_action_flag_choices.py | 19 + .../contrib/admin/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1666 bytes ...2_logentry_remove_auto_add.cpython-310.pyc | Bin 0 -> 747 bytes ...ry_add_action_flag_choices.cpython-310.pyc | Bin 0 -> 767 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 203 bytes .../django/contrib/admin/models.py | 246 + .../django/contrib/admin/options.py | 2574 ++++ .../django/contrib/admin/sites.py | 616 + .../admin/static/admin/css/autocomplete.css | 279 + .../contrib/admin/static/admin/css/base.css | 1179 ++ .../admin/static/admin/css/changelists.css | 343 + .../admin/static/admin/css/dark_mode.css | 130 + .../admin/static/admin/css/dashboard.css | 29 + .../contrib/admin/static/admin/css/forms.css | 512 + .../contrib/admin/static/admin/css/login.css | 61 + .../admin/static/admin/css/nav_sidebar.css | 150 + .../admin/static/admin/css/responsive.css | 967 ++ .../admin/static/admin/css/responsive_rtl.css | 111 + .../contrib/admin/static/admin/css/rtl.css | 291 + .../admin/css/unusable_password_field.css | 19 + .../css/vendor/select2/LICENSE-SELECT2.md | 21 + .../admin/css/vendor/select2/select2.css | 481 + .../admin/css/vendor/select2/select2.min.css | 1 + .../admin/static/admin/css/widgets.css | 593 + .../contrib/admin/static/admin/img/LICENSE | 20 + .../contrib/admin/static/admin/img/README.txt | 7 + .../admin/static/admin/img/calendar-icons.svg | 63 + .../static/admin/img/gis/move_vertex_off.svg | 1 + .../static/admin/img/gis/move_vertex_on.svg | 1 + .../admin/static/admin/img/icon-addlink.svg | 3 + .../admin/static/admin/img/icon-alert.svg | 3 + .../admin/static/admin/img/icon-calendar.svg | 9 + .../static/admin/img/icon-changelink.svg | 3 + .../admin/static/admin/img/icon-clock.svg | 9 + .../static/admin/img/icon-deletelink.svg | 3 + .../admin/static/admin/img/icon-hidelink.svg | 3 + .../admin/static/admin/img/icon-no.svg | 3 + .../static/admin/img/icon-unknown-alt.svg | 3 + .../admin/static/admin/img/icon-unknown.svg | 3 + .../admin/static/admin/img/icon-viewlink.svg | 3 + .../admin/static/admin/img/icon-yes.svg | 3 + .../admin/static/admin/img/inline-delete.svg | 3 + .../contrib/admin/static/admin/img/search.svg | 3 + .../admin/static/admin/img/selector-icons.svg | 34 + .../admin/static/admin/img/sorting-icons.svg | 19 + .../admin/static/admin/img/tooltag-add.svg | 3 + .../static/admin/img/tooltag-arrowright.svg | 3 + .../admin/static/admin/js/SelectBox.js | 116 + .../admin/static/admin/js/SelectFilter2.js | 286 + .../contrib/admin/static/admin/js/actions.js | 204 + .../admin/js/admin/DateTimeShortcuts.js | 408 + .../admin/js/admin/RelatedObjectLookups.js | 240 + .../admin/static/admin/js/autocomplete.js | 33 + .../contrib/admin/static/admin/js/calendar.js | 239 + .../contrib/admin/static/admin/js/cancel.js | 29 + .../admin/static/admin/js/change_form.js | 16 + .../contrib/admin/static/admin/js/core.js | 184 + .../contrib/admin/static/admin/js/filters.js | 30 + .../contrib/admin/static/admin/js/inlines.js | 359 + .../admin/static/admin/js/jquery.init.js | 8 + .../admin/static/admin/js/nav_sidebar.js | 79 + .../admin/static/admin/js/popup_response.js | 15 + .../admin/static/admin/js/prepopulate.js | 43 + .../admin/static/admin/js/prepopulate_init.js | 15 + .../contrib/admin/static/admin/js/theme.js | 51 + .../admin/js/unusable_password_field.js | 29 + .../contrib/admin/static/admin/js/urlify.js | 169 + .../static/admin/js/vendor/jquery/LICENSE.txt | 20 + .../static/admin/js/vendor/jquery/jquery.js | 10716 ++++++++++++++++ .../admin/js/vendor/jquery/jquery.min.js | 2 + .../static/admin/js/vendor/select2/LICENSE.md | 21 + .../static/admin/js/vendor/select2/i18n/af.js | 3 + .../static/admin/js/vendor/select2/i18n/ar.js | 3 + .../static/admin/js/vendor/select2/i18n/az.js | 3 + .../static/admin/js/vendor/select2/i18n/bg.js | 3 + .../static/admin/js/vendor/select2/i18n/bn.js | 3 + .../static/admin/js/vendor/select2/i18n/bs.js | 3 + .../static/admin/js/vendor/select2/i18n/ca.js | 3 + .../static/admin/js/vendor/select2/i18n/cs.js | 3 + .../static/admin/js/vendor/select2/i18n/da.js | 3 + .../static/admin/js/vendor/select2/i18n/de.js | 3 + .../admin/js/vendor/select2/i18n/dsb.js | 3 + .../static/admin/js/vendor/select2/i18n/el.js | 3 + .../static/admin/js/vendor/select2/i18n/en.js | 3 + .../static/admin/js/vendor/select2/i18n/es.js | 3 + .../static/admin/js/vendor/select2/i18n/et.js | 3 + .../static/admin/js/vendor/select2/i18n/eu.js | 3 + .../static/admin/js/vendor/select2/i18n/fa.js | 3 + .../static/admin/js/vendor/select2/i18n/fi.js | 3 + .../static/admin/js/vendor/select2/i18n/fr.js | 3 + .../static/admin/js/vendor/select2/i18n/gl.js | 3 + .../static/admin/js/vendor/select2/i18n/he.js | 3 + .../static/admin/js/vendor/select2/i18n/hi.js | 3 + .../static/admin/js/vendor/select2/i18n/hr.js | 3 + .../admin/js/vendor/select2/i18n/hsb.js | 3 + .../static/admin/js/vendor/select2/i18n/hu.js | 3 + .../static/admin/js/vendor/select2/i18n/hy.js | 3 + .../static/admin/js/vendor/select2/i18n/id.js | 3 + .../static/admin/js/vendor/select2/i18n/is.js | 3 + .../static/admin/js/vendor/select2/i18n/it.js | 3 + .../static/admin/js/vendor/select2/i18n/ja.js | 3 + .../static/admin/js/vendor/select2/i18n/ka.js | 3 + .../static/admin/js/vendor/select2/i18n/km.js | 3 + .../static/admin/js/vendor/select2/i18n/ko.js | 3 + .../static/admin/js/vendor/select2/i18n/lt.js | 3 + .../static/admin/js/vendor/select2/i18n/lv.js | 3 + .../static/admin/js/vendor/select2/i18n/mk.js | 3 + .../static/admin/js/vendor/select2/i18n/ms.js | 3 + .../static/admin/js/vendor/select2/i18n/nb.js | 3 + .../static/admin/js/vendor/select2/i18n/ne.js | 3 + .../static/admin/js/vendor/select2/i18n/nl.js | 3 + .../static/admin/js/vendor/select2/i18n/pl.js | 3 + .../static/admin/js/vendor/select2/i18n/ps.js | 3 + .../admin/js/vendor/select2/i18n/pt-BR.js | 3 + .../static/admin/js/vendor/select2/i18n/pt.js | 3 + .../static/admin/js/vendor/select2/i18n/ro.js | 3 + .../static/admin/js/vendor/select2/i18n/ru.js | 3 + .../static/admin/js/vendor/select2/i18n/sk.js | 3 + .../static/admin/js/vendor/select2/i18n/sl.js | 3 + .../static/admin/js/vendor/select2/i18n/sq.js | 3 + .../admin/js/vendor/select2/i18n/sr-Cyrl.js | 3 + .../static/admin/js/vendor/select2/i18n/sr.js | 3 + .../static/admin/js/vendor/select2/i18n/sv.js | 3 + .../static/admin/js/vendor/select2/i18n/th.js | 3 + .../static/admin/js/vendor/select2/i18n/tk.js | 3 + .../static/admin/js/vendor/select2/i18n/tr.js | 3 + .../static/admin/js/vendor/select2/i18n/uk.js | 3 + .../static/admin/js/vendor/select2/i18n/vi.js | 3 + .../admin/js/vendor/select2/i18n/zh-CN.js | 3 + .../admin/js/vendor/select2/i18n/zh-TW.js | 3 + .../admin/js/vendor/select2/select2.full.js | 6820 ++++++++++ .../js/vendor/select2/select2.full.min.js | 2 + .../admin/js/vendor/xregexp/LICENSE.txt | 21 + .../static/admin/js/vendor/xregexp/xregexp.js | 6126 +++++++++ .../admin/js/vendor/xregexp/xregexp.min.js | 17 + .../contrib/admin/templates/admin/404.html | 12 + .../contrib/admin/templates/admin/500.html | 17 + .../admin/templates/admin/actions.html | 23 + .../admin/templates/admin/app_index.html | 20 + .../admin/templates/admin/app_list.html | 44 + .../templates/admin/auth/user/add_form.html | 18 + .../admin/auth/user/change_password.html | 80 + .../contrib/admin/templates/admin/base.html | 125 + .../admin/templates/admin/base_site.html | 12 + .../admin/templates/admin/change_form.html | 81 + .../admin/change_form_object_tools.html | 8 + .../admin/templates/admin/change_list.html | 93 + .../admin/change_list_object_tools.html | 12 + .../templates/admin/change_list_results.html | 36 + .../templates/admin/color_theme_toggle.html | 15 + .../admin/templates/admin/date_hierarchy.html | 14 + .../templates/admin/delete_confirmation.html | 50 + .../admin/delete_selected_confirmation.html | 47 + .../templates/admin/edit_inline/stacked.html | 38 + .../templates/admin/edit_inline/tabular.html | 71 + .../contrib/admin/templates/admin/filter.html | 12 + .../templates/admin/includes/fieldset.html | 39 + .../admin/includes/object_delete_summary.html | 7 + .../contrib/admin/templates/admin/index.html | 51 + .../admin/templates/admin/invalid_setup.html | 13 + .../contrib/admin/templates/admin/login.html | 68 + .../admin/templates/admin/nav_sidebar.html | 8 + .../admin/templates/admin/object_history.html | 56 + .../admin/templates/admin/pagination.html | 12 + .../admin/templates/admin/popup_response.html | 10 + .../admin/prepopulated_fields_js.html | 5 + .../admin/templates/admin/search_form.html | 20 + .../admin/templates/admin/submit_line.html | 17 + .../admin/widgets/clearable_file_input.html | 6 + .../admin/templates/admin/widgets/date.html | 3 + .../admin/widgets/foreign_key_raw_id.html | 2 + .../admin/widgets/many_to_many_raw_id.html | 1 + .../admin/templates/admin/widgets/radio.html | 1 + .../admin/widgets/related_widget_wrapper.html | 41 + .../admin/widgets/split_datetime.html | 4 + .../admin/templates/admin/widgets/time.html | 3 + .../admin/templates/admin/widgets/url.html | 1 + .../templates/registration/logged_out.html | 14 + .../registration/password_change_done.html | 20 + .../registration/password_change_form.html | 64 + .../registration/password_reset_complete.html | 17 + .../registration/password_reset_confirm.html | 47 + .../registration/password_reset_done.html | 17 + .../registration/password_reset_email.html | 14 + .../registration/password_reset_form.html | 31 + .../contrib/admin/templatetags/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 205 bytes .../__pycache__/admin_list.cpython-310.pyc | Bin 0 -> 12530 bytes .../__pycache__/admin_modify.cpython-310.pyc | Bin 0 -> 3720 bytes .../__pycache__/admin_urls.cpython-310.pyc | Bin 0 -> 1848 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1512 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2260 bytes .../contrib/admin/templatetags/admin_list.py | 536 + .../admin/templatetags/admin_modify.py | 150 + .../contrib/admin/templatetags/admin_urls.py | 70 + .../django/contrib/admin/templatetags/base.py | 45 + .../django/contrib/admin/templatetags/log.py | 67 + .../django/contrib/admin/tests.py | 233 + .../django/contrib/admin/utils.py | 614 + .../django/contrib/admin/views/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/autocomplete.cpython-310.pyc | Bin 0 -> 4165 bytes .../__pycache__/decorators.cpython-310.pyc | Bin 0 -> 877 bytes .../views/__pycache__/main.cpython-310.pyc | Bin 0 -> 14146 bytes .../contrib/admin/views/autocomplete.py | 123 + .../django/contrib/admin/views/decorators.py | 19 + .../django/contrib/admin/views/main.py | 631 + .../django/contrib/admin/widgets.py | 605 + .../django/contrib/admindocs/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../__pycache__/apps.cpython-310.pyc | Bin 0 -> 562 bytes .../__pycache__/middleware.cpython-310.pyc | Bin 0 -> 1598 bytes .../__pycache__/urls.cpython-310.pyc | Bin 0 -> 1210 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 6422 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 11934 bytes .../django/contrib/admindocs/apps.py | 7 + .../admindocs/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 3063 bytes .../admindocs/locale/af/LC_MESSAGES/django.po | 271 + .../admindocs/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 7440 bytes .../admindocs/locale/ar/LC_MESSAGES/django.po | 278 + .../locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 7465 bytes .../locale/ar_DZ/LC_MESSAGES/django.po | 277 + .../locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 715 bytes .../locale/ast/LC_MESSAGES/django.po | 258 + .../admindocs/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 6629 bytes .../admindocs/locale/az/LC_MESSAGES/django.po | 283 + .../admindocs/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 8163 bytes .../admindocs/locale/be/LC_MESSAGES/django.po | 284 + .../admindocs/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 8242 bytes .../admindocs/locale/bg/LC_MESSAGES/django.po | 290 + .../admindocs/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 3794 bytes .../admindocs/locale/bn/LC_MESSAGES/django.po | 261 + .../admindocs/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 1571 bytes .../admindocs/locale/br/LC_MESSAGES/django.po | 263 + .../admindocs/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 1730 bytes .../admindocs/locale/bs/LC_MESSAGES/django.po | 261 + .../admindocs/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 6650 bytes .../admindocs/locale/ca/LC_MESSAGES/django.po | 288 + .../locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 8154 bytes .../locale/ckb/LC_MESSAGES/django.po | 286 + .../admindocs/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 6619 bytes .../admindocs/locale/cs/LC_MESSAGES/django.po | 284 + .../admindocs/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 5401 bytes .../admindocs/locale/cy/LC_MESSAGES/django.po | 279 + .../admindocs/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 6446 bytes .../admindocs/locale/da/LC_MESSAGES/django.po | 285 + .../admindocs/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 6567 bytes .../admindocs/locale/de/LC_MESSAGES/django.po | 287 + .../locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 6807 bytes .../locale/dsb/LC_MESSAGES/django.po | 285 + .../admindocs/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 8581 bytes .../admindocs/locale/el/LC_MESSAGES/django.po | 290 + .../admindocs/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../admindocs/locale/en/LC_MESSAGES/django.po | 359 + .../locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 486 bytes .../locale/en_AU/LC_MESSAGES/django.po | 275 + .../locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 1821 bytes .../locale/en_GB/LC_MESSAGES/django.po | 260 + .../admindocs/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 6071 bytes .../admindocs/locale/eo/LC_MESSAGES/django.po | 279 + .../admindocs/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 6682 bytes .../admindocs/locale/es/LC_MESSAGES/django.po | 293 + .../locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 6658 bytes .../locale/es_AR/LC_MESSAGES/django.po | 286 + .../locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 6476 bytes .../locale/es_CO/LC_MESSAGES/django.po | 281 + .../locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 1853 bytes .../locale/es_MX/LC_MESSAGES/django.po | 260 + .../locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 6663 bytes .../locale/es_VE/LC_MESSAGES/django.po | 286 + .../admindocs/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 6381 bytes .../admindocs/locale/et/LC_MESSAGES/django.po | 286 + .../admindocs/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 6479 bytes .../admindocs/locale/eu/LC_MESSAGES/django.po | 283 + .../admindocs/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 7499 bytes .../admindocs/locale/fa/LC_MESSAGES/django.po | 285 + .../admindocs/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 6397 bytes .../admindocs/locale/fi/LC_MESSAGES/django.po | 278 + .../admindocs/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 6755 bytes .../admindocs/locale/fr/LC_MESSAGES/django.po | 285 + .../admindocs/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../admindocs/locale/fy/LC_MESSAGES/django.po | 275 + .../admindocs/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 6786 bytes .../admindocs/locale/ga/LC_MESSAGES/django.po | 286 + .../admindocs/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 6941 bytes .../admindocs/locale/gd/LC_MESSAGES/django.po | 289 + .../admindocs/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 6564 bytes .../admindocs/locale/gl/LC_MESSAGES/django.po | 285 + .../admindocs/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 6998 bytes .../admindocs/locale/he/LC_MESSAGES/django.po | 276 + .../admindocs/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 2297 bytes .../admindocs/locale/hi/LC_MESSAGES/django.po | 258 + .../admindocs/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 2550 bytes .../admindocs/locale/hr/LC_MESSAGES/django.po | 264 + .../locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 6770 bytes .../locale/hsb/LC_MESSAGES/django.po | 286 + .../admindocs/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 6634 bytes .../admindocs/locale/hu/LC_MESSAGES/django.po | 288 + .../admindocs/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 1860 bytes .../admindocs/locale/ia/LC_MESSAGES/django.po | 260 + .../admindocs/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 6343 bytes .../admindocs/locale/id/LC_MESSAGES/django.po | 287 + .../admindocs/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 464 bytes .../admindocs/locale/io/LC_MESSAGES/django.po | 275 + .../admindocs/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 1828 bytes .../admindocs/locale/is/LC_MESSAGES/django.po | 261 + .../admindocs/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 6453 bytes .../admindocs/locale/it/LC_MESSAGES/django.po | 289 + .../admindocs/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 7358 bytes .../admindocs/locale/ja/LC_MESSAGES/django.po | 284 + .../admindocs/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 4446 bytes .../admindocs/locale/ka/LC_MESSAGES/django.po | 263 + .../locale/kab/LC_MESSAGES/django.mo | Bin 0 -> 1289 bytes .../locale/kab/LC_MESSAGES/django.po | 258 + .../admindocs/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 1587 bytes .../admindocs/locale/kk/LC_MESSAGES/django.po | 258 + .../admindocs/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 1476 bytes .../admindocs/locale/km/LC_MESSAGES/django.po | 259 + .../admindocs/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 1656 bytes .../admindocs/locale/kn/LC_MESSAGES/django.po | 259 + .../admindocs/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 6563 bytes .../admindocs/locale/ko/LC_MESSAGES/django.po | 280 + .../admindocs/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 7977 bytes .../admindocs/locale/ky/LC_MESSAGES/django.po | 281 + .../admindocs/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../admindocs/locale/lb/LC_MESSAGES/django.po | 275 + .../admindocs/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 6741 bytes .../admindocs/locale/lt/LC_MESSAGES/django.po | 290 + .../admindocs/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 6449 bytes .../admindocs/locale/lv/LC_MESSAGES/django.po | 284 + .../admindocs/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 8290 bytes .../admindocs/locale/mk/LC_MESSAGES/django.po | 286 + .../admindocs/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 6865 bytes .../admindocs/locale/ml/LC_MESSAGES/django.po | 268 + .../admindocs/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 7108 bytes .../admindocs/locale/mn/LC_MESSAGES/django.po | 283 + .../admindocs/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 468 bytes .../admindocs/locale/mr/LC_MESSAGES/django.po | 275 + .../admindocs/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 6557 bytes .../admindocs/locale/ms/LC_MESSAGES/django.po | 283 + .../admindocs/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 1721 bytes .../admindocs/locale/my/LC_MESSAGES/django.po | 258 + .../admindocs/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 6308 bytes .../admindocs/locale/nb/LC_MESSAGES/django.po | 284 + .../admindocs/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 2571 bytes .../admindocs/locale/ne/LC_MESSAGES/django.po | 261 + .../admindocs/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 6498 bytes .../admindocs/locale/nl/LC_MESSAGES/django.po | 286 + .../admindocs/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 6299 bytes .../admindocs/locale/nn/LC_MESSAGES/django.po | 282 + .../admindocs/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 2044 bytes .../admindocs/locale/os/LC_MESSAGES/django.po | 258 + .../admindocs/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 1275 bytes .../admindocs/locale/pa/LC_MESSAGES/django.po | 258 + .../admindocs/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 6633 bytes .../admindocs/locale/pl/LC_MESSAGES/django.po | 294 + .../admindocs/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 6566 bytes .../admindocs/locale/pt/LC_MESSAGES/django.po | 286 + .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 6590 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 292 + .../admindocs/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 6755 bytes .../admindocs/locale/ro/LC_MESSAGES/django.po | 288 + .../admindocs/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 8434 bytes .../admindocs/locale/ru/LC_MESSAGES/django.po | 292 + .../admindocs/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 6670 bytes .../admindocs/locale/sk/LC_MESSAGES/django.po | 286 + .../admindocs/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 6508 bytes .../admindocs/locale/sl/LC_MESSAGES/django.po | 285 + .../admindocs/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 6551 bytes .../admindocs/locale/sq/LC_MESSAGES/django.po | 283 + .../admindocs/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 8154 bytes .../admindocs/locale/sr/LC_MESSAGES/django.po | 285 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 6542 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 363 + .../admindocs/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 6394 bytes .../admindocs/locale/sv/LC_MESSAGES/django.po | 288 + .../admindocs/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 1808 bytes .../admindocs/locale/sw/LC_MESSAGES/django.po | 259 + .../admindocs/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 1675 bytes .../admindocs/locale/ta/LC_MESSAGES/django.po | 258 + .../admindocs/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 1684 bytes .../admindocs/locale/te/LC_MESSAGES/django.po | 258 + .../admindocs/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 7731 bytes .../admindocs/locale/tg/LC_MESSAGES/django.po | 281 + .../admindocs/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 2167 bytes .../admindocs/locale/th/LC_MESSAGES/django.po | 258 + .../admindocs/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 6661 bytes .../admindocs/locale/tr/LC_MESSAGES/django.po | 287 + .../admindocs/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 1869 bytes .../admindocs/locale/tt/LC_MESSAGES/django.po | 259 + .../locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 618 bytes .../locale/udm/LC_MESSAGES/django.po | 275 + .../admindocs/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 7867 bytes .../admindocs/locale/ug/LC_MESSAGES/django.po | 280 + .../admindocs/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 8468 bytes .../admindocs/locale/uk/LC_MESSAGES/django.po | 294 + .../admindocs/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 1836 bytes .../admindocs/locale/ur/LC_MESSAGES/django.po | 259 + .../admindocs/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 1306 bytes .../admindocs/locale/vi/LC_MESSAGES/django.po | 259 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 6075 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 276 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 6016 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 274 + .../django/contrib/admindocs/middleware.py | 33 + .../templates/admin_doc/bookmarklets.html | 26 + .../admindocs/templates/admin_doc/index.html | 34 + .../templates/admin_doc/missing_docutils.html | 22 + .../templates/admin_doc/model_detail.html | 78 + .../templates/admin_doc/model_index.html | 52 + .../templates/admin_doc/template_detail.html | 27 + .../admin_doc/template_filter_index.html | 54 + .../admin_doc/template_tag_index.html | 54 + .../templates/admin_doc/view_detail.html | 33 + .../templates/admin_doc/view_index.html | 59 + .../django/contrib/admindocs/urls.py | 50 + .../django/contrib/admindocs/utils.py | 244 + .../django/contrib/admindocs/views.py | 503 + .../django/contrib/auth/__init__.py | 274 + .../auth/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7453 bytes .../auth/__pycache__/admin.cpython-310.pyc | Bin 0 -> 7090 bytes .../auth/__pycache__/apps.cpython-310.pyc | Bin 0 -> 1498 bytes .../auth/__pycache__/backends.cpython-310.pyc | Bin 0 -> 8964 bytes .../__pycache__/base_user.cpython-310.pyc | Bin 0 -> 6177 bytes .../auth/__pycache__/checks.cpython-310.pyc | Bin 0 -> 5915 bytes .../context_processors.cpython-310.pyc | Bin 0 -> 2592 bytes .../__pycache__/decorators.cpython-310.pyc | Bin 0 -> 3973 bytes .../auth/__pycache__/forms.cpython-310.pyc | Bin 0 -> 18935 bytes .../auth/__pycache__/hashers.cpython-310.pyc | Bin 0 -> 20818 bytes .../__pycache__/middleware.cpython-310.pyc | Bin 0 -> 6609 bytes .../auth/__pycache__/mixins.cpython-310.pyc | Bin 0 -> 5035 bytes .../auth/__pycache__/models.cpython-310.pyc | Bin 0 -> 17702 bytes .../password_validation.cpython-310.pyc | Bin 0 -> 9833 bytes .../auth/__pycache__/signals.cpython-310.pyc | Bin 0 -> 312 bytes .../auth/__pycache__/tokens.cpython-310.pyc | Bin 0 -> 4424 bytes .../auth/__pycache__/urls.cpython-310.pyc | Bin 0 -> 945 bytes .../__pycache__/validators.cpython-310.pyc | Bin 0 -> 1111 bytes .../auth/__pycache__/views.cpython-310.pyc | Bin 0 -> 12638 bytes .../django/contrib/auth/admin.py | 253 + .../site-packages/django/contrib/auth/apps.py | 31 + .../django/contrib/auth/backends.py | 233 + .../django/contrib/auth/base_user.py | 164 + .../django/contrib/auth/checks.py | 262 + .../contrib/auth/common-passwords.txt.gz | Bin 0 -> 82262 bytes .../django/contrib/auth/context_processors.py | 67 + .../django/contrib/auth/decorators.py | 136 + .../django/contrib/auth/forms.py | 597 + .../django/contrib/auth/handlers/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 200 bytes .../__pycache__/modwsgi.cpython-310.pyc | Bin 0 -> 1391 bytes .../django/contrib/auth/handlers/modwsgi.py | 43 + .../django/contrib/auth/hashers.py | 688 + .../auth/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 7514 bytes .../auth/locale/af/LC_MESSAGES/django.po | 307 + .../auth/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 10040 bytes .../auth/locale/ar/LC_MESSAGES/django.po | 319 + .../auth/locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 10228 bytes .../auth/locale/ar_DZ/LC_MESSAGES/django.po | 320 + .../auth/locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 2250 bytes .../auth/locale/ast/LC_MESSAGES/django.po | 284 + .../auth/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 8758 bytes .../auth/locale/az/LC_MESSAGES/django.po | 342 + .../auth/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 11469 bytes .../auth/locale/be/LC_MESSAGES/django.po | 349 + .../auth/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 10717 bytes .../auth/locale/bg/LC_MESSAGES/django.po | 343 + .../auth/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 5455 bytes .../auth/locale/bn/LC_MESSAGES/django.po | 286 + .../auth/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 1436 bytes .../auth/locale/br/LC_MESSAGES/django.po | 293 + .../auth/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 3146 bytes .../auth/locale/bs/LC_MESSAGES/django.po | 296 + .../auth/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 7643 bytes .../auth/locale/ca/LC_MESSAGES/django.po | 316 + .../auth/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 11066 bytes .../auth/locale/ckb/LC_MESSAGES/django.po | 341 + .../auth/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 8888 bytes .../auth/locale/cs/LC_MESSAGES/django.po | 344 + .../auth/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 4338 bytes .../auth/locale/cy/LC_MESSAGES/django.po | 294 + .../auth/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 8509 bytes .../auth/locale/da/LC_MESSAGES/django.po | 344 + .../auth/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 7607 bytes .../auth/locale/de/LC_MESSAGES/django.po | 318 + .../auth/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 9303 bytes .../auth/locale/dsb/LC_MESSAGES/django.po | 355 + .../auth/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 10072 bytes .../auth/locale/el/LC_MESSAGES/django.po | 320 + .../auth/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../auth/locale/en/LC_MESSAGES/django.po | 415 + .../auth/locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 7183 bytes .../auth/locale/en_AU/LC_MESSAGES/django.po | 306 + .../auth/locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 3179 bytes .../auth/locale/en_GB/LC_MESSAGES/django.po | 289 + .../auth/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 7421 bytes .../auth/locale/eo/LC_MESSAGES/django.po | 310 + .../auth/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 9100 bytes .../auth/locale/es/LC_MESSAGES/django.po | 365 + .../auth/locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 9235 bytes .../auth/locale/es_AR/LC_MESSAGES/django.po | 354 + .../auth/locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 6529 bytes .../auth/locale/es_CO/LC_MESSAGES/django.po | 304 + .../auth/locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 7822 bytes .../auth/locale/es_MX/LC_MESSAGES/django.po | 312 + .../auth/locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 7415 bytes .../auth/locale/es_VE/LC_MESSAGES/django.po | 304 + .../auth/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 7216 bytes .../auth/locale/et/LC_MESSAGES/django.po | 339 + .../auth/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 7181 bytes .../auth/locale/eu/LC_MESSAGES/django.po | 311 + .../auth/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 8979 bytes .../auth/locale/fa/LC_MESSAGES/django.po | 313 + .../auth/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 7537 bytes .../auth/locale/fi/LC_MESSAGES/django.po | 309 + .../auth/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 9536 bytes .../auth/locale/fr/LC_MESSAGES/django.po | 362 + .../auth/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../auth/locale/fy/LC_MESSAGES/django.po | 226 + .../auth/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 9476 bytes .../auth/locale/ga/LC_MESSAGES/django.po | 371 + .../auth/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 8743 bytes .../auth/locale/gd/LC_MESSAGES/django.po | 337 + .../auth/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 8805 bytes .../auth/locale/gl/LC_MESSAGES/django.po | 349 + .../auth/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 8716 bytes .../auth/locale/he/LC_MESSAGES/django.po | 307 + .../auth/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 5364 bytes .../auth/locale/hi/LC_MESSAGES/django.po | 290 + .../auth/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 5894 bytes .../auth/locale/hr/LC_MESSAGES/django.po | 306 + .../auth/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 9100 bytes .../auth/locale/hsb/LC_MESSAGES/django.po | 352 + .../auth/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 7714 bytes .../auth/locale/hu/LC_MESSAGES/django.po | 312 + .../auth/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 8001 bytes .../auth/locale/hy/LC_MESSAGES/django.po | 295 + .../auth/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 7626 bytes .../auth/locale/ia/LC_MESSAGES/django.po | 310 + .../auth/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 7296 bytes .../auth/locale/id/LC_MESSAGES/django.po | 307 + .../auth/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 464 bytes .../auth/locale/io/LC_MESSAGES/django.po | 226 + .../auth/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 7509 bytes .../auth/locale/is/LC_MESSAGES/django.po | 307 + .../auth/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 7862 bytes .../auth/locale/it/LC_MESSAGES/django.po | 322 + .../auth/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 9229 bytes .../auth/locale/ja/LC_MESSAGES/django.po | 335 + .../auth/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 10372 bytes .../auth/locale/ka/LC_MESSAGES/django.po | 302 + .../auth/locale/kab/LC_MESSAGES/django.mo | Bin 0 -> 2982 bytes .../auth/locale/kab/LC_MESSAGES/django.po | 287 + .../auth/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 3542 bytes .../auth/locale/kk/LC_MESSAGES/django.po | 285 + .../auth/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 2609 bytes .../auth/locale/km/LC_MESSAGES/django.po | 281 + .../auth/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 4024 bytes .../auth/locale/kn/LC_MESSAGES/django.po | 285 + .../auth/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 7651 bytes .../auth/locale/ko/LC_MESSAGES/django.po | 309 + .../auth/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 8924 bytes .../auth/locale/ky/LC_MESSAGES/django.po | 299 + .../auth/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../auth/locale/lb/LC_MESSAGES/django.po | 226 + .../auth/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 8146 bytes .../auth/locale/lt/LC_MESSAGES/django.po | 320 + .../auth/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 8802 bytes .../auth/locale/lv/LC_MESSAGES/django.po | 350 + .../auth/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 9235 bytes .../auth/locale/mk/LC_MESSAGES/django.po | 308 + .../auth/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 12611 bytes .../auth/locale/ml/LC_MESSAGES/django.po | 303 + .../auth/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 9403 bytes .../auth/locale/mn/LC_MESSAGES/django.po | 310 + .../auth/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 10430 bytes .../auth/locale/mr/LC_MESSAGES/django.po | 299 + .../auth/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 7654 bytes .../auth/locale/ms/LC_MESSAGES/django.po | 313 + .../auth/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 1026 bytes .../auth/locale/my/LC_MESSAGES/django.po | 282 + .../auth/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 7023 bytes .../auth/locale/nb/LC_MESSAGES/django.po | 302 + .../auth/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 7722 bytes .../auth/locale/ne/LC_MESSAGES/django.po | 286 + .../auth/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 8654 bytes .../auth/locale/nl/LC_MESSAGES/django.po | 353 + .../auth/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 7147 bytes .../auth/locale/nn/LC_MESSAGES/django.po | 301 + .../auth/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 4434 bytes .../auth/locale/os/LC_MESSAGES/django.po | 288 + .../auth/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 3666 bytes .../auth/locale/pa/LC_MESSAGES/django.po | 285 + .../auth/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 9123 bytes .../auth/locale/pl/LC_MESSAGES/django.po | 363 + .../auth/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 6953 bytes .../auth/locale/pt/LC_MESSAGES/django.po | 314 + .../auth/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 8790 bytes .../auth/locale/pt_BR/LC_MESSAGES/django.po | 369 + .../auth/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 7777 bytes .../auth/locale/ro/LC_MESSAGES/django.po | 320 + .../auth/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 11873 bytes .../auth/locale/ru/LC_MESSAGES/django.po | 359 + .../auth/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 8862 bytes .../auth/locale/sk/LC_MESSAGES/django.po | 349 + .../auth/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 7659 bytes .../auth/locale/sl/LC_MESSAGES/django.po | 312 + .../auth/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 9021 bytes .../auth/locale/sq/LC_MESSAGES/django.po | 349 + .../auth/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 11244 bytes .../auth/locale/sr/LC_MESSAGES/django.po | 348 + .../auth/locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 8794 bytes .../auth/locale/sr_Latn/LC_MESSAGES/django.po | 422 + .../auth/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 8542 bytes .../auth/locale/sv/LC_MESSAGES/django.po | 355 + .../auth/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 5029 bytes .../auth/locale/sw/LC_MESSAGES/django.po | 287 + .../auth/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 2679 bytes .../auth/locale/ta/LC_MESSAGES/django.po | 283 + .../auth/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 2955 bytes .../auth/locale/te/LC_MESSAGES/django.po | 285 + .../auth/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 7932 bytes .../auth/locale/tg/LC_MESSAGES/django.po | 299 + .../auth/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 6013 bytes .../auth/locale/th/LC_MESSAGES/django.po | 282 + .../auth/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 7467 bytes .../auth/locale/tk/LC_MESSAGES/django.po | 307 + .../auth/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 8662 bytes .../auth/locale/tr/LC_MESSAGES/django.po | 348 + .../auth/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 1371 bytes .../auth/locale/tt/LC_MESSAGES/django.po | 281 + .../auth/locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 462 bytes .../auth/locale/udm/LC_MESSAGES/django.po | 226 + .../auth/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 10714 bytes .../auth/locale/ug/LC_MESSAGES/django.po | 344 + .../auth/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 10146 bytes .../auth/locale/uk/LC_MESSAGES/django.po | 323 + .../auth/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 698 bytes .../auth/locale/ur/LC_MESSAGES/django.po | 282 + .../auth/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 2549 bytes .../auth/locale/uz/LC_MESSAGES/django.po | 287 + .../auth/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 7892 bytes .../auth/locale/vi/LC_MESSAGES/django.po | 305 + .../auth/locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 7741 bytes .../auth/locale/zh_Hans/LC_MESSAGES/django.po | 337 + .../auth/locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 7683 bytes .../auth/locale/zh_Hant/LC_MESSAGES/django.po | 328 + .../contrib/auth/management/__init__.py | 174 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3882 bytes .../auth/management/commands/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 211 bytes .../changepassword.cpython-310.pyc | Bin 0 -> 2559 bytes .../createsuperuser.cpython-310.pyc | Bin 0 -> 7975 bytes .../management/commands/changepassword.py | 82 + .../management/commands/createsuperuser.py | 317 + .../django/contrib/auth/middleware.py | 191 + .../contrib/auth/migrations/0001_initial.py | 204 + .../0002_alter_permission_name_max_length.py | 15 + .../0003_alter_user_email_max_length.py | 17 + .../0004_alter_user_username_opts.py | 27 + .../0005_alter_user_last_login_null.py | 17 + .../0006_require_contenttypes_0002.py | 13 + ...007_alter_validators_add_error_messages.py | 26 + .../0008_alter_user_username_max_length.py | 26 + .../0009_alter_user_last_name_max_length.py | 17 + .../0010_alter_group_name_max_length.py | 15 + .../0011_update_proxy_permissions.py | 76 + .../0012_alter_user_first_name_max_length.py | 17 + .../contrib/auth/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 3140 bytes ...permission_name_max_length.cpython-310.pyc | Bin 0 -> 660 bytes ...lter_user_email_max_length.cpython-310.pyc | Bin 0 -> 706 bytes ...4_alter_user_username_opts.cpython-310.pyc | Bin 0 -> 948 bytes ...alter_user_last_login_null.cpython-310.pyc | Bin 0 -> 691 bytes ..._require_contenttypes_0002.cpython-310.pyc | Bin 0 -> 562 bytes ...idators_add_error_messages.cpython-310.pyc | Bin 0 -> 957 bytes ...r_user_username_max_length.cpython-310.pyc | Bin 0 -> 963 bytes ..._user_last_name_max_length.cpython-310.pyc | Bin 0 -> 707 bytes ...lter_group_name_max_length.cpython-310.pyc | Bin 0 -> 685 bytes ...1_update_proxy_permissions.cpython-310.pyc | Bin 0 -> 2725 bytes ...user_first_name_max_length.cpython-310.pyc | Bin 0 -> 704 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../django/contrib/auth/mixins.py | 135 + .../django/contrib/auth/models.py | 500 + .../contrib/auth/password_validation.py | 266 + .../django/contrib/auth/signals.py | 5 + .../auth/widgets/read_only_password_hash.html | 8 + .../registration/password_reset_subject.txt | 3 + .../django/contrib/auth/tokens.py | 132 + .../site-packages/django/contrib/auth/urls.py | 36 + .../django/contrib/auth/validators.py | 25 + .../django/contrib/auth/views.py | 384 + .../django/contrib/contenttypes/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../__pycache__/admin.cpython-310.pyc | Bin 0 -> 3822 bytes .../__pycache__/apps.cpython-310.pyc | Bin 0 -> 1223 bytes .../__pycache__/checks.cpython-310.pyc | Bin 0 -> 1600 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 25334 bytes .../__pycache__/forms.cpython-310.pyc | Bin 0 -> 3260 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 6415 bytes .../__pycache__/prefetch.cpython-310.pyc | Bin 0 -> 1503 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 2040 bytes .../django/contrib/contenttypes/admin.py | 143 + .../django/contrib/contenttypes/apps.py | 22 + .../django/contrib/contenttypes/checks.py | 46 + .../django/contrib/contenttypes/fields.py | 828 ++ .../django/contrib/contenttypes/forms.py | 133 + .../locale/af/LC_MESSAGES/django.mo | Bin 0 -> 1070 bytes .../locale/af/LC_MESSAGES/django.po | 42 + .../locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 1271 bytes .../locale/ar/LC_MESSAGES/django.po | 46 + .../locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 1233 bytes .../locale/ar_DZ/LC_MESSAGES/django.po | 43 + .../locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 643 bytes .../locale/ast/LC_MESSAGES/django.po | 42 + .../locale/az/LC_MESSAGES/django.mo | Bin 0 -> 1058 bytes .../locale/az/LC_MESSAGES/django.po | 45 + .../locale/be/LC_MESSAGES/django.mo | Bin 0 -> 1353 bytes .../locale/be/LC_MESSAGES/django.po | 45 + .../locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 1225 bytes .../locale/bg/LC_MESSAGES/django.po | 46 + .../locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 1201 bytes .../locale/bn/LC_MESSAGES/django.po | 43 + .../locale/br/LC_MESSAGES/django.mo | Bin 0 -> 1419 bytes .../locale/br/LC_MESSAGES/django.po | 45 + .../locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 700 bytes .../locale/bs/LC_MESSAGES/django.po | 43 + .../locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 1095 bytes .../locale/ca/LC_MESSAGES/django.po | 44 + .../locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 1213 bytes .../locale/ckb/LC_MESSAGES/django.po | 42 + .../locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 1108 bytes .../locale/cs/LC_MESSAGES/django.po | 44 + .../locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 1159 bytes .../locale/cy/LC_MESSAGES/django.po | 43 + .../locale/da/LC_MESSAGES/django.mo | Bin 0 -> 1038 bytes .../locale/da/LC_MESSAGES/django.po | 43 + .../locale/de/LC_MESSAGES/django.mo | Bin 0 -> 1055 bytes .../locale/de/LC_MESSAGES/django.po | 42 + .../locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 1132 bytes .../locale/dsb/LC_MESSAGES/django.po | 43 + .../locale/el/LC_MESSAGES/django.mo | Bin 0 -> 1286 bytes .../locale/el/LC_MESSAGES/django.po | 45 + .../locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../locale/en/LC_MESSAGES/django.po | 45 + .../locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 486 bytes .../locale/en_AU/LC_MESSAGES/django.po | 41 + .../locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 1053 bytes .../locale/en_GB/LC_MESSAGES/django.po | 43 + .../locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 1072 bytes .../locale/eo/LC_MESSAGES/django.po | 43 + .../locale/es/LC_MESSAGES/django.mo | Bin 0 -> 1096 bytes .../locale/es/LC_MESSAGES/django.po | 46 + .../locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 1084 bytes .../locale/es_AR/LC_MESSAGES/django.po | 43 + .../locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 1158 bytes .../locale/es_CO/LC_MESSAGES/django.po | 43 + .../locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 840 bytes .../locale/es_MX/LC_MESSAGES/django.po | 44 + .../locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 1152 bytes .../locale/es_VE/LC_MESSAGES/django.po | 44 + .../locale/et/LC_MESSAGES/django.mo | Bin 0 -> 1028 bytes .../locale/et/LC_MESSAGES/django.po | 45 + .../locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 1077 bytes .../locale/eu/LC_MESSAGES/django.po | 43 + .../locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 1130 bytes .../locale/fa/LC_MESSAGES/django.po | 45 + .../locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 1036 bytes .../locale/fi/LC_MESSAGES/django.po | 44 + .../locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 1078 bytes .../locale/fr/LC_MESSAGES/django.po | 43 + .../locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../locale/fy/LC_MESSAGES/django.po | 41 + .../locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 1081 bytes .../locale/ga/LC_MESSAGES/django.po | 45 + .../locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 1154 bytes .../locale/gd/LC_MESSAGES/django.po | 45 + .../locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 1080 bytes .../locale/gl/LC_MESSAGES/django.po | 45 + .../locale/he/LC_MESSAGES/django.mo | Bin 0 -> 1219 bytes .../locale/he/LC_MESSAGES/django.po | 43 + .../locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 1321 bytes .../locale/hi/LC_MESSAGES/django.po | 42 + .../locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 1167 bytes .../locale/hr/LC_MESSAGES/django.po | 45 + .../locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 1106 bytes .../locale/hsb/LC_MESSAGES/django.po | 43 + .../locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 1102 bytes .../locale/hu/LC_MESSAGES/django.po | 46 + .../locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 1290 bytes .../locale/hy/LC_MESSAGES/django.po | 41 + .../locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 1105 bytes .../locale/ia/LC_MESSAGES/django.po | 42 + .../locale/id/LC_MESSAGES/django.mo | Bin 0 -> 1031 bytes .../locale/id/LC_MESSAGES/django.po | 46 + .../locale/io/LC_MESSAGES/django.mo | Bin 0 -> 1051 bytes .../locale/io/LC_MESSAGES/django.po | 41 + .../locale/is/LC_MESSAGES/django.mo | Bin 0 -> 1049 bytes .../locale/is/LC_MESSAGES/django.po | 44 + .../locale/it/LC_MESSAGES/django.mo | Bin 0 -> 1075 bytes .../locale/it/LC_MESSAGES/django.po | 46 + .../locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 1211 bytes .../locale/ja/LC_MESSAGES/django.po | 47 + .../locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 1429 bytes .../locale/ka/LC_MESSAGES/django.po | 43 + .../locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 627 bytes .../locale/kk/LC_MESSAGES/django.po | 41 + .../locale/km/LC_MESSAGES/django.mo | Bin 0 -> 678 bytes .../locale/km/LC_MESSAGES/django.po | 41 + .../locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 714 bytes .../locale/kn/LC_MESSAGES/django.po | 42 + .../locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 1089 bytes .../locale/ko/LC_MESSAGES/django.po | 43 + .../locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 1182 bytes .../locale/ky/LC_MESSAGES/django.po | 42 + .../locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../locale/lb/LC_MESSAGES/django.po | 41 + .../locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 1215 bytes .../locale/lt/LC_MESSAGES/django.po | 46 + .../locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 1065 bytes .../locale/lv/LC_MESSAGES/django.po | 45 + .../locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 1258 bytes .../locale/mk/LC_MESSAGES/django.po | 44 + .../locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 1378 bytes .../locale/ml/LC_MESSAGES/django.po | 43 + .../locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 1225 bytes .../locale/mn/LC_MESSAGES/django.po | 46 + .../locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 1004 bytes .../locale/mr/LC_MESSAGES/django.po | 42 + .../locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 1035 bytes .../locale/ms/LC_MESSAGES/django.po | 41 + .../locale/my/LC_MESSAGES/django.mo | Bin 0 -> 1554 bytes .../locale/my/LC_MESSAGES/django.po | 42 + .../locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 1031 bytes .../locale/nb/LC_MESSAGES/django.po | 46 + .../locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 1344 bytes .../locale/ne/LC_MESSAGES/django.po | 41 + .../locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 1040 bytes .../locale/nl/LC_MESSAGES/django.po | 44 + .../locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 1040 bytes .../locale/nn/LC_MESSAGES/django.po | 44 + .../locale/os/LC_MESSAGES/django.mo | Bin 0 -> 1116 bytes .../locale/os/LC_MESSAGES/django.po | 42 + .../locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 697 bytes .../locale/pa/LC_MESSAGES/django.po | 42 + .../locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 1208 bytes .../locale/pl/LC_MESSAGES/django.po | 47 + .../locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 1154 bytes .../locale/pt/LC_MESSAGES/django.po | 45 + .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 1117 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 46 + .../locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 1142 bytes .../locale/ro/LC_MESSAGES/django.po | 45 + .../locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 1345 bytes .../locale/ru/LC_MESSAGES/django.po | 47 + .../locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 1115 bytes .../locale/sk/LC_MESSAGES/django.po | 45 + .../locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 1147 bytes .../locale/sl/LC_MESSAGES/django.po | 45 + .../locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 1066 bytes .../locale/sq/LC_MESSAGES/django.po | 43 + .../locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 1204 bytes .../locale/sr/LC_MESSAGES/django.po | 46 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 1102 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 45 + .../locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 1055 bytes .../locale/sv/LC_MESSAGES/django.po | 46 + .../locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 563 bytes .../locale/sw/LC_MESSAGES/django.po | 41 + .../locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 678 bytes .../locale/ta/LC_MESSAGES/django.po | 41 + .../locale/te/LC_MESSAGES/django.mo | Bin 0 -> 690 bytes .../locale/te/LC_MESSAGES/django.po | 41 + .../locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 864 bytes .../locale/tg/LC_MESSAGES/django.po | 41 + .../locale/th/LC_MESSAGES/django.mo | Bin 0 -> 1186 bytes .../locale/th/LC_MESSAGES/django.po | 42 + .../locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 1068 bytes .../locale/tk/LC_MESSAGES/django.po | 42 + .../locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 1057 bytes .../locale/tr/LC_MESSAGES/django.po | 45 + .../locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 659 bytes .../locale/tt/LC_MESSAGES/django.po | 41 + .../locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 462 bytes .../locale/udm/LC_MESSAGES/django.po | 41 + .../locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 1182 bytes .../locale/ug/LC_MESSAGES/django.po | 41 + .../locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 1404 bytes .../locale/uk/LC_MESSAGES/django.po | 49 + .../locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 671 bytes .../locale/ur/LC_MESSAGES/django.po | 41 + .../locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 1155 bytes .../locale/vi/LC_MESSAGES/django.po | 45 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 1015 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 46 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 1046 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 44 + .../contenttypes/management/__init__.py | 145 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4053 bytes .../management/commands/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 219 bytes .../remove_stale_contenttypes.cpython-310.pyc | Bin 0 -> 3776 bytes .../commands/remove_stale_contenttypes.py | 113 + .../contenttypes/migrations/0001_initial.py | 45 + .../0002_remove_content_type_name.py | 42 + .../contenttypes/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1197 bytes ...2_remove_content_type_name.cpython-310.pyc | Bin 0 -> 1289 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 210 bytes .../django/contrib/contenttypes/models.py | 188 + .../django/contrib/contenttypes/prefetch.py | 36 + .../django/contrib/contenttypes/views.py | 88 + .../django/contrib/flatpages/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../__pycache__/admin.cpython-310.pyc | Bin 0 -> 915 bytes .../__pycache__/apps.cpython-310.pyc | Bin 0 -> 598 bytes .../__pycache__/forms.cpython-310.pyc | Bin 0 -> 2715 bytes .../__pycache__/middleware.cpython-310.pyc | Bin 0 -> 915 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 2151 bytes .../__pycache__/sitemaps.cpython-310.pyc | Bin 0 -> 943 bytes .../__pycache__/urls.cpython-310.pyc | Bin 0 -> 392 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 1957 bytes .../django/contrib/flatpages/admin.py | 22 + .../django/contrib/flatpages/apps.py | 8 + .../django/contrib/flatpages/forms.py | 74 + .../flatpages/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 2282 bytes .../flatpages/locale/af/LC_MESSAGES/django.po | 89 + .../flatpages/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 2636 bytes .../flatpages/locale/ar/LC_MESSAGES/django.po | 91 + .../locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 2637 bytes .../locale/ar_DZ/LC_MESSAGES/django.po | 87 + .../locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 924 bytes .../locale/ast/LC_MESSAGES/django.po | 80 + .../flatpages/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 2378 bytes .../flatpages/locale/az/LC_MESSAGES/django.po | 94 + .../flatpages/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 2978 bytes .../flatpages/locale/be/LC_MESSAGES/django.po | 92 + .../flatpages/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 2802 bytes .../flatpages/locale/bg/LC_MESSAGES/django.po | 92 + .../flatpages/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 2988 bytes .../flatpages/locale/bn/LC_MESSAGES/django.po | 83 + .../flatpages/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 2433 bytes .../flatpages/locale/br/LC_MESSAGES/django.po | 95 + .../flatpages/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 1782 bytes .../flatpages/locale/bs/LC_MESSAGES/django.po | 88 + .../flatpages/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 2237 bytes .../flatpages/locale/ca/LC_MESSAGES/django.po | 93 + .../locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 2716 bytes .../locale/ckb/LC_MESSAGES/django.po | 88 + .../flatpages/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 2340 bytes .../flatpages/locale/cs/LC_MESSAGES/django.po | 89 + .../flatpages/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 2163 bytes .../flatpages/locale/cy/LC_MESSAGES/django.po | 88 + .../flatpages/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 2277 bytes .../flatpages/locale/da/LC_MESSAGES/django.po | 92 + .../flatpages/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 2373 bytes .../flatpages/locale/de/LC_MESSAGES/django.po | 92 + .../locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 2391 bytes .../locale/dsb/LC_MESSAGES/django.po | 90 + .../flatpages/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 2864 bytes .../flatpages/locale/el/LC_MESSAGES/django.po | 93 + .../flatpages/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../flatpages/locale/en/LC_MESSAGES/django.po | 96 + .../locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 2210 bytes .../locale/en_AU/LC_MESSAGES/django.po | 88 + .../locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 1989 bytes .../locale/en_GB/LC_MESSAGES/django.po | 85 + .../flatpages/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 2333 bytes .../flatpages/locale/eo/LC_MESSAGES/django.po | 93 + .../flatpages/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 2258 bytes .../flatpages/locale/es/LC_MESSAGES/django.po | 93 + .../locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 2275 bytes .../locale/es_AR/LC_MESSAGES/django.po | 89 + .../locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 2140 bytes .../locale/es_CO/LC_MESSAGES/django.po | 86 + .../locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 2062 bytes .../locale/es_MX/LC_MESSAGES/django.po | 84 + .../locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 2187 bytes .../locale/es_VE/LC_MESSAGES/django.po | 85 + .../flatpages/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 2233 bytes .../flatpages/locale/et/LC_MESSAGES/django.po | 89 + .../flatpages/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 2244 bytes .../flatpages/locale/eu/LC_MESSAGES/django.po | 90 + .../flatpages/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 2612 bytes .../flatpages/locale/fa/LC_MESSAGES/django.po | 92 + .../flatpages/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 2256 bytes .../flatpages/locale/fi/LC_MESSAGES/django.po | 92 + .../flatpages/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 2430 bytes .../flatpages/locale/fr/LC_MESSAGES/django.po | 93 + .../flatpages/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../flatpages/locale/fy/LC_MESSAGES/django.po | 74 + .../flatpages/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 2351 bytes .../flatpages/locale/ga/LC_MESSAGES/django.po | 91 + .../flatpages/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 2469 bytes .../flatpages/locale/gd/LC_MESSAGES/django.po | 95 + .../flatpages/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 2256 bytes .../flatpages/locale/gl/LC_MESSAGES/django.po | 89 + .../flatpages/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 2517 bytes .../flatpages/locale/he/LC_MESSAGES/django.po | 87 + .../flatpages/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 2770 bytes .../flatpages/locale/hi/LC_MESSAGES/django.po | 81 + .../flatpages/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 2188 bytes .../flatpages/locale/hr/LC_MESSAGES/django.po | 88 + .../locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 2361 bytes .../locale/hsb/LC_MESSAGES/django.po | 89 + .../flatpages/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 2363 bytes .../flatpages/locale/hu/LC_MESSAGES/django.po | 94 + .../flatpages/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 2536 bytes .../flatpages/locale/hy/LC_MESSAGES/django.po | 84 + .../flatpages/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 500 bytes .../flatpages/locale/ia/LC_MESSAGES/django.po | 77 + .../flatpages/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 2222 bytes .../flatpages/locale/id/LC_MESSAGES/django.po | 90 + .../flatpages/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 464 bytes .../flatpages/locale/io/LC_MESSAGES/django.po | 74 + .../flatpages/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 2229 bytes .../flatpages/locale/is/LC_MESSAGES/django.po | 87 + .../flatpages/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 2209 bytes .../flatpages/locale/it/LC_MESSAGES/django.po | 92 + .../flatpages/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 2469 bytes .../flatpages/locale/ja/LC_MESSAGES/django.po | 90 + .../flatpages/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 3022 bytes .../flatpages/locale/ka/LC_MESSAGES/django.po | 88 + .../flatpages/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 2438 bytes .../flatpages/locale/kk/LC_MESSAGES/django.po | 88 + .../flatpages/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 1942 bytes .../flatpages/locale/km/LC_MESSAGES/django.po | 80 + .../flatpages/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 1902 bytes .../flatpages/locale/kn/LC_MESSAGES/django.po | 82 + .../flatpages/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 2304 bytes .../flatpages/locale/ko/LC_MESSAGES/django.po | 90 + .../flatpages/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 2667 bytes .../flatpages/locale/ky/LC_MESSAGES/django.po | 89 + .../flatpages/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 502 bytes .../flatpages/locale/lb/LC_MESSAGES/django.po | 77 + .../flatpages/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 2506 bytes .../flatpages/locale/lt/LC_MESSAGES/django.po | 94 + .../flatpages/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 2359 bytes .../flatpages/locale/lv/LC_MESSAGES/django.po | 93 + .../flatpages/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 2699 bytes .../flatpages/locale/mk/LC_MESSAGES/django.po | 90 + .../flatpages/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 3549 bytes .../flatpages/locale/ml/LC_MESSAGES/django.po | 89 + .../flatpages/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 2776 bytes .../flatpages/locale/mn/LC_MESSAGES/django.po | 92 + .../flatpages/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 2040 bytes .../flatpages/locale/mr/LC_MESSAGES/django.po | 82 + .../flatpages/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 2184 bytes .../flatpages/locale/ms/LC_MESSAGES/django.po | 87 + .../flatpages/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 507 bytes .../flatpages/locale/my/LC_MESSAGES/django.po | 77 + .../flatpages/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 2208 bytes .../flatpages/locale/nb/LC_MESSAGES/django.po | 91 + .../flatpages/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 1500 bytes .../flatpages/locale/ne/LC_MESSAGES/django.po | 77 + .../flatpages/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 2231 bytes .../flatpages/locale/nl/LC_MESSAGES/django.po | 92 + .../flatpages/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 2256 bytes .../flatpages/locale/nn/LC_MESSAGES/django.po | 90 + .../flatpages/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 2329 bytes .../flatpages/locale/os/LC_MESSAGES/django.po | 86 + .../flatpages/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 903 bytes .../flatpages/locale/pa/LC_MESSAGES/django.po | 78 + .../flatpages/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 2448 bytes .../flatpages/locale/pl/LC_MESSAGES/django.po | 96 + .../flatpages/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 2115 bytes .../flatpages/locale/pt/LC_MESSAGES/django.po | 87 + .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 2291 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 98 + .../flatpages/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 2337 bytes .../flatpages/locale/ro/LC_MESSAGES/django.po | 96 + .../flatpages/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 2934 bytes .../flatpages/locale/ru/LC_MESSAGES/django.po | 95 + .../flatpages/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 2353 bytes .../flatpages/locale/sk/LC_MESSAGES/django.po | 92 + .../flatpages/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 2301 bytes .../flatpages/locale/sl/LC_MESSAGES/django.po | 93 + .../flatpages/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 2328 bytes .../flatpages/locale/sq/LC_MESSAGES/django.po | 89 + .../flatpages/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 2770 bytes .../flatpages/locale/sr/LC_MESSAGES/django.po | 92 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 2328 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 93 + .../flatpages/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 2252 bytes .../flatpages/locale/sv/LC_MESSAGES/django.po | 92 + .../flatpages/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 1537 bytes .../flatpages/locale/sw/LC_MESSAGES/django.po | 83 + .../flatpages/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 1945 bytes .../flatpages/locale/ta/LC_MESSAGES/django.po | 80 + .../flatpages/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 1238 bytes .../flatpages/locale/te/LC_MESSAGES/django.po | 79 + .../flatpages/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 2064 bytes .../flatpages/locale/tg/LC_MESSAGES/django.po | 86 + .../flatpages/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 2698 bytes .../flatpages/locale/th/LC_MESSAGES/django.po | 80 + .../flatpages/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 835 bytes .../flatpages/locale/tk/LC_MESSAGES/django.po | 84 + .../flatpages/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 2290 bytes .../flatpages/locale/tr/LC_MESSAGES/django.po | 94 + .../flatpages/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 2007 bytes .../flatpages/locale/tt/LC_MESSAGES/django.po | 84 + .../locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 490 bytes .../locale/udm/LC_MESSAGES/django.po | 77 + .../flatpages/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 2644 bytes .../flatpages/locale/ug/LC_MESSAGES/django.po | 85 + .../flatpages/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 3002 bytes .../flatpages/locale/uk/LC_MESSAGES/django.po | 99 + .../flatpages/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 1976 bytes .../flatpages/locale/ur/LC_MESSAGES/django.po | 84 + .../flatpages/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 1035 bytes .../flatpages/locale/vi/LC_MESSAGES/django.po | 82 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 2124 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 89 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 2176 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 88 + .../django/contrib/flatpages/middleware.py | 20 + .../flatpages/migrations/0001_initial.py | 68 + .../contrib/flatpages/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1537 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 207 bytes .../django/contrib/flatpages/models.py | 49 + .../django/contrib/flatpages/sitemaps.py | 14 + .../flatpages/templatetags/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../__pycache__/flatpages.cpython-310.pyc | Bin 0 -> 2949 bytes .../flatpages/templatetags/flatpages.py | 101 + .../django/contrib/flatpages/urls.py | 6 + .../django/contrib/flatpages/views.py | 70 + .../django/contrib/gis/__init__.py | 0 .../gis/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../gis/__pycache__/apps.cpython-310.pyc | Bin 0 -> 837 bytes .../gis/__pycache__/feeds.cpython-310.pyc | Bin 0 -> 5348 bytes .../gis/__pycache__/geoip2.cpython-310.pyc | Bin 0 -> 8464 bytes .../gis/__pycache__/geometry.cpython-310.pyc | Bin 0 -> 685 bytes .../gis/__pycache__/measure.cpython-310.pyc | Bin 0 -> 9488 bytes .../gis/__pycache__/ptr.cpython-310.pyc | Bin 0 -> 1350 bytes .../gis/__pycache__/shortcuts.cpython-310.pyc | Bin 0 -> 1378 bytes .../gis/__pycache__/views.cpython-310.pyc | Bin 0 -> 847 bytes .../django/contrib/gis/admin/__init__.py | 29 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 602 bytes .../admin/__pycache__/options.cpython-310.pyc | Bin 0 -> 1123 bytes .../django/contrib/gis/admin/options.py | 21 + .../site-packages/django/contrib/gis/apps.py | 14 + .../django/contrib/gis/db/__init__.py | 0 .../db/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../contrib/gis/db/backends/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1217 bytes .../contrib/gis/db/backends/base/__init__.py | 0 .../base/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 207 bytes .../base/__pycache__/adapter.cpython-310.pyc | Bin 0 -> 1227 bytes .../base/__pycache__/features.cpython-310.pyc | Bin 0 -> 3471 bytes .../base/__pycache__/models.cpython-310.pyc | Bin 0 -> 4386 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 6255 bytes .../contrib/gis/db/backends/base/adapter.py | 26 + .../contrib/gis/db/backends/base/features.py | 111 + .../contrib/gis/db/backends/base/models.py | 140 + .../gis/db/backends/base/operations.py | 210 + .../contrib/gis/db/backends/mysql/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../mysql/__pycache__/base.cpython-310.pyc | Bin 0 -> 764 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 1160 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 1411 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 4704 bytes .../mysql/__pycache__/schema.cpython-310.pyc | Bin 0 -> 3271 bytes .../contrib/gis/db/backends/mysql/base.py | 14 + .../contrib/gis/db/backends/mysql/features.py | 21 + .../gis/db/backends/mysql/introspection.py | 33 + .../gis/db/backends/mysql/operations.py | 143 + .../contrib/gis/db/backends/mysql/schema.py | 83 + .../gis/db/backends/oracle/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 2620 bytes .../oracle/__pycache__/base.cpython-310.pyc | Bin 0 -> 770 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 1294 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 1628 bytes .../oracle/__pycache__/models.cpython-310.pyc | Bin 0 -> 2726 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 8308 bytes .../oracle/__pycache__/schema.cpython-310.pyc | Bin 0 -> 4099 bytes .../contrib/gis/db/backends/oracle/adapter.py | 61 + .../contrib/gis/db/backends/oracle/base.py | 14 + .../gis/db/backends/oracle/features.py | 28 + .../gis/db/backends/oracle/introspection.py | 46 + .../contrib/gis/db/backends/oracle/models.py | 65 + .../gis/db/backends/oracle/operations.py | 247 + .../contrib/gis/db/backends/oracle/schema.py | 114 + .../gis/db/backends/postgis/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 210 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 2334 bytes .../postgis/__pycache__/base.cpython-310.pyc | Bin 0 -> 6088 bytes .../postgis/__pycache__/const.cpython-310.pyc | Bin 0 -> 739 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 730 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 2591 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 2647 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 13450 bytes .../__pycache__/pgraster.cpython-310.pyc | Bin 0 -> 2597 bytes .../__pycache__/schema.cpython-310.pyc | Bin 0 -> 2585 bytes .../gis/db/backends/postgis/adapter.py | 63 + .../contrib/gis/db/backends/postgis/base.py | 161 + .../contrib/gis/db/backends/postgis/const.py | 63 + .../gis/db/backends/postgis/features.py | 13 + .../gis/db/backends/postgis/introspection.py | 71 + .../contrib/gis/db/backends/postgis/models.py | 73 + .../gis/db/backends/postgis/operations.py | 423 + .../gis/db/backends/postgis/pgraster.py | 152 + .../contrib/gis/db/backends/postgis/schema.py | 81 + .../gis/db/backends/spatialite/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 213 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 764 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 2738 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 483 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 1264 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 2422 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 2611 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 8500 bytes .../__pycache__/schema.cpython-310.pyc | Bin 0 -> 4839 bytes .../gis/db/backends/spatialite/adapter.py | 10 + .../gis/db/backends/spatialite/base.py | 79 + .../gis/db/backends/spatialite/client.py | 5 + .../gis/db/backends/spatialite/features.py | 26 + .../db/backends/spatialite/introspection.py | 82 + .../gis/db/backends/spatialite/models.py | 71 + .../gis/db/backends/spatialite/operations.py | 231 + .../gis/db/backends/spatialite/schema.py | 194 + .../django/contrib/gis/db/backends/utils.py | 28 + .../django/contrib/gis/db/models/__init__.py | 30 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 770 bytes .../__pycache__/aggregates.cpython-310.pyc | Bin 0 -> 3472 bytes .../models/__pycache__/fields.cpython-310.pyc | Bin 0 -> 12775 bytes .../__pycache__/functions.cpython-310.pyc | Bin 0 -> 19349 bytes .../__pycache__/lookups.cpython-310.pyc | Bin 0 -> 11767 bytes .../models/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 2453 bytes .../contrib/gis/db/models/aggregates.py | 95 + .../django/contrib/gis/db/models/fields.py | 436 + .../django/contrib/gis/db/models/functions.py | 590 + .../django/contrib/gis/db/models/lookups.py | 395 + .../django/contrib/gis/db/models/proxy.py | 84 + .../contrib/gis/db/models/sql/__init__.py | 6 + .../sql/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 338 bytes .../__pycache__/conversion.cpython-310.pyc | Bin 0 -> 2903 bytes .../contrib/gis/db/models/sql/conversion.py | 74 + .../site-packages/django/contrib/gis/feeds.py | 151 + .../django/contrib/gis/forms/__init__.py | 13 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 560 bytes .../forms/__pycache__/fields.cpython-310.pyc | Bin 0 -> 4120 bytes .../forms/__pycache__/widgets.cpython-310.pyc | Bin 0 -> 3979 bytes .../django/contrib/gis/forms/fields.py | 144 + .../django/contrib/gis/forms/widgets.py | 125 + .../django/contrib/gis/gdal/LICENSE | 28 + .../django/contrib/gis/gdal/__init__.py | 59 + .../gdal/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1958 bytes .../gis/gdal/__pycache__/base.cpython-310.pyc | Bin 0 -> 511 bytes .../__pycache__/datasource.cpython-310.pyc | Bin 0 -> 4251 bytes .../gdal/__pycache__/driver.cpython-310.pyc | Bin 0 -> 2485 bytes .../gdal/__pycache__/envelope.cpython-310.pyc | Bin 0 -> 5857 bytes .../gdal/__pycache__/error.cpython-310.pyc | Bin 0 -> 1553 bytes .../gdal/__pycache__/feature.cpython-310.pyc | Bin 0 -> 4760 bytes .../gdal/__pycache__/field.cpython-310.pyc | Bin 0 -> 7751 bytes .../__pycache__/geometries.cpython-310.pyc | Bin 0 -> 26760 bytes .../gdal/__pycache__/geomtype.cpython-310.pyc | Bin 0 -> 4614 bytes .../gdal/__pycache__/layer.cpython-310.pyc | Bin 0 -> 9318 bytes .../gdal/__pycache__/libgdal.cpython-310.pyc | Bin 0 -> 2855 bytes .../gis/gdal/__pycache__/srs.cpython-310.pyc | Bin 0 -> 13015 bytes .../django/contrib/gis/gdal/base.py | 6 + .../django/contrib/gis/gdal/datasource.py | 128 + .../django/contrib/gis/gdal/driver.py | 94 + .../django/contrib/gis/gdal/envelope.py | 204 + .../django/contrib/gis/gdal/error.py | 61 + .../django/contrib/gis/gdal/feature.py | 120 + .../django/contrib/gis/gdal/field.py | 253 + .../django/contrib/gis/gdal/geometries.py | 822 ++ .../django/contrib/gis/gdal/geomtype.py | 146 + .../django/contrib/gis/gdal/layer.py | 234 + .../django/contrib/gis/gdal/libgdal.py | 140 + .../contrib/gis/gdal/prototypes/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 206 bytes .../prototypes/__pycache__/ds.cpython-310.pyc | Bin 0 -> 3777 bytes .../__pycache__/errcheck.cpython-310.pyc | Bin 0 -> 3855 bytes .../__pycache__/generation.cpython-310.pyc | Bin 0 -> 4537 bytes .../__pycache__/geom.cpython-310.pyc | Bin 0 -> 4618 bytes .../__pycache__/raster.cpython-310.pyc | Bin 0 -> 3539 bytes .../__pycache__/srs.cpython-310.pyc | Bin 0 -> 2806 bytes .../django/contrib/gis/gdal/prototypes/ds.py | 110 + .../contrib/gis/gdal/prototypes/errcheck.py | 142 + .../contrib/gis/gdal/prototypes/generation.py | 178 + .../contrib/gis/gdal/prototypes/geom.py | 168 + .../contrib/gis/gdal/prototypes/raster.py | 169 + .../django/contrib/gis/gdal/prototypes/srs.py | 107 + .../contrib/gis/gdal/raster/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../raster/__pycache__/band.cpython-310.pyc | Bin 0 -> 7891 bytes .../raster/__pycache__/base.cpython-310.pyc | Bin 0 -> 1846 bytes .../raster/__pycache__/const.cpython-310.pyc | Bin 0 -> 1775 bytes .../raster/__pycache__/source.cpython-310.pyc | Bin 0 -> 13781 bytes .../django/contrib/gis/gdal/raster/band.py | 273 + .../django/contrib/gis/gdal/raster/base.py | 77 + .../django/contrib/gis/gdal/raster/const.py | 105 + .../django/contrib/gis/gdal/raster/source.py | 541 + .../django/contrib/gis/gdal/srs.py | 361 + .../django/contrib/gis/geoip2.py | 249 + .../django/contrib/gis/geometry.py | 19 + .../django/contrib/gis/geos/LICENSE | 27 + .../django/contrib/gis/geos/__init__.py | 19 + .../geos/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 952 bytes .../gis/geos/__pycache__/base.cpython-310.pyc | Bin 0 -> 511 bytes .../__pycache__/collections.cpython-310.pyc | Bin 0 -> 4449 bytes .../geos/__pycache__/coordseq.cpython-310.pyc | Bin 0 -> 8575 bytes .../geos/__pycache__/error.cpython-310.pyc | Bin 0 -> 435 bytes .../geos/__pycache__/factory.cpython-310.pyc | Bin 0 -> 999 bytes .../geos/__pycache__/geometry.cpython-310.pyc | Bin 0 -> 27968 bytes .../gis/geos/__pycache__/io.cpython-310.pyc | Bin 0 -> 1250 bytes .../geos/__pycache__/libgeos.cpython-310.pyc | Bin 0 -> 4071 bytes .../__pycache__/linestring.cpython-310.pyc | Bin 0 -> 5737 bytes .../__pycache__/mutable_list.cpython-310.pyc | Bin 0 -> 10166 bytes .../geos/__pycache__/point.cpython-310.pyc | Bin 0 -> 5255 bytes .../geos/__pycache__/polygon.cpython-310.pyc | Bin 0 -> 6577 bytes .../geos/__pycache__/prepared.cpython-310.pyc | Bin 0 -> 2342 bytes .../django/contrib/gis/geos/base.py | 6 + .../django/contrib/gis/geos/collections.py | 121 + .../django/contrib/gis/geos/coordseq.py | 211 + .../django/contrib/gis/geos/error.py | 3 + .../django/contrib/gis/geos/factory.py | 33 + .../django/contrib/gis/geos/geometry.py | 780 ++ .../django/contrib/gis/geos/io.py | 28 + .../django/contrib/gis/geos/libgeos.py | 175 + .../django/contrib/gis/geos/linestring.py | 193 + .../django/contrib/gis/geos/mutable_list.py | 314 + .../django/contrib/gis/geos/point.py | 162 + .../django/contrib/gis/geos/polygon.py | 189 + .../django/contrib/gis/geos/prepared.py | 51 + .../contrib/gis/geos/prototypes/__init__.py | 67 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1868 bytes .../__pycache__/coordseq.cpython-310.pyc | Bin 0 -> 2949 bytes .../__pycache__/errcheck.cpython-310.pyc | Bin 0 -> 2505 bytes .../__pycache__/geom.cpython-310.pyc | Bin 0 -> 2565 bytes .../prototypes/__pycache__/io.cpython-310.pyc | Bin 0 -> 10376 bytes .../__pycache__/misc.cpython-310.pyc | Bin 0 -> 1302 bytes .../__pycache__/predicates.cpython-310.pyc | Bin 0 -> 1836 bytes .../__pycache__/prepared.cpython-310.pyc | Bin 0 -> 1286 bytes .../__pycache__/threadsafe.cpython-310.pyc | Bin 0 -> 2684 bytes .../__pycache__/topology.cpython-310.pyc | Bin 0 -> 2073 bytes .../contrib/gis/geos/prototypes/coordseq.py | 95 + .../contrib/gis/geos/prototypes/errcheck.py | 96 + .../contrib/gis/geos/prototypes/geom.py | 91 + .../django/contrib/gis/geos/prototypes/io.py | 369 + .../contrib/gis/geos/prototypes/misc.py | 35 + .../contrib/gis/geos/prototypes/predicates.py | 49 + .../contrib/gis/geos/prototypes/prepared.py | 26 + .../contrib/gis/geos/prototypes/threadsafe.py | 77 + .../contrib/gis/geos/prototypes/topology.py | 73 + .../gis/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 518 bytes .../gis/locale/af/LC_MESSAGES/django.po | 82 + .../gis/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 2301 bytes .../gis/locale/ar/LC_MESSAGES/django.po | 89 + .../gis/locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 2403 bytes .../gis/locale/ar_DZ/LC_MESSAGES/django.po | 88 + .../gis/locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 850 bytes .../gis/locale/ast/LC_MESSAGES/django.po | 85 + .../gis/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 1901 bytes .../gis/locale/az/LC_MESSAGES/django.po | 86 + .../gis/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 2389 bytes .../gis/locale/be/LC_MESSAGES/django.po | 87 + .../gis/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 2323 bytes .../gis/locale/bg/LC_MESSAGES/django.po | 87 + .../gis/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 1070 bytes .../gis/locale/bn/LC_MESSAGES/django.po | 86 + .../gis/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 1614 bytes .../gis/locale/br/LC_MESSAGES/django.po | 91 + .../gis/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 1308 bytes .../gis/locale/bs/LC_MESSAGES/django.po | 88 + .../gis/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 1948 bytes .../gis/locale/ca/LC_MESSAGES/django.po | 91 + .../gis/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 2253 bytes .../gis/locale/ckb/LC_MESSAGES/django.po | 86 + .../gis/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 2026 bytes .../gis/locale/cs/LC_MESSAGES/django.po | 88 + .../gis/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 1430 bytes .../gis/locale/cy/LC_MESSAGES/django.po | 86 + .../gis/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 1862 bytes .../gis/locale/da/LC_MESSAGES/django.po | 86 + .../gis/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 1930 bytes .../gis/locale/de/LC_MESSAGES/django.po | 86 + .../gis/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 2016 bytes .../gis/locale/dsb/LC_MESSAGES/django.po | 86 + .../gis/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 2402 bytes .../gis/locale/el/LC_MESSAGES/django.po | 91 + .../gis/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../gis/locale/en/LC_MESSAGES/django.po | 98 + .../gis/locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 486 bytes .../gis/locale/en_AU/LC_MESSAGES/django.po | 80 + .../gis/locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 1369 bytes .../gis/locale/en_GB/LC_MESSAGES/django.po | 88 + .../gis/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 1878 bytes .../gis/locale/eo/LC_MESSAGES/django.po | 86 + .../gis/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 2005 bytes .../gis/locale/es/LC_MESSAGES/django.po | 92 + .../gis/locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 2006 bytes .../gis/locale/es_AR/LC_MESSAGES/django.po | 87 + .../gis/locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 1817 bytes .../gis/locale/es_CO/LC_MESSAGES/django.po | 90 + .../gis/locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 1441 bytes .../gis/locale/es_MX/LC_MESSAGES/django.po | 87 + .../gis/locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 486 bytes .../gis/locale/es_VE/LC_MESSAGES/django.po | 80 + .../gis/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 1872 bytes .../gis/locale/et/LC_MESSAGES/django.po | 88 + .../gis/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 1888 bytes .../gis/locale/eu/LC_MESSAGES/django.po | 84 + .../gis/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 2155 bytes .../gis/locale/fa/LC_MESSAGES/django.po | 87 + .../gis/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 1839 bytes .../gis/locale/fi/LC_MESSAGES/django.po | 84 + .../gis/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 2058 bytes .../gis/locale/fr/LC_MESSAGES/django.po | 87 + .../gis/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../gis/locale/fy/LC_MESSAGES/django.po | 80 + .../gis/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 1957 bytes .../gis/locale/ga/LC_MESSAGES/django.po | 88 + .../gis/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 2022 bytes .../gis/locale/gd/LC_MESSAGES/django.po | 89 + .../gis/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 1956 bytes .../gis/locale/gl/LC_MESSAGES/django.po | 89 + .../gis/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 2135 bytes .../gis/locale/he/LC_MESSAGES/django.po | 83 + .../gis/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 1818 bytes .../gis/locale/hi/LC_MESSAGES/django.po | 86 + .../gis/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 1549 bytes .../gis/locale/hr/LC_MESSAGES/django.po | 91 + .../gis/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 1991 bytes .../gis/locale/hsb/LC_MESSAGES/django.po | 87 + .../gis/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 1891 bytes .../gis/locale/hu/LC_MESSAGES/django.po | 88 + .../gis/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 2020 bytes .../gis/locale/hy/LC_MESSAGES/django.po | 81 + .../gis/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 1812 bytes .../gis/locale/ia/LC_MESSAGES/django.po | 87 + .../gis/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 1862 bytes .../gis/locale/id/LC_MESSAGES/django.po | 90 + .../gis/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 464 bytes .../gis/locale/io/LC_MESSAGES/django.po | 80 + .../gis/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 1350 bytes .../gis/locale/is/LC_MESSAGES/django.po | 87 + .../gis/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 1976 bytes .../gis/locale/it/LC_MESSAGES/django.po | 94 + .../gis/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 2052 bytes .../gis/locale/ja/LC_MESSAGES/django.po | 87 + .../gis/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 1991 bytes .../gis/locale/ka/LC_MESSAGES/django.po | 87 + .../gis/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 1349 bytes .../gis/locale/kk/LC_MESSAGES/django.po | 85 + .../gis/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 459 bytes .../gis/locale/km/LC_MESSAGES/django.po | 80 + .../gis/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 461 bytes .../gis/locale/kn/LC_MESSAGES/django.po | 80 + .../gis/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 1888 bytes .../gis/locale/ko/LC_MESSAGES/django.po | 88 + .../gis/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 2157 bytes .../gis/locale/ky/LC_MESSAGES/django.po | 83 + .../gis/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../gis/locale/lb/LC_MESSAGES/django.po | 80 + .../gis/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 2036 bytes .../gis/locale/lt/LC_MESSAGES/django.po | 89 + .../gis/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 1978 bytes .../gis/locale/lv/LC_MESSAGES/django.po | 87 + .../gis/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 2518 bytes .../gis/locale/mk/LC_MESSAGES/django.po | 91 + .../gis/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 2049 bytes .../gis/locale/ml/LC_MESSAGES/django.po | 88 + .../gis/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 2323 bytes .../gis/locale/mn/LC_MESSAGES/django.po | 91 + .../gis/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 510 bytes .../gis/locale/mr/LC_MESSAGES/django.po | 82 + .../gis/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 1828 bytes .../gis/locale/ms/LC_MESSAGES/django.po | 84 + .../gis/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 525 bytes .../gis/locale/my/LC_MESSAGES/django.po | 85 + .../gis/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 1808 bytes .../gis/locale/nb/LC_MESSAGES/django.po | 88 + .../gis/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 982 bytes .../gis/locale/ne/LC_MESSAGES/django.po | 84 + .../gis/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 1897 bytes .../gis/locale/nl/LC_MESSAGES/django.po | 91 + .../gis/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 1830 bytes .../gis/locale/nn/LC_MESSAGES/django.po | 87 + .../gis/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 1594 bytes .../gis/locale/os/LC_MESSAGES/django.po | 87 + .../gis/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 1265 bytes .../gis/locale/pa/LC_MESSAGES/django.po | 86 + .../gis/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 2045 bytes .../gis/locale/pl/LC_MESSAGES/django.po | 92 + .../gis/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 2036 bytes .../gis/locale/pt/LC_MESSAGES/django.po | 95 + .../gis/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 1976 bytes .../gis/locale/pt_BR/LC_MESSAGES/django.po | 94 + .../gis/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 1770 bytes .../gis/locale/ro/LC_MESSAGES/django.po | 89 + .../gis/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 2481 bytes .../gis/locale/ru/LC_MESSAGES/django.po | 91 + .../gis/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 1980 bytes .../gis/locale/sk/LC_MESSAGES/django.po | 86 + .../gis/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 1972 bytes .../gis/locale/sl/LC_MESSAGES/django.po | 89 + .../gis/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 1660 bytes .../gis/locale/sq/LC_MESSAGES/django.po | 85 + .../gis/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 2365 bytes .../gis/locale/sr/LC_MESSAGES/django.po | 87 + .../gis/locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 1981 bytes .../gis/locale/sr_Latn/LC_MESSAGES/django.po | 87 + .../gis/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 1880 bytes .../gis/locale/sv/LC_MESSAGES/django.po | 90 + .../gis/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 1426 bytes .../gis/locale/sw/LC_MESSAGES/django.po | 87 + .../gis/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 466 bytes .../gis/locale/ta/LC_MESSAGES/django.po | 80 + .../gis/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 824 bytes .../gis/locale/te/LC_MESSAGES/django.po | 84 + .../gis/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 611 bytes .../gis/locale/tg/LC_MESSAGES/django.po | 84 + .../gis/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 1835 bytes .../gis/locale/th/LC_MESSAGES/django.po | 86 + .../gis/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 1904 bytes .../gis/locale/tr/LC_MESSAGES/django.po | 88 + .../gis/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 1470 bytes .../gis/locale/tt/LC_MESSAGES/django.po | 85 + .../gis/locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 462 bytes .../gis/locale/udm/LC_MESSAGES/django.po | 80 + .../gis/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 2360 bytes .../gis/locale/ug/LC_MESSAGES/django.po | 86 + .../gis/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 2513 bytes .../gis/locale/uk/LC_MESSAGES/django.po | 93 + .../gis/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 1410 bytes .../gis/locale/ur/LC_MESSAGES/django.po | 86 + .../gis/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 1384 bytes .../gis/locale/vi/LC_MESSAGES/django.po | 87 + .../gis/locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 1760 bytes .../gis/locale/zh_Hans/LC_MESSAGES/django.po | 90 + .../gis/locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 1811 bytes .../gis/locale/zh_Hant/LC_MESSAGES/django.po | 87 + .../django/contrib/gis/management/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../gis/management/commands/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 210 bytes .../__pycache__/inspectdb.cpython-310.pyc | Bin 0 -> 876 bytes .../__pycache__/ogrinspect.cpython-310.pyc | Bin 0 -> 5203 bytes .../gis/management/commands/inspectdb.py | 18 + .../gis/management/commands/ogrinspect.py | 164 + .../django/contrib/gis/measure.py | 373 + .../site-packages/django/contrib/gis/ptr.py | 41 + .../contrib/gis/serializers/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../__pycache__/geojson.cpython-310.pyc | Bin 0 -> 2964 bytes .../django/contrib/gis/serializers/geojson.py | 81 + .../django/contrib/gis/shortcuts.py | 40 + .../django/contrib/gis/sitemaps/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 315 bytes .../sitemaps/__pycache__/kml.cpython-310.pyc | Bin 0 -> 2636 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 1954 bytes .../django/contrib/gis/sitemaps/kml.py | 78 + .../django/contrib/gis/sitemaps/views.py | 65 + .../django/contrib/gis/static/gis/css/ol3.css | 39 + .../gis/static/gis/img/draw_line_off.svg | 1 + .../gis/static/gis/img/draw_line_on.svg | 1 + .../gis/static/gis/img/draw_point_off.svg | 1 + .../gis/static/gis/img/draw_point_on.svg | 1 + .../gis/static/gis/img/draw_polygon_off.svg | 1 + .../gis/static/gis/img/draw_polygon_on.svg | 1 + .../contrib/gis/static/gis/js/OLMapWidget.js | 233 + .../contrib/gis/templates/gis/kml/base.kml | 6 + .../gis/templates/gis/kml/placemarks.kml | 8 + .../gis/templates/gis/openlayers-osm.html | 12 + .../contrib/gis/templates/gis/openlayers.html | 32 + .../django/contrib/gis/utils/__init__.py | 25 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 748 bytes .../__pycache__/layermapping.cpython-310.pyc | Bin 0 -> 16045 bytes .../utils/__pycache__/ogrinfo.cpython-310.pyc | Bin 0 -> 1712 bytes .../__pycache__/ogrinspect.cpython-310.pyc | Bin 0 -> 7242 bytes .../gis/utils/__pycache__/srs.cpython-310.pyc | Bin 0 -> 2500 bytes .../django/contrib/gis/utils/layermapping.py | 728 ++ .../django/contrib/gis/utils/ogrinfo.py | 53 + .../django/contrib/gis/utils/ogrinspect.py | 268 + .../django/contrib/gis/utils/srs.py | 78 + .../site-packages/django/contrib/gis/views.py | 22 + .../django/contrib/humanize/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../humanize/__pycache__/apps.cpython-310.pyc | Bin 0 -> 539 bytes .../django/contrib/humanize/apps.py | 7 + .../humanize/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 4224 bytes .../humanize/locale/af/LC_MESSAGES/django.po | 328 + .../humanize/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 7510 bytes .../humanize/locale/ar/LC_MESSAGES/django.po | 449 + .../locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 9155 bytes .../locale/ar_DZ/LC_MESSAGES/django.po | 555 + .../humanize/locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 3468 bytes .../humanize/locale/ast/LC_MESSAGES/django.po | 262 + .../humanize/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 4311 bytes .../humanize/locale/az/LC_MESSAGES/django.po | 333 + .../humanize/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 6653 bytes .../humanize/locale/be/LC_MESSAGES/django.po | 389 + .../humanize/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 4823 bytes .../humanize/locale/bg/LC_MESSAGES/django.po | 332 + .../humanize/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 4026 bytes .../humanize/locale/bn/LC_MESSAGES/django.po | 263 + .../humanize/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 5850 bytes .../humanize/locale/br/LC_MESSAGES/django.po | 517 + .../humanize/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 1416 bytes .../humanize/locale/bs/LC_MESSAGES/django.po | 292 + .../humanize/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 4270 bytes .../humanize/locale/ca/LC_MESSAGES/django.po | 332 + .../humanize/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 5021 bytes .../humanize/locale/ckb/LC_MESSAGES/django.po | 329 + .../humanize/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 5479 bytes .../humanize/locale/cs/LC_MESSAGES/django.po | 388 + .../humanize/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 5241 bytes .../humanize/locale/cy/LC_MESSAGES/django.po | 318 + .../humanize/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 4316 bytes .../humanize/locale/da/LC_MESSAGES/django.po | 331 + .../humanize/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 4364 bytes .../humanize/locale/de/LC_MESSAGES/django.po | 330 + .../humanize/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 5588 bytes .../humanize/locale/dsb/LC_MESSAGES/django.po | 387 + .../humanize/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 6740 bytes .../humanize/locale/el/LC_MESSAGES/django.po | 398 + .../humanize/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../humanize/locale/en/LC_MESSAGES/django.po | 378 + .../locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 918 bytes .../locale/en_AU/LC_MESSAGES/django.po | 328 + .../locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 3461 bytes .../locale/en_GB/LC_MESSAGES/django.po | 263 + .../humanize/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 5386 bytes .../humanize/locale/eo/LC_MESSAGES/django.po | 394 + .../humanize/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 5005 bytes .../humanize/locale/es/LC_MESSAGES/django.po | 365 + .../locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 4425 bytes .../locale/es_AR/LC_MESSAGES/django.po | 332 + .../locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 4203 bytes .../locale/es_CO/LC_MESSAGES/django.po | 267 + .../locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 3939 bytes .../locale/es_MX/LC_MESSAGES/django.po | 264 + .../locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 942 bytes .../locale/es_VE/LC_MESSAGES/django.po | 262 + .../humanize/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 4406 bytes .../humanize/locale/et/LC_MESSAGES/django.po | 334 + .../humanize/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 4315 bytes .../humanize/locale/eu/LC_MESSAGES/django.po | 332 + .../humanize/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 4656 bytes .../humanize/locale/fa/LC_MESSAGES/django.po | 335 + .../humanize/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 4425 bytes .../humanize/locale/fi/LC_MESSAGES/django.po | 331 + .../humanize/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 5125 bytes .../humanize/locale/fr/LC_MESSAGES/django.po | 360 + .../humanize/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../humanize/locale/fy/LC_MESSAGES/django.po | 261 + .../humanize/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 6346 bytes .../humanize/locale/ga/LC_MESSAGES/django.po | 418 + .../humanize/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 5838 bytes .../humanize/locale/gd/LC_MESSAGES/django.po | 389 + .../humanize/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 4345 bytes .../humanize/locale/gl/LC_MESSAGES/django.po | 332 + .../humanize/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 5875 bytes .../humanize/locale/he/LC_MESSAGES/django.po | 389 + .../humanize/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 4131 bytes .../humanize/locale/hi/LC_MESSAGES/django.po | 263 + .../humanize/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 1274 bytes .../humanize/locale/hr/LC_MESSAGES/django.po | 291 + .../humanize/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 5679 bytes .../humanize/locale/hsb/LC_MESSAGES/django.po | 387 + .../humanize/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 4313 bytes .../humanize/locale/hu/LC_MESSAGES/django.po | 332 + .../humanize/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 3810 bytes .../humanize/locale/hy/LC_MESSAGES/django.po | 330 + .../humanize/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 4167 bytes .../humanize/locale/ia/LC_MESSAGES/django.po | 262 + .../humanize/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 3885 bytes .../humanize/locale/id/LC_MESSAGES/django.po | 304 + .../humanize/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 464 bytes .../humanize/locale/io/LC_MESSAGES/django.po | 261 + .../humanize/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 3805 bytes .../humanize/locale/is/LC_MESSAGES/django.po | 399 + .../humanize/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 5374 bytes .../humanize/locale/it/LC_MESSAGES/django.po | 368 + .../humanize/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 3907 bytes .../humanize/locale/ja/LC_MESSAGES/django.po | 301 + .../humanize/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 4878 bytes .../humanize/locale/ka/LC_MESSAGES/django.po | 395 + .../humanize/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 2113 bytes .../humanize/locale/kk/LC_MESSAGES/django.po | 394 + .../humanize/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 459 bytes .../humanize/locale/km/LC_MESSAGES/django.po | 233 + .../humanize/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 461 bytes .../humanize/locale/kn/LC_MESSAGES/django.po | 233 + .../humanize/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 3891 bytes .../humanize/locale/ko/LC_MESSAGES/django.po | 304 + .../humanize/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 4177 bytes .../humanize/locale/ky/LC_MESSAGES/django.po | 299 + .../humanize/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../humanize/locale/lb/LC_MESSAGES/django.po | 261 + .../humanize/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 7333 bytes .../humanize/locale/lt/LC_MESSAGES/django.po | 477 + .../humanize/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 5033 bytes .../humanize/locale/lv/LC_MESSAGES/django.po | 363 + .../humanize/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 4761 bytes .../humanize/locale/mk/LC_MESSAGES/django.po | 262 + .../humanize/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 4655 bytes .../humanize/locale/ml/LC_MESSAGES/django.po | 396 + .../humanize/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 4863 bytes .../humanize/locale/mn/LC_MESSAGES/django.po | 333 + .../humanize/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 1506 bytes .../humanize/locale/mr/LC_MESSAGES/django.po | 328 + .../humanize/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 3839 bytes .../humanize/locale/ms/LC_MESSAGES/django.po | 299 + .../humanize/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 3479 bytes .../humanize/locale/my/LC_MESSAGES/django.po | 234 + .../humanize/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 4318 bytes .../humanize/locale/nb/LC_MESSAGES/django.po | 331 + .../humanize/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 3590 bytes .../humanize/locale/ne/LC_MESSAGES/django.po | 395 + .../humanize/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 4311 bytes .../humanize/locale/nl/LC_MESSAGES/django.po | 332 + .../humanize/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 4336 bytes .../humanize/locale/nn/LC_MESSAGES/django.po | 330 + .../humanize/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 3902 bytes .../humanize/locale/os/LC_MESSAGES/django.po | 262 + .../humanize/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 1569 bytes .../humanize/locale/pa/LC_MESSAGES/django.po | 263 + .../humanize/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 5596 bytes .../humanize/locale/pl/LC_MESSAGES/django.po | 394 + .../humanize/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 5408 bytes .../humanize/locale/pt/LC_MESSAGES/django.po | 398 + .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 5092 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 367 + .../humanize/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 6188 bytes .../humanize/locale/ro/LC_MESSAGES/django.po | 440 + .../humanize/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 6733 bytes .../humanize/locale/ru/LC_MESSAGES/django.po | 396 + .../humanize/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 5541 bytes .../humanize/locale/sk/LC_MESSAGES/django.po | 390 + .../humanize/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 4967 bytes .../humanize/locale/sl/LC_MESSAGES/django.po | 392 + .../humanize/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 5280 bytes .../humanize/locale/sq/LC_MESSAGES/django.po | 395 + .../humanize/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 5718 bytes .../humanize/locale/sr/LC_MESSAGES/django.po | 359 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 2613 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 412 + .../humanize/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 4333 bytes .../humanize/locale/sv/LC_MESSAGES/django.po | 335 + .../humanize/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 4146 bytes .../humanize/locale/sw/LC_MESSAGES/django.po | 262 + .../humanize/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 466 bytes .../humanize/locale/ta/LC_MESSAGES/django.po | 261 + .../humanize/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 1327 bytes .../humanize/locale/te/LC_MESSAGES/django.po | 262 + .../humanize/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 1580 bytes .../humanize/locale/tg/LC_MESSAGES/django.po | 393 + .../humanize/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 3709 bytes .../humanize/locale/th/LC_MESSAGES/django.po | 357 + .../humanize/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 4419 bytes .../humanize/locale/tk/LC_MESSAGES/django.po | 328 + .../humanize/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 4319 bytes .../humanize/locale/tr/LC_MESSAGES/django.po | 333 + .../humanize/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 3243 bytes .../humanize/locale/tt/LC_MESSAGES/django.po | 233 + .../humanize/locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 462 bytes .../humanize/locale/udm/LC_MESSAGES/django.po | 233 + .../humanize/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 4883 bytes .../humanize/locale/ug/LC_MESSAGES/django.po | 328 + .../humanize/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 6991 bytes .../humanize/locale/uk/LC_MESSAGES/django.po | 395 + .../humanize/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 1347 bytes .../humanize/locale/ur/LC_MESSAGES/django.po | 261 + .../humanize/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 1915 bytes .../humanize/locale/uz/LC_MESSAGES/django.po | 353 + .../humanize/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 3646 bytes .../humanize/locale/vi/LC_MESSAGES/django.po | 235 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 3844 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 308 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 3737 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 304 + .../contrib/humanize/templatetags/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../__pycache__/humanize.cpython-310.pyc | Bin 0 -> 7705 bytes .../contrib/humanize/templatetags/humanize.py | 327 + .../django/contrib/messages/__init__.py | 3 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 352 bytes .../messages/__pycache__/api.cpython-310.pyc | Bin 0 -> 2928 bytes .../messages/__pycache__/apps.cpython-310.pyc | Bin 0 -> 1126 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 443 bytes .../context_processors.cpython-310.pyc | Bin 0 -> 595 bytes .../__pycache__/middleware.cpython-310.pyc | Bin 0 -> 1259 bytes .../messages/__pycache__/test.cpython-310.pyc | Bin 0 -> 714 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 513 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 963 bytes .../django/contrib/messages/api.py | 127 + .../django/contrib/messages/apps.py | 19 + .../django/contrib/messages/constants.py | 21 + .../contrib/messages/context_processors.py | 13 + .../django/contrib/messages/middleware.py | 26 + .../contrib/messages/storage/__init__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 665 bytes .../storage/__pycache__/base.cpython-310.pyc | Bin 0 -> 7003 bytes .../__pycache__/cookie.cpython-310.pyc | Bin 0 -> 8900 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 2092 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 2225 bytes .../django/contrib/messages/storage/base.py | 183 + .../django/contrib/messages/storage/cookie.py | 248 + .../contrib/messages/storage/fallback.py | 56 + .../contrib/messages/storage/session.py | 52 + .../django/contrib/messages/test.py | 8 + .../django/contrib/messages/utils.py | 12 + .../django/contrib/messages/views.py | 19 + .../django/contrib/postgres/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../postgres/__pycache__/apps.cpython-310.pyc | Bin 0 -> 2930 bytes .../__pycache__/constraints.cpython-310.pyc | Bin 0 -> 8036 bytes .../__pycache__/expressions.cpython-310.pyc | Bin 0 -> 943 bytes .../__pycache__/functions.cpython-310.pyc | Bin 0 -> 668 bytes .../__pycache__/indexes.cpython-310.pyc | Bin 0 -> 7918 bytes .../__pycache__/lookups.cpython-310.pyc | Bin 0 -> 3155 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 13272 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 12241 bytes .../__pycache__/serializers.cpython-310.pyc | Bin 0 -> 691 bytes .../__pycache__/signals.cpython-310.pyc | Bin 0 -> 2096 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 1243 bytes .../__pycache__/validators.cpython-310.pyc | Bin 0 -> 3168 bytes .../contrib/postgres/aggregates/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 252 bytes .../__pycache__/general.cpython-310.pyc | Bin 0 -> 2324 bytes .../__pycache__/mixins.cpython-310.pyc | Bin 0 -> 1958 bytes .../__pycache__/statistics.cpython-310.pyc | Bin 0 -> 2598 bytes .../contrib/postgres/aggregates/general.py | 65 + .../contrib/postgres/aggregates/mixins.py | 47 + .../contrib/postgres/aggregates/statistics.py | 75 + .../django/contrib/postgres/apps.py | 84 + .../django/contrib/postgres/constraints.py | 232 + .../django/contrib/postgres/expressions.py | 14 + .../contrib/postgres/fields/__init__.py | 5 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 295 bytes .../fields/__pycache__/array.cpython-310.pyc | Bin 0 -> 12825 bytes .../fields/__pycache__/citext.cpython-310.pyc | Bin 0 -> 1429 bytes .../fields/__pycache__/hstore.cpython-310.pyc | Bin 0 -> 4343 bytes .../fields/__pycache__/jsonb.cpython-310.pyc | Bin 0 -> 650 bytes .../fields/__pycache__/ranges.cpython-310.pyc | Bin 0 -> 12336 bytes .../fields/__pycache__/utils.cpython-310.pyc | Bin 0 -> 514 bytes .../django/contrib/postgres/fields/array.py | 373 + .../django/contrib/postgres/fields/citext.py | 45 + .../django/contrib/postgres/fields/hstore.py | 112 + .../django/contrib/postgres/fields/jsonb.py | 14 + .../django/contrib/postgres/fields/ranges.py | 383 + .../django/contrib/postgres/fields/utils.py | 3 + .../django/contrib/postgres/forms/__init__.py | 3 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 259 bytes .../forms/__pycache__/array.cpython-310.pyc | Bin 0 -> 7965 bytes .../forms/__pycache__/hstore.cpython-310.pyc | Bin 0 -> 1731 bytes .../forms/__pycache__/ranges.cpython-310.pyc | Bin 0 -> 3897 bytes .../django/contrib/postgres/forms/array.py | 251 + .../django/contrib/postgres/forms/hstore.py | 59 + .../django/contrib/postgres/forms/ranges.py | 119 + .../django/contrib/postgres/functions.py | 11 + .../django/contrib/postgres/indexes.py | 250 + .../jinja2/postgres/widgets/split_array.html | 1 + .../postgres/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 2841 bytes .../postgres/locale/af/LC_MESSAGES/django.po | 104 + .../postgres/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 4294 bytes .../postgres/locale/ar/LC_MESSAGES/django.po | 131 + .../locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 4352 bytes .../locale/ar_DZ/LC_MESSAGES/django.po | 131 + .../postgres/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 2899 bytes .../postgres/locale/az/LC_MESSAGES/django.po | 104 + .../postgres/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 4143 bytes .../postgres/locale/be/LC_MESSAGES/django.po | 120 + .../postgres/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 3529 bytes .../postgres/locale/bg/LC_MESSAGES/django.po | 110 + .../postgres/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 2904 bytes .../postgres/locale/ca/LC_MESSAGES/django.po | 112 + .../postgres/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 3414 bytes .../postgres/locale/ckb/LC_MESSAGES/django.po | 101 + .../postgres/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 3418 bytes .../postgres/locale/cs/LC_MESSAGES/django.po | 119 + .../postgres/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 2886 bytes .../postgres/locale/da/LC_MESSAGES/django.po | 106 + .../postgres/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 3078 bytes .../postgres/locale/de/LC_MESSAGES/django.po | 111 + .../postgres/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 3605 bytes .../postgres/locale/dsb/LC_MESSAGES/django.po | 118 + .../postgres/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 3583 bytes .../postgres/locale/el/LC_MESSAGES/django.po | 111 + .../postgres/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../postgres/locale/en/LC_MESSAGES/django.po | 114 + .../locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 2839 bytes .../locale/en_AU/LC_MESSAGES/django.po | 109 + .../postgres/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 2742 bytes .../postgres/locale/eo/LC_MESSAGES/django.po | 109 + .../postgres/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 3163 bytes .../postgres/locale/es/LC_MESSAGES/django.po | 121 + .../locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 3140 bytes .../locale/es_AR/LC_MESSAGES/django.po | 115 + .../locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 2484 bytes .../locale/es_CO/LC_MESSAGES/django.po | 112 + .../locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 689 bytes .../locale/es_MX/LC_MESSAGES/django.po | 98 + .../postgres/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 2886 bytes .../postgres/locale/et/LC_MESSAGES/django.po | 111 + .../postgres/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 2883 bytes .../postgres/locale/eu/LC_MESSAGES/django.po | 108 + .../postgres/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 3308 bytes .../postgres/locale/fa/LC_MESSAGES/django.po | 108 + .../postgres/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 2943 bytes .../postgres/locale/fi/LC_MESSAGES/django.po | 110 + .../postgres/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 3391 bytes .../postgres/locale/fr/LC_MESSAGES/django.po | 114 + .../postgres/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 3652 bytes .../postgres/locale/ga/LC_MESSAGES/django.po | 125 + .../postgres/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 3541 bytes .../postgres/locale/gd/LC_MESSAGES/django.po | 125 + .../postgres/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 2912 bytes .../postgres/locale/gl/LC_MESSAGES/django.po | 108 + .../postgres/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 3757 bytes .../postgres/locale/he/LC_MESSAGES/django.po | 110 + .../postgres/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 929 bytes .../postgres/locale/hr/LC_MESSAGES/django.po | 102 + .../postgres/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 3518 bytes .../postgres/locale/hsb/LC_MESSAGES/django.po | 118 + .../postgres/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 2892 bytes .../postgres/locale/hu/LC_MESSAGES/django.po | 110 + .../postgres/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 3234 bytes .../postgres/locale/hy/LC_MESSAGES/django.po | 109 + .../postgres/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 582 bytes .../postgres/locale/ia/LC_MESSAGES/django.po | 98 + .../postgres/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 2737 bytes .../postgres/locale/id/LC_MESSAGES/django.po | 105 + .../postgres/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 2931 bytes .../postgres/locale/is/LC_MESSAGES/django.po | 108 + .../postgres/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 3210 bytes .../postgres/locale/it/LC_MESSAGES/django.po | 122 + .../postgres/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 3046 bytes .../postgres/locale/ja/LC_MESSAGES/django.po | 100 + .../postgres/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 713 bytes .../postgres/locale/ka/LC_MESSAGES/django.po | 98 + .../postgres/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 665 bytes .../postgres/locale/kk/LC_MESSAGES/django.po | 97 + .../postgres/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 2905 bytes .../postgres/locale/ko/LC_MESSAGES/django.po | 105 + .../postgres/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 3101 bytes .../postgres/locale/ky/LC_MESSAGES/django.po | 100 + .../postgres/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 3452 bytes .../postgres/locale/lt/LC_MESSAGES/django.po | 120 + .../postgres/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 3153 bytes .../postgres/locale/lv/LC_MESSAGES/django.po | 118 + .../postgres/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 3048 bytes .../postgres/locale/mk/LC_MESSAGES/django.po | 112 + .../postgres/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 1581 bytes .../postgres/locale/ml/LC_MESSAGES/django.po | 98 + .../postgres/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 3310 bytes .../postgres/locale/mn/LC_MESSAGES/django.po | 111 + .../postgres/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 1132 bytes .../postgres/locale/mr/LC_MESSAGES/django.po | 97 + .../postgres/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 2712 bytes .../postgres/locale/ms/LC_MESSAGES/django.po | 100 + .../postgres/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 2849 bytes .../postgres/locale/nb/LC_MESSAGES/django.po | 107 + .../postgres/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 875 bytes .../postgres/locale/ne/LC_MESSAGES/django.po | 96 + .../postgres/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 2993 bytes .../postgres/locale/nl/LC_MESSAGES/django.po | 112 + .../postgres/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 2836 bytes .../postgres/locale/nn/LC_MESSAGES/django.po | 106 + .../postgres/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 3462 bytes .../postgres/locale/pl/LC_MESSAGES/django.po | 127 + .../postgres/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 2745 bytes .../postgres/locale/pt/LC_MESSAGES/django.po | 107 + .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 3143 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 123 + .../postgres/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 3188 bytes .../postgres/locale/ro/LC_MESSAGES/django.po | 120 + .../postgres/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 4732 bytes .../postgres/locale/ru/LC_MESSAGES/django.po | 131 + .../postgres/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 3381 bytes .../postgres/locale/sk/LC_MESSAGES/django.po | 121 + .../postgres/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 2810 bytes .../postgres/locale/sl/LC_MESSAGES/django.po | 120 + .../postgres/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 2958 bytes .../postgres/locale/sq/LC_MESSAGES/django.po | 110 + .../postgres/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 3775 bytes .../postgres/locale/sr/LC_MESSAGES/django.po | 113 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 3112 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 112 + .../postgres/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 2918 bytes .../postgres/locale/sv/LC_MESSAGES/django.po | 110 + .../postgres/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 2688 bytes .../postgres/locale/tg/LC_MESSAGES/django.po | 101 + .../postgres/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 2789 bytes .../postgres/locale/tk/LC_MESSAGES/django.po | 107 + .../postgres/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 2914 bytes .../postgres/locale/tr/LC_MESSAGES/django.po | 109 + .../postgres/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 3938 bytes .../postgres/locale/ug/LC_MESSAGES/django.po | 107 + .../postgres/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 4406 bytes .../postgres/locale/uk/LC_MESSAGES/django.po | 126 + .../postgres/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 703 bytes .../postgres/locale/uz/LC_MESSAGES/django.po | 95 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 2560 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 100 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 2563 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 98 + .../django/contrib/postgres/lookups.py | 78 + .../django/contrib/postgres/operations.py | 344 + .../django/contrib/postgres/search.py | 383 + .../django/contrib/postgres/serializers.py | 10 + .../django/contrib/postgres/signals.py | 80 + .../postgres/widgets/split_array.html | 1 + .../django/contrib/postgres/utils.py | 29 + .../django/contrib/postgres/validators.py | 91 + .../django/contrib/redirects/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../__pycache__/admin.cpython-310.pyc | Bin 0 -> 635 bytes .../__pycache__/apps.cpython-310.pyc | Bin 0 -> 597 bytes .../__pycache__/middleware.cpython-310.pyc | Bin 0 -> 1850 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 1469 bytes .../django/contrib/redirects/admin.py | 10 + .../django/contrib/redirects/apps.py | 8 + .../redirects/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 1151 bytes .../redirects/locale/af/LC_MESSAGES/django.po | 51 + .../redirects/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 1336 bytes .../redirects/locale/ar/LC_MESSAGES/django.po | 51 + .../locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 1379 bytes .../locale/ar_DZ/LC_MESSAGES/django.po | 50 + .../locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 1071 bytes .../locale/ast/LC_MESSAGES/django.po | 50 + .../redirects/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 1106 bytes .../redirects/locale/az/LC_MESSAGES/django.po | 51 + .../redirects/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 1426 bytes .../redirects/locale/be/LC_MESSAGES/django.po | 52 + .../redirects/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 1279 bytes .../redirects/locale/bg/LC_MESSAGES/django.po | 53 + .../redirects/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 1319 bytes .../redirects/locale/bn/LC_MESSAGES/django.po | 48 + .../redirects/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 1429 bytes .../redirects/locale/br/LC_MESSAGES/django.po | 54 + .../redirects/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 1115 bytes .../redirects/locale/bs/LC_MESSAGES/django.po | 51 + .../redirects/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 1136 bytes .../redirects/locale/ca/LC_MESSAGES/django.po | 54 + .../locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 1340 bytes .../locale/ckb/LC_MESSAGES/django.po | 49 + .../redirects/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 1229 bytes .../redirects/locale/cs/LC_MESSAGES/django.po | 51 + .../redirects/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 1132 bytes .../redirects/locale/cy/LC_MESSAGES/django.po | 51 + .../redirects/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 1132 bytes .../redirects/locale/da/LC_MESSAGES/django.po | 50 + .../redirects/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 1155 bytes .../redirects/locale/de/LC_MESSAGES/django.po | 51 + .../locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 1236 bytes .../locale/dsb/LC_MESSAGES/django.po | 51 + .../redirects/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 1395 bytes .../redirects/locale/el/LC_MESSAGES/django.po | 52 + .../redirects/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../redirects/locale/en/LC_MESSAGES/django.po | 50 + .../locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 1127 bytes .../locale/en_AU/LC_MESSAGES/django.po | 50 + .../locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 1053 bytes .../locale/en_GB/LC_MESSAGES/django.po | 50 + .../redirects/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 712 bytes .../redirects/locale/eo/LC_MESSAGES/django.po | 49 + .../redirects/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 1159 bytes .../redirects/locale/es/LC_MESSAGES/django.po | 53 + .../locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 1144 bytes .../locale/es_AR/LC_MESSAGES/django.po | 51 + .../locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 1147 bytes .../locale/es_CO/LC_MESSAGES/django.po | 50 + .../locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 1116 bytes .../locale/es_MX/LC_MESSAGES/django.po | 53 + .../locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 486 bytes .../locale/es_VE/LC_MESSAGES/django.po | 42 + .../redirects/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 1131 bytes .../redirects/locale/et/LC_MESSAGES/django.po | 54 + .../redirects/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 1126 bytes .../redirects/locale/eu/LC_MESSAGES/django.po | 51 + .../redirects/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 1234 bytes .../redirects/locale/fa/LC_MESSAGES/django.po | 50 + .../redirects/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 1164 bytes .../redirects/locale/fi/LC_MESSAGES/django.po | 52 + .../redirects/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 1155 bytes .../redirects/locale/fr/LC_MESSAGES/django.po | 50 + .../redirects/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../redirects/locale/fy/LC_MESSAGES/django.po | 42 + .../redirects/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 1182 bytes .../redirects/locale/ga/LC_MESSAGES/django.po | 53 + .../redirects/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 1250 bytes .../redirects/locale/gd/LC_MESSAGES/django.po | 52 + .../redirects/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 1131 bytes .../redirects/locale/gl/LC_MESSAGES/django.po | 52 + .../redirects/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 1278 bytes .../redirects/locale/he/LC_MESSAGES/django.po | 49 + .../redirects/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 1409 bytes .../redirects/locale/hi/LC_MESSAGES/django.po | 49 + .../redirects/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 1207 bytes .../redirects/locale/hr/LC_MESSAGES/django.po | 52 + .../locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 1221 bytes .../locale/hsb/LC_MESSAGES/django.po | 51 + .../redirects/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 1111 bytes .../redirects/locale/hu/LC_MESSAGES/django.po | 51 + .../redirects/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 1261 bytes .../redirects/locale/hy/LC_MESSAGES/django.po | 49 + .../redirects/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 1152 bytes .../redirects/locale/ia/LC_MESSAGES/django.po | 50 + .../redirects/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 1105 bytes .../redirects/locale/id/LC_MESSAGES/django.po | 52 + .../redirects/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 1019 bytes .../redirects/locale/io/LC_MESSAGES/django.po | 48 + .../redirects/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 1040 bytes .../redirects/locale/is/LC_MESSAGES/django.po | 49 + .../redirects/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 1092 bytes .../redirects/locale/it/LC_MESSAGES/django.po | 53 + .../redirects/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 1193 bytes .../redirects/locale/ja/LC_MESSAGES/django.po | 51 + .../redirects/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 1511 bytes .../redirects/locale/ka/LC_MESSAGES/django.po | 50 + .../locale/kab/LC_MESSAGES/django.mo | Bin 0 -> 699 bytes .../locale/kab/LC_MESSAGES/django.po | 45 + .../redirects/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 1261 bytes .../redirects/locale/kk/LC_MESSAGES/django.po | 48 + .../redirects/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 1248 bytes .../redirects/locale/km/LC_MESSAGES/django.po | 47 + .../redirects/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 788 bytes .../redirects/locale/kn/LC_MESSAGES/django.po | 47 + .../redirects/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 1152 bytes .../redirects/locale/ko/LC_MESSAGES/django.po | 56 + .../redirects/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 1265 bytes .../redirects/locale/ky/LC_MESSAGES/django.po | 50 + .../redirects/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../redirects/locale/lb/LC_MESSAGES/django.po | 42 + .../redirects/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 1191 bytes .../redirects/locale/lt/LC_MESSAGES/django.po | 53 + .../redirects/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 1175 bytes .../redirects/locale/lv/LC_MESSAGES/django.po | 53 + .../redirects/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 1353 bytes .../redirects/locale/mk/LC_MESSAGES/django.po | 52 + .../redirects/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 1573 bytes .../redirects/locale/ml/LC_MESSAGES/django.po | 51 + .../redirects/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 1274 bytes .../redirects/locale/mn/LC_MESSAGES/django.po | 52 + .../redirects/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 1530 bytes .../redirects/locale/mr/LC_MESSAGES/django.po | 48 + .../redirects/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 1094 bytes .../redirects/locale/ms/LC_MESSAGES/django.po | 49 + .../redirects/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 549 bytes .../redirects/locale/my/LC_MESSAGES/django.po | 46 + .../redirects/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 1110 bytes .../redirects/locale/nb/LC_MESSAGES/django.po | 54 + .../redirects/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 1420 bytes .../redirects/locale/ne/LC_MESSAGES/django.po | 47 + .../redirects/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 1129 bytes .../redirects/locale/nl/LC_MESSAGES/django.po | 52 + .../redirects/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 1143 bytes .../redirects/locale/nn/LC_MESSAGES/django.po | 50 + .../redirects/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 1150 bytes .../redirects/locale/os/LC_MESSAGES/django.po | 49 + .../redirects/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 748 bytes .../redirects/locale/pa/LC_MESSAGES/django.po | 47 + .../redirects/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 1285 bytes .../redirects/locale/pl/LC_MESSAGES/django.po | 54 + .../redirects/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 1129 bytes .../redirects/locale/pt/LC_MESSAGES/django.po | 52 + .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 1224 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 57 + .../redirects/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 1158 bytes .../redirects/locale/ro/LC_MESSAGES/django.po | 54 + .../redirects/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 1457 bytes .../redirects/locale/ru/LC_MESSAGES/django.po | 53 + .../redirects/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 1222 bytes .../redirects/locale/sk/LC_MESSAGES/django.po | 53 + .../redirects/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 1173 bytes .../redirects/locale/sl/LC_MESSAGES/django.po | 52 + .../redirects/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 1165 bytes .../redirects/locale/sq/LC_MESSAGES/django.po | 52 + .../redirects/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 1367 bytes .../redirects/locale/sr/LC_MESSAGES/django.po | 53 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 1210 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 52 + .../redirects/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 1134 bytes .../redirects/locale/sv/LC_MESSAGES/django.po | 53 + .../redirects/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 1165 bytes .../redirects/locale/sw/LC_MESSAGES/django.po | 51 + .../redirects/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 1502 bytes .../redirects/locale/ta/LC_MESSAGES/django.po | 49 + .../redirects/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 467 bytes .../redirects/locale/te/LC_MESSAGES/django.po | 42 + .../redirects/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 782 bytes .../redirects/locale/tg/LC_MESSAGES/django.po | 45 + .../redirects/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 1331 bytes .../redirects/locale/th/LC_MESSAGES/django.po | 46 + .../redirects/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 1155 bytes .../redirects/locale/tk/LC_MESSAGES/django.po | 50 + .../redirects/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 1133 bytes .../redirects/locale/tr/LC_MESSAGES/django.po | 53 + .../redirects/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 1178 bytes .../redirects/locale/tt/LC_MESSAGES/django.po | 48 + .../locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 462 bytes .../locale/udm/LC_MESSAGES/django.po | 42 + .../redirects/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 1409 bytes .../redirects/locale/ug/LC_MESSAGES/django.po | 50 + .../redirects/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 1569 bytes .../redirects/locale/uk/LC_MESSAGES/django.po | 56 + .../redirects/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 1138 bytes .../redirects/locale/ur/LC_MESSAGES/django.po | 46 + .../redirects/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 743 bytes .../redirects/locale/uz/LC_MESSAGES/django.po | 48 + .../redirects/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 1106 bytes .../redirects/locale/vi/LC_MESSAGES/django.po | 49 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 1100 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 53 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 1108 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 51 + .../django/contrib/redirects/middleware.py | 50 + .../redirects/migrations/0001_initial.py | 64 + .../0002_alter_redirect_new_path_help_text.py | 23 + .../contrib/redirects/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1338 bytes ...edirect_new_path_help_text.cpython-310.pyc | Bin 0 -> 832 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 207 bytes .../django/contrib/redirects/models.py | 35 + .../django/contrib/sessions/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../sessions/__pycache__/apps.cpython-310.pyc | Bin 0 -> 539 bytes .../__pycache__/base_session.cpython-310.pyc | Bin 0 -> 2272 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 805 bytes .../__pycache__/middleware.cpython-310.pyc | Bin 0 -> 2667 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 1848 bytes .../__pycache__/serializers.cpython-310.pyc | Bin 0 -> 282 bytes .../django/contrib/sessions/apps.py | 7 + .../contrib/sessions/backends/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 204 bytes .../backends/__pycache__/base.cpython-310.pyc | Bin 0 -> 17351 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 4224 bytes .../__pycache__/cached_db.cpython-310.pyc | Bin 0 -> 4039 bytes .../backends/__pycache__/db.cpython-310.pyc | Bin 0 -> 6527 bytes .../backends/__pycache__/file.cpython-310.pyc | Bin 0 -> 6201 bytes .../signed_cookies.cpython-310.pyc | Bin 0 -> 4009 bytes .../django/contrib/sessions/backends/base.py | 523 + .../django/contrib/sessions/backends/cache.py | 145 + .../contrib/sessions/backends/cached_db.py | 135 + .../django/contrib/sessions/backends/db.py | 198 + .../django/contrib/sessions/backends/file.py | 226 + .../sessions/backends/signed_cookies.py | 103 + .../django/contrib/sessions/base_session.py | 48 + .../django/contrib/sessions/exceptions.py | 19 + .../sessions/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 717 bytes .../sessions/locale/af/LC_MESSAGES/django.po | 36 + .../sessions/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 846 bytes .../sessions/locale/ar/LC_MESSAGES/django.po | 37 + .../locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 817 bytes .../locale/ar_DZ/LC_MESSAGES/django.po | 37 + .../sessions/locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 702 bytes .../sessions/locale/ast/LC_MESSAGES/django.po | 36 + .../sessions/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 731 bytes .../sessions/locale/az/LC_MESSAGES/django.po | 37 + .../sessions/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 854 bytes .../sessions/locale/be/LC_MESSAGES/django.po | 38 + .../sessions/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 759 bytes .../sessions/locale/bg/LC_MESSAGES/django.po | 38 + .../sessions/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 762 bytes .../sessions/locale/bn/LC_MESSAGES/django.po | 36 + .../sessions/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 1027 bytes .../sessions/locale/br/LC_MESSAGES/django.po | 40 + .../sessions/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 759 bytes .../sessions/locale/bs/LC_MESSAGES/django.po | 37 + .../sessions/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 738 bytes .../sessions/locale/ca/LC_MESSAGES/django.po | 37 + .../sessions/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 741 bytes .../sessions/locale/ckb/LC_MESSAGES/django.po | 36 + .../sessions/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 759 bytes .../sessions/locale/cs/LC_MESSAGES/django.po | 37 + .../sessions/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 774 bytes .../sessions/locale/cy/LC_MESSAGES/django.po | 37 + .../sessions/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 681 bytes .../sessions/locale/da/LC_MESSAGES/django.po | 36 + .../sessions/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 721 bytes .../sessions/locale/de/LC_MESSAGES/django.po | 35 + .../sessions/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 810 bytes .../sessions/locale/dsb/LC_MESSAGES/django.po | 37 + .../sessions/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 809 bytes .../sessions/locale/el/LC_MESSAGES/django.po | 36 + .../sessions/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../sessions/locale/en/LC_MESSAGES/django.po | 38 + .../locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 693 bytes .../locale/en_AU/LC_MESSAGES/django.po | 36 + .../locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 707 bytes .../locale/en_GB/LC_MESSAGES/django.po | 36 + .../sessions/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 727 bytes .../sessions/locale/eo/LC_MESSAGES/django.po | 37 + .../sessions/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 734 bytes .../sessions/locale/es/LC_MESSAGES/django.po | 37 + .../locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 694 bytes .../locale/es_AR/LC_MESSAGES/django.po | 37 + .../locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 754 bytes .../locale/es_CO/LC_MESSAGES/django.po | 36 + .../locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 756 bytes .../locale/es_MX/LC_MESSAGES/django.po | 37 + .../locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 486 bytes .../locale/es_VE/LC_MESSAGES/django.po | 35 + .../sessions/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 737 bytes .../sessions/locale/et/LC_MESSAGES/django.po | 37 + .../sessions/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 728 bytes .../sessions/locale/eu/LC_MESSAGES/django.po | 36 + .../sessions/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 755 bytes .../sessions/locale/fa/LC_MESSAGES/django.po | 37 + .../sessions/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 721 bytes .../sessions/locale/fi/LC_MESSAGES/django.po | 37 + .../sessions/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 692 bytes .../sessions/locale/fr/LC_MESSAGES/django.po | 36 + .../sessions/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../sessions/locale/fy/LC_MESSAGES/django.po | 35 + .../sessions/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 747 bytes .../sessions/locale/ga/LC_MESSAGES/django.po | 37 + .../sessions/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 791 bytes .../sessions/locale/gd/LC_MESSAGES/django.po | 37 + .../sessions/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 692 bytes .../sessions/locale/gl/LC_MESSAGES/django.po | 38 + .../sessions/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 809 bytes .../sessions/locale/he/LC_MESSAGES/django.po | 37 + .../sessions/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 759 bytes .../sessions/locale/hi/LC_MESSAGES/django.po | 36 + .../sessions/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 819 bytes .../sessions/locale/hr/LC_MESSAGES/django.po | 38 + .../sessions/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 805 bytes .../sessions/locale/hsb/LC_MESSAGES/django.po | 37 + .../sessions/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 727 bytes .../sessions/locale/hu/LC_MESSAGES/django.po | 37 + .../sessions/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 815 bytes .../sessions/locale/hy/LC_MESSAGES/django.po | 35 + .../sessions/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 744 bytes .../sessions/locale/ia/LC_MESSAGES/django.po | 36 + .../sessions/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 705 bytes .../sessions/locale/id/LC_MESSAGES/django.po | 38 + .../sessions/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 683 bytes .../sessions/locale/io/LC_MESSAGES/django.po | 35 + .../sessions/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 706 bytes .../sessions/locale/is/LC_MESSAGES/django.po | 36 + .../sessions/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 726 bytes .../sessions/locale/it/LC_MESSAGES/django.po | 37 + .../sessions/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 757 bytes .../sessions/locale/ja/LC_MESSAGES/django.po | 37 + .../sessions/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 803 bytes .../sessions/locale/ka/LC_MESSAGES/django.po | 36 + .../sessions/locale/kab/LC_MESSAGES/django.mo | Bin 0 -> 743 bytes .../sessions/locale/kab/LC_MESSAGES/django.po | 35 + .../sessions/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 810 bytes .../sessions/locale/kk/LC_MESSAGES/django.po | 37 + .../sessions/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 929 bytes .../sessions/locale/km/LC_MESSAGES/django.po | 35 + .../sessions/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 810 bytes .../sessions/locale/kn/LC_MESSAGES/django.po | 37 + .../sessions/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 653 bytes .../sessions/locale/ko/LC_MESSAGES/django.po | 37 + .../sessions/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 742 bytes .../sessions/locale/ky/LC_MESSAGES/django.po | 35 + .../sessions/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../sessions/locale/lb/LC_MESSAGES/django.po | 35 + .../sessions/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 786 bytes .../sessions/locale/lt/LC_MESSAGES/django.po | 39 + .../sessions/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 753 bytes .../sessions/locale/lv/LC_MESSAGES/django.po | 38 + .../sessions/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 816 bytes .../sessions/locale/mk/LC_MESSAGES/django.po | 37 + .../sessions/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 854 bytes .../sessions/locale/ml/LC_MESSAGES/django.po | 37 + .../sessions/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 784 bytes .../sessions/locale/mn/LC_MESSAGES/django.po | 38 + .../sessions/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 768 bytes .../sessions/locale/mr/LC_MESSAGES/django.po | 36 + .../sessions/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 649 bytes .../sessions/locale/ms/LC_MESSAGES/django.po | 35 + .../sessions/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 872 bytes .../sessions/locale/my/LC_MESSAGES/django.po | 36 + .../sessions/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 717 bytes .../sessions/locale/nb/LC_MESSAGES/django.po | 38 + .../sessions/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 802 bytes .../sessions/locale/ne/LC_MESSAGES/django.po | 36 + .../sessions/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 692 bytes .../sessions/locale/nl/LC_MESSAGES/django.po | 36 + .../sessions/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 667 bytes .../sessions/locale/nn/LC_MESSAGES/django.po | 37 + .../sessions/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 732 bytes .../sessions/locale/os/LC_MESSAGES/django.po | 36 + .../sessions/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 771 bytes .../sessions/locale/pa/LC_MESSAGES/django.po | 36 + .../sessions/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 828 bytes .../sessions/locale/pl/LC_MESSAGES/django.po | 39 + .../sessions/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 738 bytes .../sessions/locale/pt/LC_MESSAGES/django.po | 37 + .../locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 757 bytes .../locale/pt_BR/LC_MESSAGES/django.po | 37 + .../sessions/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 776 bytes .../sessions/locale/ro/LC_MESSAGES/django.po | 39 + .../sessions/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 913 bytes .../sessions/locale/ru/LC_MESSAGES/django.po | 39 + .../sessions/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 766 bytes .../sessions/locale/sk/LC_MESSAGES/django.po | 37 + .../sessions/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 770 bytes .../sessions/locale/sl/LC_MESSAGES/django.po | 38 + .../sessions/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 683 bytes .../sessions/locale/sq/LC_MESSAGES/django.po | 36 + .../sessions/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 855 bytes .../sessions/locale/sr/LC_MESSAGES/django.po | 38 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 757 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 38 + .../sessions/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 707 bytes .../sessions/locale/sv/LC_MESSAGES/django.po | 37 + .../sessions/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 743 bytes .../sessions/locale/sw/LC_MESSAGES/django.po | 36 + .../sessions/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 801 bytes .../sessions/locale/ta/LC_MESSAGES/django.po | 35 + .../sessions/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 786 bytes .../sessions/locale/te/LC_MESSAGES/django.po | 36 + .../sessions/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 747 bytes .../sessions/locale/tg/LC_MESSAGES/django.po | 35 + .../sessions/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 814 bytes .../sessions/locale/th/LC_MESSAGES/django.po | 36 + .../sessions/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 699 bytes .../sessions/locale/tk/LC_MESSAGES/django.po | 36 + .../sessions/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 685 bytes .../sessions/locale/tr/LC_MESSAGES/django.po | 37 + .../sessions/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 806 bytes .../sessions/locale/tt/LC_MESSAGES/django.po | 36 + .../sessions/locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 462 bytes .../sessions/locale/udm/LC_MESSAGES/django.po | 35 + .../sessions/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 748 bytes .../sessions/locale/ug/LC_MESSAGES/django.po | 34 + .../sessions/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 841 bytes .../sessions/locale/uk/LC_MESSAGES/django.po | 40 + .../sessions/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 729 bytes .../sessions/locale/ur/LC_MESSAGES/django.po | 35 + .../sessions/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 744 bytes .../sessions/locale/uz/LC_MESSAGES/django.po | 35 + .../sessions/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 679 bytes .../sessions/locale/vi/LC_MESSAGES/django.po | 38 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 722 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 37 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 676 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 38 + .../contrib/sessions/management/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 206 bytes .../sessions/management/commands/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 215 bytes .../__pycache__/clearsessions.cpython-310.pyc | Bin 0 -> 1008 bytes .../management/commands/clearsessions.py | 21 + .../django/contrib/sessions/middleware.py | 77 + .../sessions/migrations/0001_initial.py | 37 + .../contrib/sessions/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1051 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 206 bytes .../django/contrib/sessions/models.py | 35 + .../django/contrib/sessions/serializers.py | 3 + .../django/contrib/sitemaps/__init__.py | 200 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5626 bytes .../sitemaps/__pycache__/apps.cpython-310.pyc | Bin 0 -> 594 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 3443 bytes .../django/contrib/sitemaps/apps.py | 8 + .../contrib/sitemaps/templates/sitemap.xml | 16 + .../sitemaps/templates/sitemap_index.xml | 13 + .../django/contrib/sitemaps/views.py | 140 + .../django/contrib/sites/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 192 bytes .../sites/__pycache__/admin.cpython-310.pyc | Bin 0 -> 540 bytes .../sites/__pycache__/apps.cpython-310.pyc | Bin 0 -> 1016 bytes .../sites/__pycache__/checks.cpython-310.pyc | Bin 0 -> 606 bytes .../__pycache__/management.cpython-310.pyc | Bin 0 -> 1272 bytes .../__pycache__/managers.cpython-310.pyc | Bin 0 -> 2248 bytes .../__pycache__/middleware.cpython-310.pyc | Bin 0 -> 740 bytes .../sites/__pycache__/models.cpython-310.pyc | Bin 0 -> 4271 bytes .../__pycache__/requests.cpython-310.pyc | Bin 0 -> 1255 bytes .../__pycache__/shortcuts.cpython-310.pyc | Bin 0 -> 685 bytes .../django/contrib/sites/admin.py | 8 + .../django/contrib/sites/apps.py | 17 + .../django/contrib/sites/checks.py | 14 + .../sites/locale/af/LC_MESSAGES/django.mo | Bin 0 -> 786 bytes .../sites/locale/af/LC_MESSAGES/django.po | 36 + .../sites/locale/ar/LC_MESSAGES/django.mo | Bin 0 -> 947 bytes .../sites/locale/ar/LC_MESSAGES/django.po | 38 + .../sites/locale/ar_DZ/LC_MESSAGES/django.mo | Bin 0 -> 918 bytes .../sites/locale/ar_DZ/LC_MESSAGES/django.po | 37 + .../sites/locale/ast/LC_MESSAGES/django.mo | Bin 0 -> 774 bytes .../sites/locale/ast/LC_MESSAGES/django.po | 36 + .../sites/locale/az/LC_MESSAGES/django.mo | Bin 0 -> 773 bytes .../sites/locale/az/LC_MESSAGES/django.po | 37 + .../sites/locale/be/LC_MESSAGES/django.mo | Bin 0 -> 983 bytes .../sites/locale/be/LC_MESSAGES/django.po | 38 + .../sites/locale/bg/LC_MESSAGES/django.mo | Bin 0 -> 904 bytes .../sites/locale/bg/LC_MESSAGES/django.po | 38 + .../sites/locale/bn/LC_MESSAGES/django.mo | Bin 0 -> 925 bytes .../sites/locale/bn/LC_MESSAGES/django.po | 37 + .../sites/locale/br/LC_MESSAGES/django.mo | Bin 0 -> 1107 bytes .../sites/locale/br/LC_MESSAGES/django.po | 40 + .../sites/locale/bs/LC_MESSAGES/django.mo | Bin 0 -> 692 bytes .../sites/locale/bs/LC_MESSAGES/django.po | 37 + .../sites/locale/ca/LC_MESSAGES/django.mo | Bin 0 -> 791 bytes .../sites/locale/ca/LC_MESSAGES/django.po | 38 + .../sites/locale/ckb/LC_MESSAGES/django.mo | Bin 0 -> 843 bytes .../sites/locale/ckb/LC_MESSAGES/django.po | 36 + .../sites/locale/cs/LC_MESSAGES/django.mo | Bin 0 -> 827 bytes .../sites/locale/cs/LC_MESSAGES/django.po | 37 + .../sites/locale/cy/LC_MESSAGES/django.mo | Bin 0 -> 835 bytes .../sites/locale/cy/LC_MESSAGES/django.po | 37 + .../sites/locale/da/LC_MESSAGES/django.mo | Bin 0 -> 753 bytes .../sites/locale/da/LC_MESSAGES/django.po | 36 + .../sites/locale/de/LC_MESSAGES/django.mo | Bin 0 -> 792 bytes .../sites/locale/de/LC_MESSAGES/django.po | 36 + .../sites/locale/dsb/LC_MESSAGES/django.mo | Bin 0 -> 868 bytes .../sites/locale/dsb/LC_MESSAGES/django.po | 37 + .../sites/locale/el/LC_MESSAGES/django.mo | Bin 0 -> 878 bytes .../sites/locale/el/LC_MESSAGES/django.po | 38 + .../sites/locale/en/LC_MESSAGES/django.mo | Bin 0 -> 356 bytes .../sites/locale/en/LC_MESSAGES/django.po | 38 + .../sites/locale/en_AU/LC_MESSAGES/django.mo | Bin 0 -> 753 bytes .../sites/locale/en_AU/LC_MESSAGES/django.po | 36 + .../sites/locale/en_GB/LC_MESSAGES/django.mo | Bin 0 -> 639 bytes .../sites/locale/en_GB/LC_MESSAGES/django.po | 36 + .../sites/locale/eo/LC_MESSAGES/django.mo | Bin 0 -> 792 bytes .../sites/locale/eo/LC_MESSAGES/django.po | 38 + .../sites/locale/es/LC_MESSAGES/django.mo | Bin 0 -> 804 bytes .../sites/locale/es/LC_MESSAGES/django.po | 39 + .../sites/locale/es_AR/LC_MESSAGES/django.mo | Bin 0 -> 776 bytes .../sites/locale/es_AR/LC_MESSAGES/django.po | 38 + .../sites/locale/es_CO/LC_MESSAGES/django.mo | Bin 0 -> 825 bytes .../sites/locale/es_CO/LC_MESSAGES/django.po | 36 + .../sites/locale/es_MX/LC_MESSAGES/django.mo | Bin 0 -> 809 bytes .../sites/locale/es_MX/LC_MESSAGES/django.po | 38 + .../sites/locale/es_VE/LC_MESSAGES/django.mo | Bin 0 -> 486 bytes .../sites/locale/es_VE/LC_MESSAGES/django.po | 35 + .../sites/locale/et/LC_MESSAGES/django.mo | Bin 0 -> 788 bytes .../sites/locale/et/LC_MESSAGES/django.po | 38 + .../sites/locale/eu/LC_MESSAGES/django.mo | Bin 0 -> 807 bytes .../sites/locale/eu/LC_MESSAGES/django.po | 37 + .../sites/locale/fa/LC_MESSAGES/django.mo | Bin 0 -> 872 bytes .../sites/locale/fa/LC_MESSAGES/django.po | 38 + .../sites/locale/fi/LC_MESSAGES/django.mo | Bin 0 -> 786 bytes .../sites/locale/fi/LC_MESSAGES/django.po | 37 + .../sites/locale/fr/LC_MESSAGES/django.mo | Bin 0 -> 756 bytes .../sites/locale/fr/LC_MESSAGES/django.po | 37 + .../sites/locale/fy/LC_MESSAGES/django.mo | Bin 0 -> 476 bytes .../sites/locale/fy/LC_MESSAGES/django.po | 35 + .../sites/locale/ga/LC_MESSAGES/django.mo | Bin 0 -> 814 bytes .../sites/locale/ga/LC_MESSAGES/django.po | 38 + .../sites/locale/gd/LC_MESSAGES/django.mo | Bin 0 -> 858 bytes .../sites/locale/gd/LC_MESSAGES/django.po | 37 + .../sites/locale/gl/LC_MESSAGES/django.mo | Bin 0 -> 728 bytes .../sites/locale/gl/LC_MESSAGES/django.po | 38 + .../sites/locale/he/LC_MESSAGES/django.mo | Bin 0 -> 820 bytes .../sites/locale/he/LC_MESSAGES/django.po | 37 + .../sites/locale/hi/LC_MESSAGES/django.mo | Bin 0 -> 665 bytes .../sites/locale/hi/LC_MESSAGES/django.po | 35 + .../sites/locale/hr/LC_MESSAGES/django.mo | Bin 0 -> 876 bytes .../sites/locale/hr/LC_MESSAGES/django.po | 38 + .../sites/locale/hsb/LC_MESSAGES/django.mo | Bin 0 -> 863 bytes .../sites/locale/hsb/LC_MESSAGES/django.po | 37 + .../sites/locale/hu/LC_MESSAGES/django.mo | Bin 0 -> 796 bytes .../sites/locale/hu/LC_MESSAGES/django.po | 37 + .../sites/locale/hy/LC_MESSAGES/django.mo | Bin 0 -> 906 bytes .../sites/locale/hy/LC_MESSAGES/django.po | 36 + .../sites/locale/ia/LC_MESSAGES/django.mo | Bin 0 -> 809 bytes .../sites/locale/ia/LC_MESSAGES/django.po | 36 + .../sites/locale/id/LC_MESSAGES/django.mo | Bin 0 -> 791 bytes .../sites/locale/id/LC_MESSAGES/django.po | 38 + .../sites/locale/io/LC_MESSAGES/django.mo | Bin 0 -> 760 bytes .../sites/locale/io/LC_MESSAGES/django.po | 35 + .../sites/locale/is/LC_MESSAGES/django.mo | Bin 0 -> 812 bytes .../sites/locale/is/LC_MESSAGES/django.po | 37 + .../sites/locale/it/LC_MESSAGES/django.mo | Bin 0 -> 795 bytes .../sites/locale/it/LC_MESSAGES/django.po | 38 + .../sites/locale/ja/LC_MESSAGES/django.mo | Bin 0 -> 814 bytes .../sites/locale/ja/LC_MESSAGES/django.po | 37 + .../sites/locale/ka/LC_MESSAGES/django.mo | Bin 0 -> 993 bytes .../sites/locale/ka/LC_MESSAGES/django.po | 37 + .../sites/locale/kab/LC_MESSAGES/django.mo | Bin 0 -> 808 bytes .../sites/locale/kab/LC_MESSAGES/django.po | 35 + .../sites/locale/kk/LC_MESSAGES/django.mo | Bin 0 -> 895 bytes .../sites/locale/kk/LC_MESSAGES/django.po | 36 + .../sites/locale/km/LC_MESSAGES/django.mo | Bin 0 -> 701 bytes .../sites/locale/km/LC_MESSAGES/django.po | 35 + .../sites/locale/kn/LC_MESSAGES/django.mo | Bin 0 -> 673 bytes .../sites/locale/kn/LC_MESSAGES/django.po | 37 + .../sites/locale/ko/LC_MESSAGES/django.mo | Bin 0 -> 744 bytes .../sites/locale/ko/LC_MESSAGES/django.po | 39 + .../sites/locale/ky/LC_MESSAGES/django.mo | Bin 0 -> 811 bytes .../sites/locale/ky/LC_MESSAGES/django.po | 34 + .../sites/locale/lb/LC_MESSAGES/django.mo | Bin 0 -> 474 bytes .../sites/locale/lb/LC_MESSAGES/django.po | 35 + .../sites/locale/lt/LC_MESSAGES/django.mo | Bin 0 -> 869 bytes .../sites/locale/lt/LC_MESSAGES/django.po | 41 + .../sites/locale/lv/LC_MESSAGES/django.mo | Bin 0 -> 823 bytes .../sites/locale/lv/LC_MESSAGES/django.po | 39 + .../sites/locale/mk/LC_MESSAGES/django.mo | Bin 0 -> 885 bytes .../sites/locale/mk/LC_MESSAGES/django.po | 37 + .../sites/locale/ml/LC_MESSAGES/django.mo | Bin 0 -> 1007 bytes .../sites/locale/ml/LC_MESSAGES/django.po | 37 + .../sites/locale/mn/LC_MESSAGES/django.mo | Bin 0 -> 867 bytes .../sites/locale/mn/LC_MESSAGES/django.po | 39 + .../sites/locale/mr/LC_MESSAGES/django.mo | Bin 0 -> 884 bytes .../sites/locale/mr/LC_MESSAGES/django.po | 36 + .../sites/locale/ms/LC_MESSAGES/django.mo | Bin 0 -> 727 bytes .../sites/locale/ms/LC_MESSAGES/django.po | 35 + .../sites/locale/my/LC_MESSAGES/django.mo | Bin 0 -> 961 bytes .../sites/locale/my/LC_MESSAGES/django.po | 36 + .../sites/locale/nb/LC_MESSAGES/django.mo | Bin 0 -> 793 bytes .../sites/locale/nb/LC_MESSAGES/django.po | 38 + .../sites/locale/ne/LC_MESSAGES/django.mo | Bin 0 -> 863 bytes .../sites/locale/ne/LC_MESSAGES/django.po | 36 + .../sites/locale/nl/LC_MESSAGES/django.mo | Bin 0 -> 735 bytes .../sites/locale/nl/LC_MESSAGES/django.po | 38 + .../sites/locale/nn/LC_MESSAGES/django.mo | Bin 0 -> 731 bytes .../sites/locale/nn/LC_MESSAGES/django.po | 37 + .../sites/locale/os/LC_MESSAGES/django.mo | Bin 0 -> 806 bytes .../sites/locale/os/LC_MESSAGES/django.po | 36 + .../sites/locale/pa/LC_MESSAGES/django.mo | Bin 0 -> 684 bytes .../sites/locale/pa/LC_MESSAGES/django.po | 36 + .../sites/locale/pl/LC_MESSAGES/django.mo | Bin 0 -> 903 bytes .../sites/locale/pl/LC_MESSAGES/django.po | 40 + .../sites/locale/pt/LC_MESSAGES/django.mo | Bin 0 -> 797 bytes .../sites/locale/pt/LC_MESSAGES/django.po | 38 + .../sites/locale/pt_BR/LC_MESSAGES/django.mo | Bin 0 -> 824 bytes .../sites/locale/pt_BR/LC_MESSAGES/django.po | 38 + .../sites/locale/ro/LC_MESSAGES/django.mo | Bin 0 -> 857 bytes .../sites/locale/ro/LC_MESSAGES/django.po | 40 + .../sites/locale/ru/LC_MESSAGES/django.mo | Bin 0 -> 1016 bytes .../sites/locale/ru/LC_MESSAGES/django.po | 41 + .../sites/locale/sk/LC_MESSAGES/django.mo | Bin 0 -> 822 bytes .../sites/locale/sk/LC_MESSAGES/django.po | 38 + .../sites/locale/sl/LC_MESSAGES/django.mo | Bin 0 -> 845 bytes .../sites/locale/sl/LC_MESSAGES/django.po | 39 + .../sites/locale/sq/LC_MESSAGES/django.mo | Bin 0 -> 769 bytes .../sites/locale/sq/LC_MESSAGES/django.po | 36 + .../sites/locale/sr/LC_MESSAGES/django.mo | Bin 0 -> 935 bytes .../sites/locale/sr/LC_MESSAGES/django.po | 38 + .../locale/sr_Latn/LC_MESSAGES/django.mo | Bin 0 -> 815 bytes .../locale/sr_Latn/LC_MESSAGES/django.po | 38 + .../sites/locale/sv/LC_MESSAGES/django.mo | Bin 0 -> 768 bytes .../sites/locale/sv/LC_MESSAGES/django.po | 39 + .../sites/locale/sw/LC_MESSAGES/django.mo | Bin 0 -> 781 bytes .../sites/locale/sw/LC_MESSAGES/django.po | 36 + .../sites/locale/ta/LC_MESSAGES/django.mo | Bin 0 -> 714 bytes .../sites/locale/ta/LC_MESSAGES/django.po | 35 + .../sites/locale/te/LC_MESSAGES/django.mo | Bin 0 -> 687 bytes .../sites/locale/te/LC_MESSAGES/django.po | 35 + .../sites/locale/tg/LC_MESSAGES/django.mo | Bin 0 -> 863 bytes .../sites/locale/tg/LC_MESSAGES/django.po | 35 + .../sites/locale/th/LC_MESSAGES/django.mo | Bin 0 -> 898 bytes .../sites/locale/th/LC_MESSAGES/django.po | 36 + .../sites/locale/tk/LC_MESSAGES/django.mo | Bin 0 -> 755 bytes .../sites/locale/tk/LC_MESSAGES/django.po | 36 + .../sites/locale/tr/LC_MESSAGES/django.mo | Bin 0 -> 758 bytes .../sites/locale/tr/LC_MESSAGES/django.po | 39 + .../sites/locale/tt/LC_MESSAGES/django.mo | Bin 0 -> 706 bytes .../sites/locale/tt/LC_MESSAGES/django.po | 36 + .../sites/locale/udm/LC_MESSAGES/django.mo | Bin 0 -> 462 bytes .../sites/locale/udm/LC_MESSAGES/django.po | 35 + .../sites/locale/ug/LC_MESSAGES/django.mo | Bin 0 -> 868 bytes .../sites/locale/ug/LC_MESSAGES/django.po | 35 + .../sites/locale/uk/LC_MESSAGES/django.mo | Bin 0 -> 960 bytes .../sites/locale/uk/LC_MESSAGES/django.po | 41 + .../sites/locale/ur/LC_MESSAGES/django.mo | Bin 0 -> 654 bytes .../sites/locale/ur/LC_MESSAGES/django.po | 35 + .../sites/locale/uz/LC_MESSAGES/django.mo | Bin 0 -> 799 bytes .../sites/locale/uz/LC_MESSAGES/django.po | 35 + .../sites/locale/vi/LC_MESSAGES/django.mo | Bin 0 -> 762 bytes .../sites/locale/vi/LC_MESSAGES/django.po | 38 + .../locale/zh_Hans/LC_MESSAGES/django.mo | Bin 0 -> 779 bytes .../locale/zh_Hans/LC_MESSAGES/django.po | 37 + .../locale/zh_Hant/LC_MESSAGES/django.mo | Bin 0 -> 736 bytes .../locale/zh_Hant/LC_MESSAGES/django.po | 40 + .../django/contrib/sites/management.py | 47 + .../django/contrib/sites/managers.py | 65 + .../django/contrib/sites/middleware.py | 12 + .../contrib/sites/migrations/0001_initial.py | 43 + .../migrations/0002_alter_domain_unique.py | 21 + .../contrib/sites/migrations/__init__.py | 0 .../__pycache__/0001_initial.cpython-310.pyc | Bin 0 -> 1104 bytes .../0002_alter_domain_unique.cpython-310.pyc | Bin 0 -> 801 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 203 bytes .../django/contrib/sites/models.py | 120 + .../django/contrib/sites/requests.py | 20 + .../django/contrib/sites/shortcuts.py | 18 + .../django/contrib/staticfiles/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/apps.cpython-310.pyc | Bin 0 -> 930 bytes .../__pycache__/checks.cpython-310.pyc | Bin 0 -> 1052 bytes .../__pycache__/finders.cpython-310.pyc | Bin 0 -> 9687 bytes .../__pycache__/handlers.cpython-310.pyc | Bin 0 -> 4830 bytes .../__pycache__/storage.cpython-310.pyc | Bin 0 -> 13373 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 793 bytes .../__pycache__/urls.cpython-310.pyc | Bin 0 -> 677 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 2019 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 1432 bytes .../django/contrib/staticfiles/apps.py | 14 + .../django/contrib/staticfiles/checks.py | 29 + .../django/contrib/staticfiles/finders.py | 326 + .../django/contrib/staticfiles/handlers.py | 115 + .../staticfiles/management/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../management/commands/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 218 bytes .../__pycache__/collectstatic.cpython-310.pyc | Bin 0 -> 9371 bytes .../__pycache__/findstatic.cpython-310.pyc | Bin 0 -> 1924 bytes .../__pycache__/runserver.cpython-310.pyc | Bin 0 -> 1594 bytes .../management/commands/collectstatic.py | 379 + .../management/commands/findstatic.py | 48 + .../management/commands/runserver.py | 36 + .../django/contrib/staticfiles/storage.py | 543 + .../django/contrib/staticfiles/testing.py | 13 + .../django/contrib/staticfiles/urls.py | 19 + .../django/contrib/staticfiles/utils.py | 71 + .../django/contrib/staticfiles/views.py | 40 + .../django/contrib/syndication/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/apps.cpython-310.pyc | Bin 0 -> 551 bytes .../__pycache__/views.cpython-310.pyc | Bin 0 -> 6640 bytes .../django/contrib/syndication/apps.py | 7 + .../django/contrib/syndication/views.py | 234 + .../Lib/site-packages/django/core/__init__.py | 0 .../core/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 183 bytes .../core/__pycache__/asgi.cpython-310.pyc | Bin 0 -> 640 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 7463 bytes .../__pycache__/paginator.cpython-310.pyc | Bin 0 -> 7861 bytes .../core/__pycache__/signals.cpython-310.pyc | Bin 0 -> 335 bytes .../core/__pycache__/signing.cpython-310.pyc | Bin 0 -> 9186 bytes .../__pycache__/validators.cpython-310.pyc | Bin 0 -> 18562 bytes .../core/__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 642 bytes .../Lib/site-packages/django/core/asgi.py | 13 + .../django/core/cache/__init__.py | 67 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2032 bytes .../cache/__pycache__/utils.cpython-310.pyc | Bin 0 -> 584 bytes .../django/core/cache/backends/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../backends/__pycache__/base.cpython-310.pyc | Bin 0 -> 13198 bytes .../backends/__pycache__/db.cpython-310.pyc | Bin 0 -> 7966 bytes .../__pycache__/dummy.cpython-310.pyc | Bin 0 -> 1695 bytes .../__pycache__/filebased.cpython-310.pyc | Bin 0 -> 5923 bytes .../__pycache__/locmem.cpython-310.pyc | Bin 0 -> 4269 bytes .../__pycache__/memcached.cpython-310.pyc | Bin 0 -> 6739 bytes .../__pycache__/redis.cpython-310.pyc | Bin 0 -> 8673 bytes .../django/core/cache/backends/base.py | 405 + .../django/core/cache/backends/db.py | 293 + .../django/core/cache/backends/dummy.py | 34 + .../django/core/cache/backends/filebased.py | 170 + .../django/core/cache/backends/locmem.py | 117 + .../django/core/cache/backends/memcached.py | 188 + .../django/core/cache/backends/redis.py | 233 + .../site-packages/django/core/cache/utils.py | 12 + .../django/core/checks/__init__.py | 47 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1116 bytes .../__pycache__/async_checks.cpython-310.pyc | Bin 0 -> 689 bytes .../checks/__pycache__/caches.cpython-310.pyc | Bin 0 -> 2541 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 574 bytes .../checks/__pycache__/files.cpython-310.pyc | Bin 0 -> 724 bytes .../__pycache__/messages.cpython-310.pyc | Bin 0 -> 3315 bytes .../__pycache__/model_checks.cpython-310.pyc | Bin 0 -> 6904 bytes .../__pycache__/registry.cpython-310.pyc | Bin 0 -> 3808 bytes .../__pycache__/templates.cpython-310.pyc | Bin 0 -> 557 bytes .../__pycache__/translation.cpython-310.pyc | Bin 0 -> 2490 bytes .../checks/__pycache__/urls.cpython-310.pyc | Bin 0 -> 4566 bytes .../django/core/checks/async_checks.py | 16 + .../django/core/checks/caches.py | 76 + .../core/checks/compatibility/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 204 bytes .../__pycache__/django_4_0.cpython-310.pyc | Bin 0 -> 799 bytes .../core/checks/compatibility/django_4_0.py | 20 + .../django/core/checks/database.py | 14 + .../site-packages/django/core/checks/files.py | 19 + .../django/core/checks/messages.py | 81 + .../django/core/checks/model_checks.py | 227 + .../django/core/checks/registry.py | 117 + .../django/core/checks/security/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../security/__pycache__/base.cpython-310.pyc | Bin 0 -> 8175 bytes .../security/__pycache__/csrf.cpython-310.pyc | Bin 0 -> 2205 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 2542 bytes .../django/core/checks/security/base.py | 283 + .../django/core/checks/security/csrf.py | 67 + .../django/core/checks/security/sessions.py | 99 + .../django/core/checks/templates.py | 12 + .../django/core/checks/translation.py | 66 + .../site-packages/django/core/checks/urls.py | 159 + .../site-packages/django/core/exceptions.py | 255 + .../django/core/files/__init__.py | 3 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 262 bytes .../files/__pycache__/base.cpython-310.pyc | Bin 0 -> 5390 bytes .../files/__pycache__/images.cpython-310.pyc | Bin 0 -> 2148 bytes .../files/__pycache__/locks.cpython-310.pyc | Bin 0 -> 3385 bytes .../files/__pycache__/move.cpython-310.pyc | Bin 0 -> 1909 bytes .../files/__pycache__/temp.cpython-310.pyc | Bin 0 -> 2757 bytes .../__pycache__/uploadedfile.cpython-310.pyc | Bin 0 -> 4738 bytes .../__pycache__/uploadhandler.cpython-310.pyc | Bin 0 -> 8122 bytes .../files/__pycache__/utils.cpython-310.pyc | Bin 0 -> 3567 bytes .../site-packages/django/core/files/base.py | 161 + .../site-packages/django/core/files/images.py | 89 + .../site-packages/django/core/files/locks.py | 128 + .../site-packages/django/core/files/move.py | 90 + .../django/core/files/storage/__init__.py | 27 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 939 bytes .../storage/__pycache__/base.cpython-310.pyc | Bin 0 -> 6636 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 7469 bytes .../__pycache__/handler.cpython-310.pyc | Bin 0 -> 1841 bytes .../__pycache__/memory.cpython-310.pyc | Bin 0 -> 10072 bytes .../__pycache__/mixins.cpython-310.pyc | Bin 0 -> 1066 bytes .../django/core/files/storage/base.py | 206 + .../django/core/files/storage/filesystem.py | 248 + .../django/core/files/storage/handler.py | 46 + .../django/core/files/storage/memory.py | 290 + .../django/core/files/storage/mixins.py | 15 + .../site-packages/django/core/files/temp.py | 79 + .../django/core/files/uploadedfile.py | 150 + .../django/core/files/uploadhandler.py | 252 + .../site-packages/django/core/files/utils.py | 77 + .../django/core/handlers/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 192 bytes .../handlers/__pycache__/asgi.cpython-310.pyc | Bin 0 -> 9493 bytes .../handlers/__pycache__/base.cpython-310.pyc | Bin 0 -> 8431 bytes .../__pycache__/exception.cpython-310.pyc | Bin 0 -> 4139 bytes .../handlers/__pycache__/wsgi.cpython-310.pyc | Bin 0 -> 6323 bytes .../django/core/handlers/asgi.py | 372 + .../django/core/handlers/base.py | 373 + .../django/core/handlers/exception.py | 185 + .../django/core/handlers/wsgi.py | 207 + .../django/core/mail/__init__.py | 155 + .../mail/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4417 bytes .../mail/__pycache__/message.cpython-310.pyc | Bin 0 -> 14943 bytes .../mail/__pycache__/utils.cpython-310.pyc | Bin 0 -> 829 bytes .../django/core/mail/backends/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 197 bytes .../backends/__pycache__/base.cpython-310.pyc | Bin 0 -> 2428 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1772 bytes .../__pycache__/dummy.cpython-310.pyc | Bin 0 -> 649 bytes .../__pycache__/filebased.cpython-310.pyc | Bin 0 -> 2394 bytes .../__pycache__/locmem.cpython-310.pyc | Bin 0 -> 1339 bytes .../backends/__pycache__/smtp.cpython-310.pyc | Bin 0 -> 4480 bytes .../django/core/mail/backends/base.py | 62 + .../django/core/mail/backends/console.py | 45 + .../django/core/mail/backends/dummy.py | 10 + .../django/core/mail/backends/filebased.py | 66 + .../django/core/mail/backends/locmem.py | 33 + .../django/core/mail/backends/smtp.py | 162 + .../site-packages/django/core/mail/message.py | 496 + .../site-packages/django/core/mail/utils.py | 22 + .../django/core/management/__init__.py | 442 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 13333 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 23022 bytes .../__pycache__/color.cpython-310.pyc | Bin 0 -> 2834 bytes .../__pycache__/sql.cpython-310.pyc | Bin 0 -> 1404 bytes .../__pycache__/templates.cpython-310.pyc | Bin 0 -> 10787 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 5700 bytes .../django/core/management/base.py | 695 + .../django/core/management/color.py | 120 + .../core/management/commands/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 203 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 2615 bytes .../compilemessages.cpython-310.pyc | Bin 0 -> 5300 bytes .../createcachetable.cpython-310.pyc | Bin 0 -> 3596 bytes .../__pycache__/dbshell.cpython-310.pyc | Bin 0 -> 1652 bytes .../__pycache__/diffsettings.cpython-310.pyc | Bin 0 -> 3109 bytes .../__pycache__/dumpdata.cpython-310.pyc | Bin 0 -> 6774 bytes .../__pycache__/flush.cpython-310.pyc | Bin 0 -> 2805 bytes .../__pycache__/inspectdb.cpython-310.pyc | Bin 0 -> 10042 bytes .../__pycache__/loaddata.cpython-310.pyc | Bin 0 -> 11814 bytes .../__pycache__/makemessages.cpython-310.pyc | Bin 0 -> 20702 bytes .../makemigrations.cpython-310.pyc | Bin 0 -> 13645 bytes .../__pycache__/migrate.cpython-310.pyc | Bin 0 -> 12695 bytes .../optimizemigration.cpython-310.pyc | Bin 0 -> 3769 bytes .../__pycache__/runserver.cpython-310.pyc | Bin 0 -> 5345 bytes .../__pycache__/sendtestemail.cpython-310.pyc | Bin 0 -> 1764 bytes .../__pycache__/shell.cpython-310.pyc | Bin 0 -> 3166 bytes .../showmigrations.cpython-310.pyc | Bin 0 -> 4804 bytes .../__pycache__/sqlflush.cpython-310.pyc | Bin 0 -> 1388 bytes .../__pycache__/sqlmigrate.cpython-310.pyc | Bin 0 -> 2591 bytes .../sqlsequencereset.cpython-310.pyc | Bin 0 -> 1438 bytes .../squashmigrations.cpython-310.pyc | Bin 0 -> 6534 bytes .../__pycache__/startapp.cpython-310.pyc | Bin 0 -> 896 bytes .../__pycache__/startproject.cpython-310.pyc | Bin 0 -> 1088 bytes .../commands/__pycache__/test.cpython-310.pyc | Bin 0 -> 2468 bytes .../__pycache__/testserver.cpython-310.pyc | Bin 0 -> 1916 bytes .../django/core/management/commands/check.py | 88 + .../management/commands/compilemessages.py | 196 + .../management/commands/createcachetable.py | 131 + .../core/management/commands/dbshell.py | 49 + .../core/management/commands/diffsettings.py | 91 + .../core/management/commands/dumpdata.py | 285 + .../django/core/management/commands/flush.py | 93 + .../core/management/commands/inspectdb.py | 415 + .../core/management/commands/loaddata.py | 433 + .../core/management/commands/makemessages.py | 784 ++ .../management/commands/makemigrations.py | 515 + .../core/management/commands/migrate.py | 512 + .../management/commands/optimizemigration.py | 129 + .../core/management/commands/runserver.py | 190 + .../core/management/commands/sendtestemail.py | 46 + .../django/core/management/commands/shell.py | 139 + .../management/commands/showmigrations.py | 177 + .../core/management/commands/sqlflush.py | 30 + .../core/management/commands/sqlmigrate.py | 84 + .../management/commands/sqlsequencereset.py | 32 + .../management/commands/squashmigrations.py | 267 + .../core/management/commands/startapp.py | 14 + .../core/management/commands/startproject.py | 21 + .../django/core/management/commands/test.py | 66 + .../core/management/commands/testserver.py | 65 + .../django/core/management/sql.py | 59 + .../django/core/management/templates.py | 402 + .../django/core/management/utils.py | 175 + .../site-packages/django/core/paginator.py | 238 + .../django/core/serializers/__init__.py | 254 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 6976 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 10622 bytes .../__pycache__/json.cpython-310.pyc | Bin 0 -> 3486 bytes .../__pycache__/jsonl.cpython-310.pyc | Bin 0 -> 2130 bytes .../__pycache__/python.cpython-310.pyc | Bin 0 -> 5907 bytes .../__pycache__/pyyaml.cpython-310.pyc | Bin 0 -> 2830 bytes .../xml_serializer.cpython-310.pyc | Bin 0 -> 15147 bytes .../django/core/serializers/base.py | 387 + .../django/core/serializers/json.py | 106 + .../django/core/serializers/jsonl.py | 57 + .../django/core/serializers/python.py | 195 + .../django/core/serializers/pyyaml.py | 82 + .../django/core/serializers/xml_serializer.py | 500 + .../django/core/servers/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 191 bytes .../__pycache__/basehttp.cpython-310.pyc | Bin 0 -> 8390 bytes .../django/core/servers/basehttp.py | 282 + .../Lib/site-packages/django/core/signals.py | 6 + .../Lib/site-packages/django/core/signing.py | 277 + .../site-packages/django/core/validators.py | 698 + .../Lib/site-packages/django/core/wsgi.py | 13 + .../Lib/site-packages/django/db/__init__.py | 63 + .../db/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1283 bytes .../__pycache__/transaction.cpython-310.pyc | Bin 0 -> 8489 bytes .../db/__pycache__/utils.cpython-310.pyc | Bin 0 -> 8520 bytes .../django/db/backends/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../ddl_references.cpython-310.pyc | Bin 0 -> 10807 bytes .../__pycache__/signals.cpython-310.pyc | Bin 0 -> 263 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 9309 bytes .../django/db/backends/base/__init__.py | 0 .../base/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../base/__pycache__/base.cpython-310.pyc | Bin 0 -> 24276 bytes .../base/__pycache__/client.cpython-310.pyc | Bin 0 -> 1252 bytes .../base/__pycache__/creation.cpython-310.pyc | Bin 0 -> 11039 bytes .../base/__pycache__/features.cpython-310.pyc | Bin 0 -> 7056 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 8703 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 32760 bytes .../base/__pycache__/schema.cpython-310.pyc | Bin 0 -> 47986 bytes .../__pycache__/validation.cpython-310.pyc | Bin 0 -> 1355 bytes .../django/db/backends/base/base.py | 792 ++ .../django/db/backends/base/client.py | 28 + .../django/db/backends/base/creation.py | 384 + .../django/db/backends/base/features.py | 417 + .../django/db/backends/base/introspection.py | 212 + .../django/db/backends/base/operations.py | 806 ++ .../django/db/backends/base/schema.py | 2038 +++ .../django/db/backends/base/validation.py | 29 + .../django/db/backends/ddl_references.py | 270 + .../django/db/backends/dummy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../dummy/__pycache__/base.cpython-310.pyc | Bin 0 -> 2678 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 496 bytes .../django/db/backends/dummy/base.py | 74 + .../django/db/backends/dummy/features.py | 6 + .../django/db/backends/mysql/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../mysql/__pycache__/base.cpython-310.pyc | Bin 0 -> 12751 bytes .../mysql/__pycache__/client.cpython-310.pyc | Bin 0 -> 1900 bytes .../__pycache__/compiler.cpython-310.pyc | Bin 0 -> 2822 bytes .../__pycache__/creation.cpython-310.pyc | Bin 0 -> 2905 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 10677 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 11630 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 14621 bytes .../mysql/__pycache__/schema.cpython-310.pyc | Bin 0 -> 9604 bytes .../__pycache__/validation.cpython-310.pyc | Bin 0 -> 2561 bytes .../django/db/backends/mysql/base.py | 449 + .../django/db/backends/mysql/client.py | 72 + .../django/db/backends/mysql/compiler.py | 84 + .../django/db/backends/mysql/creation.py | 87 + .../django/db/backends/mysql/features.py | 338 + .../django/db/backends/mysql/introspection.py | 358 + .../django/db/backends/mysql/operations.py | 458 + .../django/db/backends/mysql/schema.py | 281 + .../django/db/backends/mysql/validation.py | 77 + .../django/db/backends/oracle/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 197 bytes .../oracle/__pycache__/base.cpython-310.pyc | Bin 0 -> 18812 bytes .../oracle/__pycache__/client.cpython-310.pyc | Bin 0 -> 1117 bytes .../__pycache__/creation.cpython-310.pyc | Bin 0 -> 15239 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 7546 bytes .../__pycache__/functions.cpython-310.pyc | Bin 0 -> 1253 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 12963 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 23013 bytes .../__pycache__/oracledb_any.cpython-310.pyc | Bin 0 -> 671 bytes .../oracle/__pycache__/schema.cpython-310.pyc | Bin 0 -> 7992 bytes .../oracle/__pycache__/utils.cpython-310.pyc | Bin 0 -> 3029 bytes .../__pycache__/validation.cpython-310.pyc | Bin 0 -> 1033 bytes .../django/db/backends/oracle/base.py | 612 + .../django/db/backends/oracle/client.py | 27 + .../django/db/backends/oracle/creation.py | 464 + .../django/db/backends/oracle/features.py | 210 + .../django/db/backends/oracle/functions.py | 26 + .../db/backends/oracle/introspection.py | 414 + .../django/db/backends/oracle/operations.py | 731 ++ .../django/db/backends/oracle/oracledb_any.py | 21 + .../django/db/backends/oracle/schema.py | 250 + .../django/db/backends/oracle/utils.py | 99 + .../django/db/backends/oracle/validation.py | 22 + .../django/db/backends/postgresql/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 16139 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 1711 bytes .../__pycache__/creation.cpython-310.pyc | Bin 0 -> 3450 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 6049 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 10454 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 13576 bytes .../__pycache__/psycopg_any.cpython-310.pyc | Bin 0 -> 4078 bytes .../__pycache__/schema.cpython-310.pyc | Bin 0 -> 8557 bytes .../django/db/backends/postgresql/base.py | 611 + .../django/db/backends/postgresql/client.py | 64 + .../django/db/backends/postgresql/creation.py | 91 + .../django/db/backends/postgresql/features.py | 172 + .../db/backends/postgresql/introspection.py | 299 + .../db/backends/postgresql/operations.py | 413 + .../db/backends/postgresql/psycopg_any.py | 114 + .../django/db/backends/postgresql/schema.py | 369 + .../django/db/backends/signals.py | 3 + .../django/db/backends/sqlite3/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/_functions.cpython-310.pyc | Bin 0 -> 12203 bytes .../sqlite3/__pycache__/base.cpython-310.pyc | Bin 0 -> 11451 bytes .../__pycache__/client.cpython-310.pyc | Bin 0 -> 705 bytes .../__pycache__/creation.cpython-310.pyc | Bin 0 -> 4763 bytes .../__pycache__/features.cpython-310.pyc | Bin 0 -> 5434 bytes .../__pycache__/introspection.cpython-310.pyc | Bin 0 -> 10814 bytes .../__pycache__/operations.cpython-310.pyc | Bin 0 -> 15072 bytes .../__pycache__/schema.cpython-310.pyc | Bin 0 -> 10910 bytes .../django/db/backends/sqlite3/_functions.py | 515 + .../django/db/backends/sqlite3/base.py | 373 + .../django/db/backends/sqlite3/client.py | 10 + .../django/db/backends/sqlite3/creation.py | 159 + .../django/db/backends/sqlite3/features.py | 156 + .../db/backends/sqlite3/introspection.py | 440 + .../django/db/backends/sqlite3/operations.py | 433 + .../django/db/backends/sqlite3/schema.py | 493 + .../site-packages/django/db/backends/utils.py | 342 + .../django/db/migrations/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 293 bytes .../__pycache__/autodetector.cpython-310.pyc | Bin 0 -> 42042 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 2380 bytes .../__pycache__/executor.cpython-310.pyc | Bin 0 -> 11209 bytes .../__pycache__/graph.cpython-310.pyc | Bin 0 -> 12628 bytes .../__pycache__/loader.cpython-310.pyc | Bin 0 -> 11130 bytes .../__pycache__/migration.cpython-310.pyc | Bin 0 -> 6565 bytes .../__pycache__/optimizer.cpython-310.pyc | Bin 0 -> 2708 bytes .../__pycache__/questioner.cpython-310.pyc | Bin 0 -> 11053 bytes .../__pycache__/recorder.cpython-310.pyc | Bin 0 -> 4539 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 14758 bytes .../__pycache__/state.cpython-310.pyc | Bin 0 -> 27819 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3559 bytes .../__pycache__/writer.cpython-310.pyc | Bin 0 -> 8171 bytes .../django/db/migrations/autodetector.py | 1907 +++ .../django/db/migrations/exceptions.py | 60 + .../django/db/migrations/executor.py | 413 + .../django/db/migrations/graph.py | 333 + .../django/db/migrations/loader.py | 385 + .../django/db/migrations/migration.py | 239 + .../db/migrations/operations/__init__.py | 44 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 940 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 5953 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 10182 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 34114 bytes .../__pycache__/special.cpython-310.pyc | Bin 0 -> 6572 bytes .../django/db/migrations/operations/base.py | 166 + .../django/db/migrations/operations/fields.py | 365 + .../django/db/migrations/operations/models.py | 1244 ++ .../db/migrations/operations/special.py | 211 + .../django/db/migrations/optimizer.py | 69 + .../django/db/migrations/questioner.py | 341 + .../django/db/migrations/recorder.py | 111 + .../django/db/migrations/serializer.py | 405 + .../django/db/migrations/state.py | 989 ++ .../django/db/migrations/utils.py | 129 + .../django/db/migrations/writer.py | 316 + .../django/db/models/__init__.py | 125 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2479 bytes .../__pycache__/aggregates.cpython-310.pyc | Bin 0 -> 6775 bytes .../models/__pycache__/base.cpython-310.pyc | Bin 0 -> 55192 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 507 bytes .../__pycache__/constraints.cpython-310.pyc | Bin 0 -> 17964 bytes .../__pycache__/deletion.cpython-310.pyc | Bin 0 -> 15499 bytes .../models/__pycache__/enums.cpython-310.pyc | Bin 0 -> 5200 bytes .../__pycache__/expressions.cpython-310.pyc | Bin 0 -> 64192 bytes .../__pycache__/indexes.cpython-310.pyc | Bin 0 -> 10276 bytes .../__pycache__/lookups.cpython-310.pyc | Bin 0 -> 24586 bytes .../__pycache__/manager.cpython-310.pyc | Bin 0 -> 6440 bytes .../__pycache__/options.cpython-310.pyc | Bin 0 -> 26376 bytes .../models/__pycache__/query.cpython-310.pyc | Bin 0 -> 74964 bytes .../__pycache__/query_utils.cpython-310.pyc | Bin 0 -> 15183 bytes .../__pycache__/signals.cpython-310.pyc | Bin 0 -> 1728 bytes .../models/__pycache__/utils.cpython-310.pyc | Bin 0 -> 2454 bytes .../django/db/models/aggregates.py | 213 + .../site-packages/django/db/models/base.py | 2484 ++++ .../django/db/models/constants.py | 13 + .../django/db/models/constraints.py | 683 + .../django/db/models/deletion.py | 518 + .../site-packages/django/db/models/enums.py | 123 + .../django/db/models/expressions.py | 2085 +++ .../django/db/models/fields/__init__.py | 2885 +++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 75431 bytes .../fields/__pycache__/files.cpython-310.pyc | Bin 0 -> 13994 bytes .../__pycache__/generated.cpython-310.pyc | Bin 0 -> 5867 bytes .../fields/__pycache__/json.cpython-310.pyc | Bin 0 -> 20756 bytes .../fields/__pycache__/mixins.cpython-310.pyc | Bin 0 -> 2928 bytes .../fields/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 946 bytes .../__pycache__/related.cpython-310.pyc | Bin 0 -> 50708 bytes .../related_descriptors.cpython-310.pyc | Bin 0 -> 45406 bytes .../related_lookups.cpython-310.pyc | Bin 0 -> 5935 bytes .../reverse_related.cpython-310.pyc | Bin 0 -> 12082 bytes .../django/db/models/fields/files.py | 538 + .../django/db/models/fields/generated.py | 197 + .../django/db/models/fields/json.py | 643 + .../django/db/models/fields/mixins.py | 81 + .../django/db/models/fields/proxy.py | 18 + .../django/db/models/fields/related.py | 1995 +++ .../db/models/fields/related_descriptors.py | 1622 +++ .../db/models/fields/related_lookups.py | 199 + .../db/models/fields/reverse_related.py | 415 + .../django/db/models/functions/__init__.py | 190 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2367 bytes .../__pycache__/comparison.cpython-310.pyc | Bin 0 -> 8770 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 10605 bytes .../__pycache__/math.cpython-310.pyc | Bin 0 -> 6523 bytes .../__pycache__/mixins.cpython-310.pyc | Bin 0 -> 2861 bytes .../__pycache__/text.cpython-310.pyc | Bin 0 -> 12519 bytes .../__pycache__/window.cpython-310.pyc | Bin 0 -> 3601 bytes .../django/db/models/functions/comparison.py | 230 + .../django/db/models/functions/datetime.py | 439 + .../django/db/models/functions/math.py | 214 + .../django/db/models/functions/mixins.py | 62 + .../django/db/models/functions/text.py | 376 + .../django/db/models/functions/window.py | 120 + .../site-packages/django/db/models/indexes.py | 299 + .../site-packages/django/db/models/lookups.py | 798 ++ .../site-packages/django/db/models/manager.py | 213 + .../site-packages/django/db/models/options.py | 1025 ++ .../site-packages/django/db/models/query.py | 2732 ++++ .../django/db/models/query_utils.py | 486 + .../site-packages/django/db/models/signals.py | 54 + .../django/db/models/sql/__init__.py | 6 + .../sql/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 428 bytes .../sql/__pycache__/compiler.cpython-310.pyc | Bin 0 -> 52269 bytes .../sql/__pycache__/constants.cpython-310.pyc | Bin 0 -> 502 bytes .../datastructures.cpython-310.pyc | Bin 0 -> 6621 bytes .../sql/__pycache__/query.cpython-310.pyc | Bin 0 -> 69975 bytes .../__pycache__/subqueries.cpython-310.pyc | Bin 0 -> 6286 bytes .../sql/__pycache__/where.cpython-310.pyc | Bin 0 -> 10891 bytes .../django/db/models/sql/compiler.py | 2115 +++ .../django/db/models/sql/constants.py | 24 + .../django/db/models/sql/datastructures.py | 238 + .../django/db/models/sql/query.py | 2735 ++++ .../django/db/models/sql/subqueries.py | 174 + .../django/db/models/sql/where.py | 365 + .../site-packages/django/db/models/utils.py | 69 + .../site-packages/django/db/transaction.py | 340 + .../Lib/site-packages/django/db/utils.py | 278 + .../site-packages/django/dispatch/__init__.py | 9 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 494 bytes .../__pycache__/dispatcher.cpython-310.pyc | Bin 0 -> 14125 bytes .../django/dispatch/dispatcher.py | 494 + .../site-packages/django/dispatch/license.txt | 36 + .../site-packages/django/forms/__init__.py | 11 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 503 bytes .../__pycache__/boundfield.cpython-310.pyc | Bin 0 -> 11534 bytes .../forms/__pycache__/fields.cpython-310.pyc | Bin 0 -> 39857 bytes .../forms/__pycache__/forms.cpython-310.pyc | Bin 0 -> 13801 bytes .../__pycache__/formsets.cpython-310.pyc | Bin 0 -> 16215 bytes .../forms/__pycache__/models.cpython-310.pyc | Bin 0 -> 39259 bytes .../__pycache__/renderers.cpython-310.pyc | Bin 0 -> 4234 bytes .../forms/__pycache__/utils.cpython-310.pyc | Bin 0 -> 9443 bytes .../forms/__pycache__/widgets.cpython-310.pyc | Bin 0 -> 37459 bytes .../site-packages/django/forms/boundfield.py | 359 + .../Lib/site-packages/django/forms/fields.py | 1410 ++ .../Lib/site-packages/django/forms/forms.py | 426 + .../site-packages/django/forms/formsets.py | 579 + .../forms/jinja2/django/forms/attrs.html | 1 + .../django/forms/jinja2/django/forms/div.html | 15 + .../django/forms/errors/dict/default.html | 1 + .../jinja2/django/forms/errors/dict/text.txt | 3 + .../jinja2/django/forms/errors/dict/ul.html | 1 + .../django/forms/errors/list/default.html | 1 + .../jinja2/django/forms/errors/list/text.txt | 2 + .../jinja2/django/forms/errors/list/ul.html | 1 + .../forms/jinja2/django/forms/field.html | 10 + .../jinja2/django/forms/formsets/div.html | 1 + .../forms/jinja2/django/forms/formsets/p.html | 1 + .../jinja2/django/forms/formsets/table.html | 1 + .../jinja2/django/forms/formsets/ul.html | 1 + .../forms/jinja2/django/forms/label.html | 1 + .../django/forms/jinja2/django/forms/p.html | 20 + .../forms/jinja2/django/forms/table.html | 29 + .../django/forms/jinja2/django/forms/ul.html | 24 + .../jinja2/django/forms/widgets/attrs.html | 1 + .../jinja2/django/forms/widgets/checkbox.html | 1 + .../django/forms/widgets/checkbox_option.html | 1 + .../django/forms/widgets/checkbox_select.html | 1 + .../forms/widgets/clearable_file_input.html | 5 + .../jinja2/django/forms/widgets/date.html | 1 + .../jinja2/django/forms/widgets/datetime.html | 1 + .../jinja2/django/forms/widgets/email.html | 1 + .../jinja2/django/forms/widgets/file.html | 1 + .../jinja2/django/forms/widgets/hidden.html | 1 + .../jinja2/django/forms/widgets/input.html | 1 + .../django/forms/widgets/input_option.html | 1 + .../django/forms/widgets/multiple_hidden.html | 1 + .../django/forms/widgets/multiple_input.html | 5 + .../django/forms/widgets/multiwidget.html | 1 + .../jinja2/django/forms/widgets/number.html | 1 + .../jinja2/django/forms/widgets/password.html | 1 + .../jinja2/django/forms/widgets/radio.html | 1 + .../django/forms/widgets/radio_option.html | 1 + .../jinja2/django/forms/widgets/select.html | 5 + .../django/forms/widgets/select_date.html | 1 + .../django/forms/widgets/select_option.html | 1 + .../django/forms/widgets/splitdatetime.html | 1 + .../forms/widgets/splithiddendatetime.html | 1 + .../jinja2/django/forms/widgets/text.html | 1 + .../jinja2/django/forms/widgets/textarea.html | 2 + .../jinja2/django/forms/widgets/time.html | 1 + .../jinja2/django/forms/widgets/url.html | 1 + .../Lib/site-packages/django/forms/models.py | 1687 +++ .../site-packages/django/forms/renderers.py | 110 + .../forms/templates/django/forms/attrs.html | 1 + .../forms/templates/django/forms/div.html | 15 + .../django/forms/errors/dict/default.html | 1 + .../django/forms/errors/dict/text.txt | 3 + .../django/forms/errors/dict/ul.html | 1 + .../django/forms/errors/list/default.html | 1 + .../django/forms/errors/list/text.txt | 2 + .../django/forms/errors/list/ul.html | 1 + .../forms/templates/django/forms/field.html | 9 + .../templates/django/forms/formsets/div.html | 1 + .../templates/django/forms/formsets/p.html | 1 + .../django/forms/formsets/table.html | 1 + .../templates/django/forms/formsets/ul.html | 1 + .../forms/templates/django/forms/label.html | 1 + .../forms/templates/django/forms/p.html | 20 + .../forms/templates/django/forms/table.html | 29 + .../forms/templates/django/forms/ul.html | 24 + .../templates/django/forms/widgets/attrs.html | 1 + .../django/forms/widgets/checkbox.html | 1 + .../django/forms/widgets/checkbox_option.html | 1 + .../django/forms/widgets/checkbox_select.html | 1 + .../forms/widgets/clearable_file_input.html | 5 + .../templates/django/forms/widgets/date.html | 1 + .../django/forms/widgets/datetime.html | 1 + .../templates/django/forms/widgets/email.html | 1 + .../templates/django/forms/widgets/file.html | 1 + .../django/forms/widgets/hidden.html | 1 + .../templates/django/forms/widgets/input.html | 1 + .../django/forms/widgets/input_option.html | 1 + .../django/forms/widgets/multiple_hidden.html | 1 + .../django/forms/widgets/multiple_input.html | 5 + .../django/forms/widgets/multiwidget.html | 1 + .../django/forms/widgets/number.html | 1 + .../django/forms/widgets/password.html | 1 + .../templates/django/forms/widgets/radio.html | 1 + .../django/forms/widgets/radio_option.html | 1 + .../django/forms/widgets/select.html | 5 + .../django/forms/widgets/select_date.html | 1 + .../django/forms/widgets/select_option.html | 1 + .../django/forms/widgets/splitdatetime.html | 1 + .../forms/widgets/splithiddendatetime.html | 1 + .../templates/django/forms/widgets/text.html | 1 + .../django/forms/widgets/textarea.html | 2 + .../templates/django/forms/widgets/time.html | 1 + .../templates/django/forms/widgets/url.html | 1 + .../Lib/site-packages/django/forms/utils.py | 244 + .../Lib/site-packages/django/forms/widgets.py | 1210 ++ .../Lib/site-packages/django/http/__init__.py | 52 + .../http/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1055 bytes .../http/__pycache__/cookie.cpython-310.pyc | Bin 0 -> 602 bytes .../multipartparser.cpython-310.pyc | Bin 0 -> 18080 bytes .../http/__pycache__/request.cpython-310.pyc | Bin 0 -> 23624 bytes .../http/__pycache__/response.cpython-310.pyc | Bin 0 -> 23096 bytes .../Lib/site-packages/django/http/cookie.py | 23 + .../django/http/multipartparser.py | 754 ++ .../Lib/site-packages/django/http/request.py | 738 ++ .../Lib/site-packages/django/http/response.py | 734 ++ .../django/middleware/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 189 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6774 bytes .../__pycache__/clickjacking.cpython-310.pyc | Bin 0 -> 1957 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 6117 bytes .../__pycache__/csrf.cpython-310.pyc | Bin 0 -> 13711 bytes .../__pycache__/gzip.cpython-310.pyc | Bin 0 -> 1867 bytes .../__pycache__/http.cpython-310.pyc | Bin 0 -> 1739 bytes .../__pycache__/locale.cpython-310.pyc | Bin 0 -> 2388 bytes .../__pycache__/security.cpython-310.pyc | Bin 0 -> 2732 bytes .../site-packages/django/middleware/cache.py | 223 + .../django/middleware/clickjacking.py | 48 + .../site-packages/django/middleware/common.py | 178 + .../site-packages/django/middleware/csrf.py | 483 + .../site-packages/django/middleware/gzip.py | 74 + .../site-packages/django/middleware/http.py | 40 + .../site-packages/django/middleware/locale.py | 80 + .../django/middleware/security.py | 66 + .../Lib/site-packages/django/shortcuts.py | 190 + .../site-packages/django/template/__init__.py | 75 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1805 bytes .../__pycache__/autoreload.cpython-310.pyc | Bin 0 -> 2151 bytes .../template/__pycache__/base.cpython-310.pyc | Bin 0 -> 30631 bytes .../__pycache__/context.cpython-310.pyc | Bin 0 -> 10089 bytes .../context_processors.cpython-310.pyc | Bin 0 -> 2850 bytes .../defaultfilters.cpython-310.pyc | Bin 0 -> 25735 bytes .../__pycache__/defaulttags.cpython-310.pyc | Bin 0 -> 43910 bytes .../__pycache__/engine.cpython-310.pyc | Bin 0 -> 6683 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1790 bytes .../__pycache__/library.cpython-310.pyc | Bin 0 -> 10230 bytes .../__pycache__/loader.cpython-310.pyc | Bin 0 -> 1959 bytes .../__pycache__/loader_tags.cpython-310.pyc | Bin 0 -> 10682 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 4718 bytes .../__pycache__/smartif.cpython-310.pyc | Bin 0 -> 7313 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3622 bytes .../django/template/autoreload.py | 61 + .../django/template/backends/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../backends/__pycache__/base.cpython-310.pyc | Bin 0 -> 2810 bytes .../__pycache__/django.cpython-310.pyc | Bin 0 -> 6769 bytes .../__pycache__/dummy.cpython-310.pyc | Bin 0 -> 2246 bytes .../__pycache__/jinja2.cpython-310.pyc | Bin 0 -> 4236 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 672 bytes .../django/template/backends/base.py | 83 + .../django/template/backends/django.py | 182 + .../django/template/backends/dummy.py | 51 + .../django/template/backends/jinja2.py | 125 + .../django/template/backends/utils.py | 15 + .../Lib/site-packages/django/template/base.py | 1124 ++ .../site-packages/django/template/context.py | 300 + .../django/template/context_processors.py | 89 + .../django/template/defaultfilters.py | 991 ++ .../django/template/defaulttags.py | 1542 +++ .../site-packages/django/template/engine.py | 214 + .../django/template/exceptions.py | 44 + .../site-packages/django/template/library.py | 387 + .../site-packages/django/template/loader.py | 66 + .../django/template/loader_tags.py | 354 + .../django/template/loaders/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../app_directories.cpython-310.pyc | Bin 0 -> 718 bytes .../loaders/__pycache__/base.cpython-310.pyc | Bin 0 -> 1848 bytes .../__pycache__/cached.cpython-310.pyc | Bin 0 -> 4263 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 1855 bytes .../__pycache__/locmem.cpython-310.pyc | Bin 0 -> 1155 bytes .../template/loaders/app_directories.py | 13 + .../django/template/loaders/base.py | 51 + .../django/template/loaders/cached.py | 100 + .../django/template/loaders/filesystem.py | 45 + .../django/template/loaders/locmem.py | 26 + .../site-packages/django/template/response.py | 164 + .../site-packages/django/template/smartif.py | 214 + .../site-packages/django/template/utils.py | 111 + .../django/templatetags/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 191 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 3205 bytes .../__pycache__/i18n.cpython-310.pyc | Bin 0 -> 17101 bytes .../__pycache__/l10n.cpython-310.pyc | Bin 0 -> 2027 bytes .../__pycache__/static.cpython-310.pyc | Bin 0 -> 5103 bytes .../__pycache__/tz.cpython-310.pyc | Bin 0 -> 5404 bytes .../django/templatetags/cache.py | 100 + .../site-packages/django/templatetags/i18n.py | 616 + .../site-packages/django/templatetags/l10n.py | 60 + .../django/templatetags/static.py | 179 + .../site-packages/django/templatetags/tz.py | 202 + .../Lib/site-packages/django/test/__init__.py | 38 + .../test/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 839 bytes .../test/__pycache__/client.cpython-310.pyc | Bin 0 -> 32418 bytes .../test/__pycache__/html.cpython-310.pyc | Bin 0 -> 7563 bytes .../test/__pycache__/runner.cpython-310.pyc | Bin 0 -> 35958 bytes .../test/__pycache__/selenium.cpython-310.pyc | Bin 0 -> 9132 bytes .../test/__pycache__/signals.cpython-310.pyc | Bin 0 -> 6299 bytes .../__pycache__/testcases.cpython-310.pyc | Bin 0 -> 54851 bytes .../test/__pycache__/utils.cpython-310.pyc | Bin 0 -> 30325 bytes .../Lib/site-packages/django/test/client.py | 1756 +++ .../Lib/site-packages/django/test/html.py | 273 + .../Lib/site-packages/django/test/runner.py | 1236 ++ .../Lib/site-packages/django/test/selenium.py | 263 + .../Lib/site-packages/django/test/signals.py | 253 + .../site-packages/django/test/testcases.py | 1859 +++ .../Lib/site-packages/django/test/utils.py | 994 ++ .../Lib/site-packages/django/urls/__init__.py | 53 + .../urls/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1038 bytes .../urls/__pycache__/base.cpython-310.pyc | Bin 0 -> 4572 bytes .../urls/__pycache__/conf.cpython-310.pyc | Bin 0 -> 2358 bytes .../__pycache__/converters.cpython-310.pyc | Bin 0 -> 2486 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 517 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 21803 bytes .../urls/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1737 bytes .../Lib/site-packages/django/urls/base.py | 187 + .../Lib/site-packages/django/urls/conf.py | 96 + .../site-packages/django/urls/converters.py | 78 + .../site-packages/django/urls/exceptions.py | 9 + .../site-packages/django/urls/resolvers.py | 831 ++ .../Lib/site-packages/django/urls/utils.py | 66 + .../site-packages/django/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 184 bytes .../utils/__pycache__/_os.cpython-310.pyc | Bin 0 -> 1949 bytes .../utils/__pycache__/archive.cpython-310.pyc | Bin 0 -> 8430 bytes .../utils/__pycache__/asyncio.cpython-310.pyc | Bin 0 -> 1202 bytes .../__pycache__/autoreload.cpython-310.pyc | Bin 0 -> 20767 bytes .../utils/__pycache__/cache.cpython-310.pyc | Bin 0 -> 12016 bytes .../utils/__pycache__/choices.cpython-310.pyc | Bin 0 -> 4242 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 4082 bytes .../utils/__pycache__/crypto.cpython-310.pyc | Bin 0 -> 2681 bytes .../datastructures.cpython-310.pyc | Bin 0 -> 13550 bytes .../__pycache__/dateformat.cpython-310.pyc | Bin 0 -> 11177 bytes .../__pycache__/dateparse.cpython-310.pyc | Bin 0 -> 4588 bytes .../utils/__pycache__/dates.cpython-310.pyc | Bin 0 -> 1411 bytes .../__pycache__/deconstruct.cpython-310.pyc | Bin 0 -> 1884 bytes .../__pycache__/decorators.cpython-310.pyc | Bin 0 -> 6755 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 4564 bytes .../__pycache__/duration.cpython-310.pyc | Bin 0 -> 1272 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 6868 bytes .../__pycache__/feedgenerator.cpython-310.pyc | Bin 0 -> 12274 bytes .../utils/__pycache__/formats.cpython-310.pyc | Bin 0 -> 7527 bytes .../__pycache__/functional.cpython-310.pyc | Bin 0 -> 13763 bytes .../__pycache__/hashable.cpython-310.pyc | Bin 0 -> 852 bytes .../utils/__pycache__/html.cpython-310.pyc | Bin 0 -> 14974 bytes .../utils/__pycache__/http.cpython-310.pyc | Bin 0 -> 10112 bytes .../utils/__pycache__/inspect.cpython-310.pyc | Bin 0 -> 3087 bytes .../utils/__pycache__/ipv6.cpython-310.pyc | Bin 0 -> 1533 bytes .../__pycache__/itercompat.cpython-310.pyc | Bin 0 -> 673 bytes .../utils/__pycache__/jslex.cpython-310.pyc | Bin 0 -> 6980 bytes .../utils/__pycache__/log.cpython-310.pyc | Bin 0 -> 6768 bytes .../__pycache__/lorem_ipsum.cpython-310.pyc | Bin 0 -> 4589 bytes .../module_loading.cpython-310.pyc | Bin 0 -> 2880 bytes .../__pycache__/numberformat.cpython-310.pyc | Bin 0 -> 2227 bytes .../__pycache__/regex_helper.cpython-310.pyc | Bin 0 -> 7616 bytes .../__pycache__/safestring.cpython-310.pyc | Bin 0 -> 2624 bytes .../__pycache__/termcolors.cpython-310.pyc | Bin 0 -> 5602 bytes .../utils/__pycache__/text.cpython-310.pyc | Bin 0 -> 14978 bytes .../__pycache__/timesince.cpython-310.pyc | Bin 0 -> 3669 bytes .../__pycache__/timezone.cpython-310.pyc | Bin 0 -> 7145 bytes .../utils/__pycache__/tree.cpython-310.pyc | Bin 0 -> 4192 bytes .../utils/__pycache__/version.cpython-310.pyc | Bin 0 -> 3290 bytes .../__pycache__/xmlutils.cpython-310.pyc | Bin 0 -> 1512 bytes .../Lib/site-packages/django/utils/_os.py | 62 + .../Lib/site-packages/django/utils/archive.py | 258 + .../Lib/site-packages/django/utils/asyncio.py | 39 + .../site-packages/django/utils/autoreload.py | 676 + .../Lib/site-packages/django/utils/cache.py | 444 + .../Lib/site-packages/django/utils/choices.py | 115 + .../site-packages/django/utils/connection.py | 85 + .../Lib/site-packages/django/utils/crypto.py | 77 + .../django/utils/datastructures.py | 345 + .../site-packages/django/utils/dateformat.py | 331 + .../site-packages/django/utils/dateparse.py | 154 + .../Lib/site-packages/django/utils/dates.py | 79 + .../site-packages/django/utils/deconstruct.py | 61 + .../site-packages/django/utils/decorators.py | 225 + .../site-packages/django/utils/deprecation.py | 151 + .../site-packages/django/utils/duration.py | 46 + .../site-packages/django/utils/encoding.py | 262 + .../django/utils/feedgenerator.py | 448 + .../Lib/site-packages/django/utils/formats.py | 305 + .../site-packages/django/utils/functional.py | 451 + .../site-packages/django/utils/hashable.py | 26 + .../Lib/site-packages/django/utils/html.py | 510 + .../Lib/site-packages/django/utils/http.py | 374 + .../Lib/site-packages/django/utils/inspect.py | 76 + .../Lib/site-packages/django/utils/ipv6.py | 49 + .../site-packages/django/utils/itercompat.py | 21 + .../Lib/site-packages/django/utils/jslex.py | 250 + .../Lib/site-packages/django/utils/log.py | 257 + .../site-packages/django/utils/lorem_ipsum.py | 286 + .../django/utils/module_loading.py | 107 + .../django/utils/numberformat.py | 105 + .../django/utils/regex_helper.py | 354 + .../site-packages/django/utils/safestring.py | 72 + .../site-packages/django/utils/termcolors.py | 221 + .../Lib/site-packages/django/utils/text.py | 487 + .../site-packages/django/utils/timesince.py | 142 + .../site-packages/django/utils/timezone.py | 259 + .../django/utils/translation/__init__.py | 302 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 8867 bytes .../__pycache__/reloader.cpython-310.pyc | Bin 0 -> 1563 bytes .../__pycache__/template.cpython-310.pyc | Bin 0 -> 4795 bytes .../__pycache__/trans_null.cpython-310.pyc | Bin 0 -> 1888 bytes .../__pycache__/trans_real.cpython-310.pyc | Bin 0 -> 19126 bytes .../django/utils/translation/reloader.py | 36 + .../django/utils/translation/template.py | 246 + .../django/utils/translation/trans_null.py | 67 + .../django/utils/translation/trans_real.py | 655 + .../Lib/site-packages/django/utils/tree.py | 126 + .../Lib/site-packages/django/utils/version.py | 123 + .../site-packages/django/utils/xmlutils.py | 35 + .../site-packages/django/views/__init__.py | 3 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 260 bytes .../views/__pycache__/csrf.cpython-310.pyc | Bin 0 -> 3096 bytes .../views/__pycache__/debug.cpython-310.pyc | Bin 0 -> 18636 bytes .../__pycache__/defaults.cpython-310.pyc | Bin 0 -> 3410 bytes .../views/__pycache__/i18n.cpython-310.pyc | Bin 0 -> 8949 bytes .../views/__pycache__/static.cpython-310.pyc | Bin 0 -> 3894 bytes .../Lib/site-packages/django/views/csrf.py | 80 + .../Lib/site-packages/django/views/debug.py | 665 + .../django/views/decorators/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 2917 bytes .../__pycache__/clickjacking.cpython-310.pyc | Bin 0 -> 2262 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 869 bytes .../__pycache__/csrf.cpython-310.pyc | Bin 0 -> 2475 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 4103 bytes .../__pycache__/gzip.cpython-310.pyc | Bin 0 -> 428 bytes .../__pycache__/http.cpython-310.pyc | Bin 0 -> 5263 bytes .../__pycache__/vary.cpython-310.pyc | Bin 0 -> 1462 bytes .../django/views/decorators/cache.py | 84 + .../django/views/decorators/clickjacking.py | 90 + .../django/views/decorators/common.py | 27 + .../django/views/decorators/csrf.py | 69 + .../django/views/decorators/debug.py | 147 + .../django/views/decorators/gzip.py | 5 + .../django/views/decorators/http.py | 169 + .../django/views/decorators/vary.py | 44 + .../site-packages/django/views/defaults.py | 150 + .../django/views/generic/__init__.py | 39 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1085 bytes .../generic/__pycache__/base.cpython-310.pyc | Bin 0 -> 8878 bytes .../generic/__pycache__/dates.cpython-310.pyc | Bin 0 -> 21378 bytes .../__pycache__/detail.cpython-310.pyc | Bin 0 -> 5295 bytes .../generic/__pycache__/edit.cpython-310.pyc | Bin 0 -> 9206 bytes .../generic/__pycache__/list.cpython-310.pyc | Bin 0 -> 6520 bytes .../django/views/generic/base.py | 285 + .../django/views/generic/dates.py | 795 ++ .../django/views/generic/detail.py | 180 + .../django/views/generic/edit.py | 274 + .../django/views/generic/list.py | 220 + .../Lib/site-packages/django/views/i18n.py | 251 + .../Lib/site-packages/django/views/static.py | 122 + .../django/views/templates/csrf_403.html | 84 + .../views/templates/default_urlconf.html | 241 + .../views/templates/directory_index.html | 21 + .../django/views/templates/i18n_catalog.js | 102 + .../django/views/templates/technical_404.html | 85 + .../django/views/templates/technical_500.html | 497 + .../django/views/templates/technical_500.txt | 66 + .../pip-23.0.1.dist-info/INSTALLER | 1 + .../pip-23.0.1.dist-info/LICENSE.txt | 20 + .../pip-23.0.1.dist-info/METADATA | 88 + .../site-packages/pip-23.0.1.dist-info/RECORD | 1002 ++ .../pip-23.0.1.dist-info/REQUESTED | 0 .../site-packages/pip-23.0.1.dist-info/WHEEL | 5 + .../pip-23.0.1.dist-info/entry_points.txt | 4 + .../pip-23.0.1.dist-info/top_level.txt | 1 + gestao_raul/Lib/site-packages/pip/__init__.py | 13 + gestao_raul/Lib/site-packages/pip/__main__.py | 31 + .../Lib/site-packages/pip/__pip-runner__.py | 50 + .../pip/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 631 bytes .../pip/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 593 bytes .../__pip-runner__.cpython-310.pyc | Bin 0 -> 1629 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 752 bytes .../__pycache__/build_env.cpython-310.pyc | Bin 0 -> 9710 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 9264 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 11212 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 25937 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 617 bytes .../__pycache__/pyproject.cpython-310.pyc | Bin 0 -> 3619 bytes .../self_outdated_check.cpython-310.pyc | Bin 0 -> 6641 bytes .../__pycache__/wheel_builder.cpython-310.pyc | Bin 0 -> 9129 bytes .../site-packages/pip/_internal/build_env.py | 311 + .../Lib/site-packages/pip/_internal/cache.py | 293 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 272 bytes .../autocompletion.cpython-310.pyc | Bin 0 -> 5305 bytes .../__pycache__/base_command.cpython-310.pyc | Bin 0 -> 6130 bytes .../__pycache__/cmdoptions.cpython-310.pyc | Bin 0 -> 23031 bytes .../command_context.cpython-310.pyc | Bin 0 -> 1312 bytes .../cli/__pycache__/main.cpython-310.pyc | Bin 0 -> 1370 bytes .../__pycache__/main_parser.cpython-310.pyc | Bin 0 -> 2995 bytes .../cli/__pycache__/parser.cpython-310.pyc | Bin 0 -> 9954 bytes .../__pycache__/progress_bars.cpython-310.pyc | Bin 0 -> 1896 bytes .../__pycache__/req_command.cpython-310.pyc | Bin 0 -> 13091 bytes .../cli/__pycache__/spinners.cpython-310.pyc | Bin 0 -> 4962 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 351 bytes .../pip/_internal/cli/autocompletion.py | 171 + .../pip/_internal/cli/base_command.py | 216 + .../pip/_internal/cli/cmdoptions.py | 1055 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 70 + .../pip/_internal/cli/main_parser.py | 134 + .../site-packages/pip/_internal/cli/parser.py | 294 + .../pip/_internal/cli/progress_bars.py | 68 + .../pip/_internal/cli/req_command.py | 502 + .../pip/_internal/cli/spinners.py | 159 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 132 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3251 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6234 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 1569 bytes .../__pycache__/completion.cpython-310.pyc | Bin 0 -> 4160 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 8938 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 6679 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 4209 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 2634 bytes .../commands/__pycache__/hash.cpython-310.pyc | Bin 0 -> 2148 bytes .../commands/__pycache__/help.cpython-310.pyc | Bin 0 -> 1309 bytes .../__pycache__/index.cpython-310.pyc | Bin 0 -> 4586 bytes .../__pycache__/inspect.cpython-310.pyc | Bin 0 -> 2969 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 20214 bytes .../commands/__pycache__/list.cpython-310.pyc | Bin 0 -> 10296 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 5362 bytes .../commands/__pycache__/show.cpython-310.pyc | Bin 0 -> 6523 bytes .../__pycache__/uninstall.cpython-310.pyc | Bin 0 -> 3330 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 5405 bytes .../pip/_internal/commands/cache.py | 223 + .../pip/_internal/commands/check.py | 53 + .../pip/_internal/commands/completion.py | 126 + .../pip/_internal/commands/configuration.py | 282 + .../pip/_internal/commands/debug.py | 199 + .../pip/_internal/commands/download.py | 149 + .../pip/_internal/commands/freeze.py | 97 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/inspect.py | 92 + .../pip/_internal/commands/install.py | 873 ++ .../pip/_internal/commands/list.py | 365 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 189 + .../pip/_internal/commands/uninstall.py | 113 + .../pip/_internal/commands/wheel.py | 203 + .../pip/_internal/configuration.py | 374 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 799 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1887 bytes .../__pycache__/installed.cpython-310.pyc | Bin 0 -> 1264 bytes .../__pycache__/sdist.cpython-310.pyc | Bin 0 -> 4995 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1631 bytes .../pip/_internal/distributions/base.py | 39 + .../pip/_internal/distributions/installed.py | 23 + .../pip/_internal/distributions/sdist.py | 150 + .../pip/_internal/distributions/wheel.py | 34 + .../site-packages/pip/_internal/exceptions.py | 747 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 226 bytes .../__pycache__/collector.cpython-310.pyc | Bin 0 -> 15293 bytes .../package_finder.cpython-310.pyc | Bin 0 -> 29453 bytes .../index/__pycache__/sources.cpython-310.pyc | Bin 0 -> 7119 bytes .../pip/_internal/index/collector.py | 505 + .../pip/_internal/index/package_finder.py | 1029 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 467 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 11028 bytes .../__pycache__/_distutils.cpython-310.pyc | Bin 0 -> 4601 bytes .../__pycache__/_sysconfig.cpython-310.pyc | Bin 0 -> 5992 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 2396 bytes .../pip/_internal/locations/_distutils.py | 173 + .../pip/_internal/locations/_sysconfig.py | 213 + .../pip/_internal/locations/base.py | 81 + .../Lib/site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 127 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4730 bytes .../__pycache__/_json.cpython-310.pyc | Bin 0 -> 2186 bytes .../metadata/__pycache__/base.cpython-310.pyc | Bin 0 -> 26664 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 10168 bytes .../pip/_internal/metadata/_json.py | 84 + .../pip/_internal/metadata/base.py | 688 + .../_internal/metadata/importlib/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 317 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 2749 bytes .../__pycache__/_dists.cpython-310.pyc | Bin 0 -> 8907 bytes .../__pycache__/_envs.cpython-310.pyc | Bin 0 -> 7703 bytes .../_internal/metadata/importlib/_compat.py | 55 + .../_internal/metadata/importlib/_dists.py | 224 + .../pip/_internal/metadata/importlib/_envs.py | 188 + .../pip/_internal/metadata/pkg_resources.py | 270 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 260 bytes .../__pycache__/candidate.cpython-310.pyc | Bin 0 -> 1412 bytes .../__pycache__/direct_url.cpython-310.pyc | Bin 0 -> 7416 bytes .../format_control.cpython-310.pyc | Bin 0 -> 2737 bytes .../models/__pycache__/index.cpython-310.pyc | Bin 0 -> 1229 bytes .../installation_report.cpython-310.pyc | Bin 0 -> 1739 bytes .../models/__pycache__/link.cpython-310.pyc | Bin 0 -> 16857 bytes .../models/__pycache__/scheme.cpython-310.pyc | Bin 0 -> 1028 bytes .../__pycache__/search_scope.cpython-310.pyc | Bin 0 -> 3547 bytes .../selection_prefs.cpython-310.pyc | Bin 0 -> 1690 bytes .../__pycache__/target_python.cpython-310.pyc | Bin 0 -> 3441 bytes .../models/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4460 bytes .../pip/_internal/models/candidate.py | 34 + .../pip/_internal/models/direct_url.py | 228 + .../pip/_internal/models/format_control.py | 80 + .../pip/_internal/models/index.py | 28 + .../_internal/models/installation_report.py | 53 + .../pip/_internal/models/link.py | 524 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 133 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 110 + .../pip/_internal/models/wheel.py | 92 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 248 bytes .../network/__pycache__/auth.cpython-310.pyc | Bin 0 -> 11984 bytes .../network/__pycache__/cache.cpython-310.pyc | Bin 0 -> 2935 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 5530 bytes .../__pycache__/lazy_wheel.cpython-310.pyc | Bin 0 -> 8416 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 12418 bytes .../network/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1451 bytes .../__pycache__/xmlrpc.cpython-310.pyc | Bin 0 -> 2061 bytes .../pip/_internal/network/auth.py | 446 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 186 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 518 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 60 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 4024 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 6201 bytes .../__pycache__/prepare.cpython-310.pyc | Bin 0 -> 15054 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 202 bytes .../__pycache__/build_tracker.cpython-310.pyc | Bin 0 -> 4283 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 1435 bytes .../metadata_editable.cpython-310.pyc | Bin 0 -> 1469 bytes .../metadata_legacy.cpython-310.pyc | Bin 0 -> 2374 bytes .../build/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1225 bytes .../wheel_editable.cpython-310.pyc | Bin 0 -> 1449 bytes .../__pycache__/wheel_legacy.cpython-310.pyc | Bin 0 -> 2759 bytes .../operations/build/build_tracker.py | 124 + .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 149 + .../pip/_internal/operations/freeze.py | 254 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 260 bytes .../editable_legacy.cpython-310.pyc | Bin 0 -> 1547 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 3345 bytes .../install/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 21146 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 120 + .../pip/_internal/operations/install/wheel.py | 738 ++ .../pip/_internal/operations/prepare.py | 667 + .../site-packages/pip/_internal/pyproject.py | 174 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2603 bytes .../__pycache__/constructors.cpython-310.pyc | Bin 0 -> 12373 bytes .../req/__pycache__/req_file.cpython-310.pyc | Bin 0 -> 13633 bytes .../__pycache__/req_install.cpython-310.pyc | Bin 0 -> 24390 bytes .../req/__pycache__/req_set.cpython-310.pyc | Bin 0 -> 3911 bytes .../__pycache__/req_uninstall.cpython-310.pyc | Bin 0 -> 19058 bytes .../pip/_internal/req/constructors.py | 501 + .../pip/_internal/req/req_file.py | 544 + .../pip/_internal/req/req_install.py | 946 ++ .../pip/_internal/req/req_set.py | 82 + .../pip/_internal/req/req_uninstall.py | 640 + .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1048 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 203 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 14949 bytes .../_internal/resolution/legacy/resolver.py | 600 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 207 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6450 bytes .../__pycache__/candidates.cpython-310.pyc | Bin 0 -> 18591 bytes .../__pycache__/factory.cpython-310.pyc | Bin 0 -> 19071 bytes .../found_candidates.cpython-310.pyc | Bin 0 -> 4867 bytes .../__pycache__/provider.cpython-310.pyc | Bin 0 -> 7708 bytes .../__pycache__/reporter.cpython-310.pyc | Bin 0 -> 3176 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 7465 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 8180 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 556 + .../resolution/resolvelib/factory.py | 731 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 248 + .../resolution/resolvelib/reporter.py | 68 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 296 + .../pip/_internal/self_outdated_check.py | 242 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 191 bytes .../utils/__pycache__/_log.cpython-310.pyc | Bin 0 -> 1519 bytes .../utils/__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 1617 bytes .../utils/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1507 bytes .../compatibility_tags.cpython-310.pyc | Bin 0 -> 4076 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 514 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 5099 bytes .../direct_url_helpers.cpython-310.pyc | Bin 0 -> 2082 bytes .../distutils_args.cpython-310.pyc | Bin 0 -> 1056 bytes .../__pycache__/egg_link.cpython-310.pyc | Bin 0 -> 2162 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1304 bytes .../__pycache__/entrypoints.cpython-310.pyc | Bin 0 -> 2697 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 4480 bytes .../__pycache__/filetypes.cpython-310.pyc | Bin 0 -> 941 bytes .../utils/__pycache__/glibc.cpython-310.pyc | Bin 0 -> 1670 bytes .../utils/__pycache__/hashes.cpython-310.pyc | Bin 0 -> 5221 bytes .../inject_securetransport.cpython-310.pyc | Bin 0 -> 986 bytes .../utils/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9716 bytes .../utils/__pycache__/misc.cpython-310.pyc | Bin 0 -> 22253 bytes .../utils/__pycache__/models.cpython-310.pyc | Bin 0 -> 1987 bytes .../__pycache__/packaging.cpython-310.pyc | Bin 0 -> 2079 bytes .../setuptools_build.cpython-310.pyc | Bin 0 -> 4598 bytes .../__pycache__/subprocess.cpython-310.pyc | Bin 0 -> 5770 bytes .../__pycache__/temp_dir.cpython-310.pyc | Bin 0 -> 7314 bytes .../__pycache__/unpacking.cpython-310.pyc | Bin 0 -> 6651 bytes .../utils/__pycache__/urls.cpython-310.pyc | Bin 0 -> 1584 bytes .../__pycache__/virtualenv.cpython-310.pyc | Bin 0 -> 3287 bytes .../utils/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4412 bytes .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 188 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/distutils_args.py | 43 + .../pip/_internal/utils/egg_link.py | 72 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 84 + .../pip/_internal/utils/filesystem.py | 153 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 144 + .../_internal/utils/inject_securetransport.py | 35 + .../pip/_internal/utils/logging.py | 348 + .../site-packages/pip/_internal/utils/misc.py | 739 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 195 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 246 + .../pip/_internal/utils/unpacking.py | 257 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 136 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 514 bytes .../vcs/__pycache__/bazaar.cpython-310.pyc | Bin 0 -> 3480 bytes .../vcs/__pycache__/git.cpython-310.pyc | Bin 0 -> 12544 bytes .../vcs/__pycache__/mercurial.cpython-310.pyc | Bin 0 -> 5060 bytes .../__pycache__/subversion.cpython-310.pyc | Bin 0 -> 8452 bytes .../versioncontrol.cpython-310.pyc | Bin 0 -> 21143 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 112 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 + .../pip/_internal/wheel_builder.py | 382 + .../Lib/site-packages/pip/_vendor/__init__.py | 120 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3127 bytes .../_vendor/__pycache__/six.cpython-310.pyc | Bin 0 -> 27581 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 65035 bytes .../pip/_vendor/cachecontrol/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 642 bytes .../__pycache__/_cmd.cpython-310.pyc | Bin 0 -> 1580 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 3156 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 2690 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 756 bytes .../__pycache__/controller.cpython-310.pyc | Bin 0 -> 8590 bytes .../__pycache__/filewrapper.cpython-310.pyc | Bin 0 -> 2792 bytes .../__pycache__/heuristics.cpython-310.pyc | Bin 0 -> 4716 bytes .../__pycache__/serialize.cpython-310.pyc | Bin 0 -> 4331 bytes .../__pycache__/wrapper.cpython-310.pyc | Bin 0 -> 687 bytes .../pip/_vendor/cachecontrol/_cmd.py | 61 + .../pip/_vendor/cachecontrol/adapter.py | 137 + .../pip/_vendor/cachecontrol/cache.py | 65 + .../_vendor/cachecontrol/caches/__init__.py | 9 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 361 bytes .../__pycache__/file_cache.cpython-310.pyc | Bin 0 -> 4961 bytes .../__pycache__/redis_cache.cpython-310.pyc | Bin 0 -> 1619 bytes .../_vendor/cachecontrol/caches/file_cache.py | 188 + .../cachecontrol/caches/redis_cache.py | 39 + .../pip/_vendor/cachecontrol/compat.py | 32 + .../pip/_vendor/cachecontrol/controller.py | 439 + .../pip/_vendor/cachecontrol/filewrapper.py | 111 + .../pip/_vendor/cachecontrol/heuristics.py | 139 + .../pip/_vendor/cachecontrol/serialize.py | 190 + .../pip/_vendor/cachecontrol/wrapper.py | 33 + .../pip/_vendor/certifi/__init__.py | 4 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 304 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 454 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1924 bytes .../pip/_vendor/certifi/cacert.pem | 4527 +++++++ .../site-packages/pip/_vendor/certifi/core.py | 108 + .../pip/_vendor/chardet/__init__.py | 115 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3172 bytes .../__pycache__/big5freq.cpython-310.pyc | Bin 0 -> 27178 bytes .../__pycache__/big5prober.cpython-310.pyc | Bin 0 -> 1156 bytes .../chardistribution.cpython-310.pyc | Bin 0 -> 6573 bytes .../charsetgroupprober.cpython-310.pyc | Bin 0 -> 2423 bytes .../__pycache__/charsetprober.cpython-310.pyc | Bin 0 -> 3829 bytes .../codingstatemachine.cpython-310.pyc | Bin 0 -> 3066 bytes .../codingstatemachinedict.cpython-310.pyc | Bin 0 -> 695 bytes .../__pycache__/cp949prober.cpython-310.pyc | Bin 0 -> 1163 bytes .../chardet/__pycache__/enums.cpython-310.pyc | Bin 0 -> 2656 bytes .../__pycache__/escprober.cpython-310.pyc | Bin 0 -> 2814 bytes .../chardet/__pycache__/escsm.cpython-310.pyc | Bin 0 -> 8517 bytes .../__pycache__/eucjpprober.cpython-310.pyc | Bin 0 -> 2600 bytes .../__pycache__/euckrfreq.cpython-310.pyc | Bin 0 -> 12062 bytes .../__pycache__/euckrprober.cpython-310.pyc | Bin 0 -> 1164 bytes .../__pycache__/euctwfreq.cpython-310.pyc | Bin 0 -> 27182 bytes .../__pycache__/euctwprober.cpython-310.pyc | Bin 0 -> 1164 bytes .../__pycache__/gb2312freq.cpython-310.pyc | Bin 0 -> 19106 bytes .../__pycache__/gb2312prober.cpython-310.pyc | Bin 0 -> 1172 bytes .../__pycache__/hebrewprober.cpython-310.pyc | Bin 0 -> 3413 bytes .../__pycache__/jisfreq.cpython-310.pyc | Bin 0 -> 22134 bytes .../__pycache__/johabfreq.cpython-310.pyc | Bin 0 -> 138758 bytes .../__pycache__/johabprober.cpython-310.pyc | Bin 0 -> 1163 bytes .../__pycache__/jpcntx.cpython-310.pyc | Bin 0 -> 37984 bytes .../langbulgarianmodel.cpython-310.pyc | Bin 0 -> 47926 bytes .../langgreekmodel.cpython-310.pyc | Bin 0 -> 46116 bytes .../langhebrewmodel.cpython-310.pyc | Bin 0 -> 44563 bytes .../langhungarianmodel.cpython-310.pyc | Bin 0 -> 47886 bytes .../langrussianmodel.cpython-310.pyc | Bin 0 -> 61027 bytes .../__pycache__/langthaimodel.cpython-310.pyc | Bin 0 -> 44739 bytes .../langturkishmodel.cpython-310.pyc | Bin 0 -> 44580 bytes .../__pycache__/latin1prober.cpython-310.pyc | Bin 0 -> 4562 bytes .../macromanprober.cpython-310.pyc | Bin 0 -> 4703 bytes .../mbcharsetprober.cpython-310.pyc | Bin 0 -> 2312 bytes .../mbcsgroupprober.cpython-310.pyc | Bin 0 -> 1260 bytes .../__pycache__/mbcssm.cpython-310.pyc | Bin 0 -> 20935 bytes .../__pycache__/resultdict.cpython-310.pyc | Bin 0 -> 575 bytes .../sbcharsetprober.cpython-310.pyc | Bin 0 -> 3681 bytes .../sbcsgroupprober.cpython-310.pyc | Bin 0 -> 1739 bytes .../__pycache__/sjisprober.cpython-310.pyc | Bin 0 -> 2638 bytes .../universaldetector.cpython-310.pyc | Bin 0 -> 7126 bytes .../__pycache__/utf1632prober.cpython-310.pyc | Bin 0 -> 6098 bytes .../__pycache__/utf8prober.cpython-310.pyc | Bin 0 -> 2108 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 440 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 261 + .../pip/_vendor/chardet/charsetgroupprober.py | 106 + .../pip/_vendor/chardet/charsetprober.py | 147 + .../pip/_vendor/chardet/cli/__init__.py | 0 .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../__pycache__/chardetect.cpython-310.pyc | Bin 0 -> 3037 bytes .../pip/_vendor/chardet/cli/chardetect.py | 112 + .../pip/_vendor/chardet/codingstatemachine.py | 90 + .../_vendor/chardet/codingstatemachinedict.py | 19 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 85 + .../pip/_vendor/chardet/escprober.py | 102 + .../pip/_vendor/chardet/escsm.py | 261 + .../pip/_vendor/chardet/eucjpprober.py | 102 + .../pip/_vendor/chardet/euckrfreq.py | 196 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 388 + .../pip/_vendor/chardet/euctwprober.py | 47 + .../pip/_vendor/chardet/gb2312freq.py | 284 + .../pip/_vendor/chardet/gb2312prober.py | 47 + .../pip/_vendor/chardet/hebrewprober.py | 316 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/johabfreq.py | 2382 ++++ .../pip/_vendor/chardet/johabprober.py | 47 + .../pip/_vendor/chardet/jpcntx.py | 238 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4649 +++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4397 +++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4380 +++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4649 +++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5725 +++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4380 +++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4380 +++++++ .../pip/_vendor/chardet/latin1prober.py | 147 + .../pip/_vendor/chardet/macromanprober.py | 162 + .../pip/_vendor/chardet/mbcharsetprober.py | 95 + .../pip/_vendor/chardet/mbcsgroupprober.py | 57 + .../pip/_vendor/chardet/mbcssm.py | 661 + .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 200 bytes .../__pycache__/languages.cpython-310.pyc | Bin 0 -> 8183 bytes .../pip/_vendor/chardet/metadata/languages.py | 352 + .../pip/_vendor/chardet/resultdict.py | 16 + .../pip/_vendor/chardet/sbcharsetprober.py | 162 + .../pip/_vendor/chardet/sbcsgroupprober.py | 88 + .../pip/_vendor/chardet/sjisprober.py | 105 + .../pip/_vendor/chardet/universaldetector.py | 362 + .../pip/_vendor/chardet/utf1632prober.py | 225 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 7 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 478 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 3004 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 8516 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 2261 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 4471 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 5167 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 277 + .../pip/_vendor/colorama/initialise.py | 121 + .../pip/_vendor/colorama/tests/__init__.py | 1 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/ansi_test.cpython-310.pyc | Bin 0 -> 2290 bytes .../ansitowin32_test.cpython-310.pyc | Bin 0 -> 11601 bytes .../initialise_test.cpython-310.pyc | Bin 0 -> 6898 bytes .../__pycache__/isatty_test.cpython-310.pyc | Bin 0 -> 2689 bytes .../tests/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1598 bytes .../__pycache__/winterm_test.cpython-310.pyc | Bin 0 -> 3191 bytes .../pip/_vendor/colorama/tests/ansi_test.py | 76 + .../colorama/tests/ansitowin32_test.py | 294 + .../_vendor/colorama/tests/initialise_test.py | 189 + .../pip/_vendor/colorama/tests/isatty_test.py | 57 + .../pip/_vendor/colorama/tests/utils.py | 49 + .../_vendor/colorama/tests/winterm_test.py | 131 + .../pip/_vendor/colorama/win32.py | 180 + .../pip/_vendor/colorama/winterm.py | 195 + .../pip/_vendor/distlib/__init__.py | 23 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1062 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 31408 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 43148 bytes .../distlib/__pycache__/index.cpython-310.pyc | Bin 0 -> 17313 bytes .../__pycache__/locators.cpython-310.pyc | Bin 0 -> 38370 bytes .../__pycache__/manifest.cpython-310.pyc | Bin 0 -> 10230 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 5034 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 26787 bytes .../__pycache__/resources.cpython-310.pyc | Bin 0 -> 11036 bytes .../__pycache__/scripts.cpython-310.pyc | Bin 0 -> 11500 bytes .../distlib/__pycache__/util.cpython-310.pyc | Bin 0 -> 51695 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 20149 bytes .../distlib/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 28131 bytes .../pip/_vendor/distlib/compat.py | 1116 ++ .../pip/_vendor/distlib/database.py | 1350 ++ .../pip/_vendor/distlib/index.py | 508 + .../pip/_vendor/distlib/locators.py | 1300 ++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 152 + .../pip/_vendor/distlib/metadata.py | 1076 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 437 + .../site-packages/pip/_vendor/distlib/t32.exe | Bin 0 -> 97792 bytes .../pip/_vendor/distlib/t64-arm.exe | Bin 0 -> 182784 bytes .../site-packages/pip/_vendor/distlib/t64.exe | Bin 0 -> 108032 bytes .../site-packages/pip/_vendor/distlib/util.py | 1932 +++ .../pip/_vendor/distlib/version.py | 739 ++ .../site-packages/pip/_vendor/distlib/w32.exe | Bin 0 -> 91648 bytes .../pip/_vendor/distlib/w64-arm.exe | Bin 0 -> 168448 bytes .../site-packages/pip/_vendor/distlib/w64.exe | Bin 0 -> 101888 bytes .../pip/_vendor/distlib/wheel.py | 1082 ++ .../pip/_vendor/distro/__init__.py | 54 + .../pip/_vendor/distro/__main__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 915 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 269 bytes .../distro/__pycache__/distro.cpython-310.pyc | Bin 0 -> 42063 bytes .../pip/_vendor/distro/distro.py | 1399 ++ .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 847 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2818 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 747 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9676 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 38383 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 1984 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 211 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 152398 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 400 + .../pip/_vendor/idna/idnadata.py | 2151 ++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8600 +++++++++++++ .../pip/_vendor/msgpack/__init__.py | 57 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1445 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1808 bytes .../msgpack/__pycache__/ext.cpython-310.pyc | Bin 0 -> 6316 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 25483 bytes .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1010 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 590 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 446 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7300 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4612 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2705 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9287 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3975 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21527 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12190 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3575 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12925 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pkg_resources/__init__.py | 3296 +++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 99876 bytes .../__pycache__/py31compat.cpython-310.pyc | Bin 0 -> 660 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/platformdirs/__init__.py | 342 + .../pip/_vendor/platformdirs/__main__.py | 46 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10585 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 1236 bytes .../__pycache__/android.cpython-310.pyc | Bin 0 -> 4326 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 5202 bytes .../__pycache__/macos.cpython-310.pyc | Bin 0 -> 3190 bytes .../__pycache__/unix.cpython-310.pyc | Bin 0 -> 6892 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 290 bytes .../__pycache__/windows.cpython-310.pyc | Bin 0 -> 6510 bytes .../pip/_vendor/platformdirs/android.py | 120 + .../pip/_vendor/platformdirs/api.py | 156 + .../pip/_vendor/platformdirs/macos.py | 64 + .../pip/_vendor/platformdirs/unix.py | 181 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 184 + .../pip/_vendor/pygments/__init__.py | 82 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2948 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 588 bytes .../__pycache__/cmdline.cpython-310.pyc | Bin 0 -> 15603 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1883 bytes .../__pycache__/filter.cpython-310.pyc | Bin 0 -> 2654 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 3010 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 24371 bytes .../__pycache__/modeline.cpython-310.pyc | Bin 0 -> 1192 bytes .../__pycache__/plugin.cpython-310.pyc | Bin 0 -> 2520 bytes .../__pycache__/regexopt.cpython-310.pyc | Bin 0 -> 2956 bytes .../__pycache__/scanner.cpython-310.pyc | Bin 0 -> 3558 bytes .../__pycache__/sphinxext.cpython-310.pyc | Bin 0 -> 4542 bytes .../__pycache__/style.cpython-310.pyc | Bin 0 -> 4579 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 4671 bytes .../__pycache__/unistring.cpython-310.pyc | Bin 0 -> 31205 bytes .../pygments/__pycache__/util.cpython-310.pyc | Bin 0 -> 9147 bytes .../pip/_vendor/pygments/cmdline.py | 668 + .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 940 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 29608 bytes .../pip/_vendor/pygments/formatter.py | 94 + .../_vendor/pygments/formatters/__init__.py | 143 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4370 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 3930 bytes .../__pycache__/bbcode.cpython-310.pyc | Bin 0 -> 3085 bytes .../__pycache__/groff.cpython-310.pyc | Bin 0 -> 4398 bytes .../__pycache__/html.cpython-310.pyc | Bin 0 -> 29130 bytes .../__pycache__/img.cpython-310.pyc | Bin 0 -> 17562 bytes .../__pycache__/irc.cpython-310.pyc | Bin 0 -> 4588 bytes .../__pycache__/latex.cpython-310.pyc | Bin 0 -> 13798 bytes .../__pycache__/other.cpython-310.pyc | Bin 0 -> 4804 bytes .../__pycache__/pangomarkup.cpython-310.pyc | Bin 0 -> 2104 bytes .../__pycache__/rtf.cpython-310.pyc | Bin 0 -> 4134 bytes .../__pycache__/svg.cpython-310.pyc | Bin 0 -> 6332 bytes .../__pycache__/terminal.cpython-310.pyc | Bin 0 -> 3999 bytes .../__pycache__/terminal256.cpython-310.pyc | Bin 0 -> 9249 bytes .../_vendor/pygments/formatters/_mapping.py | 23 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 170 + .../pip/_vendor/pygments/formatters/html.py | 989 ++ .../pip/_vendor/pygments/formatters/img.py | 645 + .../pip/_vendor/pygments/formatters/irc.py | 179 + .../pip/_vendor/pygments/formatters/latex.py | 521 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 882 ++ .../pip/_vendor/pygments/lexers/__init__.py | 335 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9056 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 58883 bytes .../lexers/__pycache__/python.cpython-310.pyc | Bin 0 -> 29842 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 541 + .../pip/_vendor/pygments/lexers/python.py | 1204 ++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 88 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 155 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 97 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3371 bytes .../pip/_vendor/pygments/token.py | 213 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 308 + .../pip/_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7129 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7179 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10105 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 176456 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9063 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 35340 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24781 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12097 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 10058 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8605 bytes .../pip/_vendor/pyparsing/actions.py | 207 + .../pip/_vendor/pyparsing/common.py | 424 + .../pip/_vendor/pyparsing/core.py | 5814 +++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 642 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16581 bytes .../pip/_vendor/pyparsing/exceptions.py | 267 + .../pip/_vendor/pyparsing/helpers.py | 1088 ++ .../pip/_vendor/pyparsing/results.py | 760 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 352 + .../pip/_vendor/pyparsing/util.py | 235 + .../pip/_vendor/pyproject_hooks/__init__.py | 23 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 586 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 337 bytes .../__pycache__/_impl.cpython-310.pyc | Bin 0 -> 11389 bytes .../pip/_vendor/pyproject_hooks/_compat.py | 8 + .../pip/_vendor/pyproject_hooks/_impl.py | 330 + .../pyproject_hooks/_in_process/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 824 bytes .../__pycache__/_in_process.cpython-310.pyc | Bin 0 -> 9706 bytes .../_in_process/_in_process.py | 353 + .../pip/_vendor/requests/__init__.py | 182 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4016 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 550 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1565 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 16899 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6654 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8122 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 809 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1371 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18691 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5741 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2867 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 994 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24266 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 508 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19574 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4673 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4438 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24336 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 48 + .../pip/_vendor/requests/adapters.py | 584 + .../site-packages/pip/_vendor/requests/api.py | 157 + .../pip/_vendor/requests/auth.py | 315 + .../pip/_vendor/requests/certs.py | 24 + .../pip/_vendor/requests/compat.py | 67 + .../pip/_vendor/requests/cookies.py | 561 + .../pip/_vendor/requests/exceptions.py | 141 + .../pip/_vendor/requests/help.py | 131 + .../pip/_vendor/requests/hooks.py | 33 + .../pip/_vendor/requests/models.py | 1034 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 831 ++ .../pip/_vendor/requests/status_codes.py | 128 + .../pip/_vendor/requests/structures.py | 99 + .../pip/_vendor/requests/utils.py | 1086 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 606 bytes .../__pycache__/providers.cpython-310.pyc | Bin 0 -> 6657 bytes .../__pycache__/reporters.cpython-310.pyc | Bin 0 -> 2577 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 15130 bytes .../__pycache__/structs.cpython-310.pyc | Bin 0 -> 7163 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../collections_abc.cpython-310.pyc | Bin 0 -> 377 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 482 + .../pip/_vendor/resolvelib/structs.py | 165 + .../pip/_vendor/rich/__init__.py | 177 + .../pip/_vendor/rich/__main__.py | 274 + .../rich/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 6113 bytes .../rich/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 7183 bytes .../__pycache__/_cell_widths.cpython-310.pyc | Bin 0 -> 7814 bytes .../__pycache__/_emoji_codes.cpython-310.pyc | Bin 0 -> 360054 bytes .../_emoji_replace.cpython-310.pyc | Bin 0 -> 1194 bytes .../_export_format.cpython-310.pyc | Bin 0 -> 2311 bytes .../__pycache__/_extension.cpython-310.pyc | Bin 0 -> 495 bytes .../rich/__pycache__/_inspect.cpython-310.pyc | Bin 0 -> 8672 bytes .../__pycache__/_log_render.cpython-310.pyc | Bin 0 -> 2640 bytes .../rich/__pycache__/_loop.cpython-310.pyc | Bin 0 -> 1292 bytes .../__pycache__/_null_file.cpython-310.pyc | Bin 0 -> 3603 bytes .../__pycache__/_palettes.cpython-310.pyc | Bin 0 -> 5097 bytes .../rich/__pycache__/_pick.cpython-310.pyc | Bin 0 -> 640 bytes .../rich/__pycache__/_ratio.cpython-310.pyc | Bin 0 -> 5157 bytes .../__pycache__/_spinners.cpython-310.pyc | Bin 0 -> 12271 bytes .../rich/__pycache__/_stack.cpython-310.pyc | Bin 0 -> 838 bytes .../rich/__pycache__/_timer.cpython-310.pyc | Bin 0 -> 687 bytes .../_win32_console.cpython-310.pyc | Bin 0 -> 19007 bytes .../rich/__pycache__/_windows.cpython-310.pyc | Bin 0 -> 1789 bytes .../_windows_renderer.cpython-310.pyc | Bin 0 -> 2043 bytes .../rich/__pycache__/_wrap.cpython-310.pyc | Bin 0 -> 1551 bytes .../rich/__pycache__/abc.cpython-310.pyc | Bin 0 -> 1314 bytes .../rich/__pycache__/align.cpython-310.pyc | Bin 0 -> 7949 bytes .../rich/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 5953 bytes .../rich/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2983 bytes .../rich/__pycache__/box.cpython-310.pyc | Bin 0 -> 8403 bytes .../rich/__pycache__/cells.cpython-310.pyc | Bin 0 -> 3973 bytes .../rich/__pycache__/color.cpython-310.pyc | Bin 0 -> 17594 bytes .../__pycache__/color_triplet.cpython-310.pyc | Bin 0 -> 1437 bytes .../rich/__pycache__/columns.cpython-310.pyc | Bin 0 -> 6197 bytes .../rich/__pycache__/console.cpython-310.pyc | Bin 0 -> 82571 bytes .../__pycache__/constrain.cpython-310.pyc | Bin 0 -> 1754 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 6486 bytes .../rich/__pycache__/control.cpython-310.pyc | Bin 0 -> 8159 bytes .../default_styles.cpython-310.pyc | Bin 0 -> 6198 bytes .../rich/__pycache__/diagnose.cpython-310.pyc | Bin 0 -> 1221 bytes .../rich/__pycache__/emoji.cpython-310.pyc | Bin 0 -> 3267 bytes .../rich/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1527 bytes .../__pycache__/file_proxy.cpython-310.pyc | Bin 0 -> 2260 bytes .../rich/__pycache__/filesize.cpython-310.pyc | Bin 0 -> 2617 bytes .../__pycache__/highlighter.cpython-310.pyc | Bin 0 -> 8060 bytes .../rich/__pycache__/json.cpython-310.pyc | Bin 0 -> 4747 bytes .../rich/__pycache__/jupyter.cpython-310.pyc | Bin 0 -> 3999 bytes .../rich/__pycache__/layout.cpython-310.pyc | Bin 0 -> 14647 bytes .../rich/__pycache__/live.cpython-310.pyc | Bin 0 -> 11624 bytes .../__pycache__/live_render.cpython-310.pyc | Bin 0 -> 3402 bytes .../rich/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9908 bytes .../rich/__pycache__/markup.cpython-310.pyc | Bin 0 -> 5941 bytes .../rich/__pycache__/measure.cpython-310.pyc | Bin 0 -> 5076 bytes .../rich/__pycache__/padding.cpython-310.pyc | Bin 0 -> 4482 bytes .../rich/__pycache__/pager.cpython-310.pyc | Bin 0 -> 1476 bytes .../rich/__pycache__/palette.cpython-310.pyc | Bin 0 -> 3708 bytes .../rich/__pycache__/panel.cpython-310.pyc | Bin 0 -> 7428 bytes .../rich/__pycache__/pretty.cpython-310.pyc | Bin 0 -> 27920 bytes .../rich/__pycache__/progress.cpython-310.pyc | Bin 0 -> 54028 bytes .../__pycache__/progress_bar.cpython-310.pyc | Bin 0 -> 6911 bytes .../rich/__pycache__/prompt.cpython-310.pyc | Bin 0 -> 11299 bytes .../rich/__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1352 bytes .../rich/__pycache__/region.cpython-310.pyc | Bin 0 -> 527 bytes .../rich/__pycache__/repr.cpython-310.pyc | Bin 0 -> 4100 bytes .../rich/__pycache__/rule.cpython-310.pyc | Bin 0 -> 4309 bytes .../rich/__pycache__/scope.cpython-310.pyc | Bin 0 -> 2989 bytes .../rich/__pycache__/screen.cpython-310.pyc | Bin 0 -> 1879 bytes .../rich/__pycache__/segment.cpython-310.pyc | Bin 0 -> 20757 bytes .../rich/__pycache__/spinner.cpython-310.pyc | Bin 0 -> 4417 bytes .../rich/__pycache__/status.cpython-310.pyc | Bin 0 -> 4593 bytes .../rich/__pycache__/style.cpython-310.pyc | Bin 0 -> 20842 bytes .../rich/__pycache__/styled.cpython-310.pyc | Bin 0 -> 1763 bytes .../rich/__pycache__/syntax.cpython-310.pyc | Bin 0 -> 25677 bytes .../rich/__pycache__/table.cpython-310.pyc | Bin 0 -> 29942 bytes .../terminal_theme.cpython-310.pyc | Bin 0 -> 3016 bytes .../rich/__pycache__/text.cpython-310.pyc | Bin 0 -> 40191 bytes .../rich/__pycache__/theme.cpython-310.pyc | Bin 0 -> 4700 bytes .../rich/__pycache__/themes.cpython-310.pyc | Bin 0 -> 293 bytes .../__pycache__/traceback.cpython-310.pyc | Bin 0 -> 19625 bytes .../rich/__pycache__/tree.cpython-310.pyc | Bin 0 -> 7334 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 ++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_export_format.py | 78 + .../pip/_vendor/rich/_extension.py | 10 + .../pip/_vendor/rich/_inspect.py | 270 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_null_file.py | 83 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 482 + .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_win32_console.py | 662 + .../pip/_vendor/rich/_windows.py | 72 + .../pip/_vendor/rich/_windows_renderer.py | 56 + .../site-packages/pip/_vendor/rich/_wrap.py | 56 + .../Lib/site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 311 + .../site-packages/pip/_vendor/rich/ansi.py | 237 + .../Lib/site-packages/pip/_vendor/rich/bar.py | 94 + .../Lib/site-packages/pip/_vendor/rich/box.py | 517 + .../site-packages/pip/_vendor/rich/cells.py | 154 + .../site-packages/pip/_vendor/rich/color.py | 618 + .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2612 ++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 225 + .../pip/_vendor/rich/default_styles.py | 188 + .../pip/_vendor/rich/diagnose.py | 37 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 54 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 232 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 101 + .../site-packages/pip/_vendor/rich/layout.py | 443 + .../site-packages/pip/_vendor/rich/live.py | 373 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 289 + .../site-packages/pip/_vendor/rich/markup.py | 246 + .../site-packages/pip/_vendor/rich/measure.py | 151 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 308 + .../site-packages/pip/_vendor/rich/pretty.py | 1029 ++ .../pip/_vendor/rich/progress.py | 1707 +++ .../pip/_vendor/rich/progress_bar.py | 224 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 149 + .../site-packages/pip/_vendor/rich/rule.py | 134 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 739 ++ .../site-packages/pip/_vendor/rich/spinner.py | 136 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 773 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 945 ++ .../site-packages/pip/_vendor/rich/table.py | 1002 ++ .../pip/_vendor/rich/terminal_theme.py | 153 + .../site-packages/pip/_vendor/rich/text.py | 1311 ++ .../site-packages/pip/_vendor/rich/theme.py | 112 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 677 + .../site-packages/pip/_vendor/rich/tree.py | 251 + .../Lib/site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 519 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16472 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 2614 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 1227 bytes .../__pycache__/after.cpython-310.pyc | Bin 0 -> 1231 bytes .../__pycache__/before.cpython-310.pyc | Bin 0 -> 1109 bytes .../__pycache__/before_sleep.cpython-310.pyc | Bin 0 -> 1411 bytes .../tenacity/__pycache__/nap.cpython-310.pyc | Bin 0 -> 1199 bytes .../__pycache__/retry.cpython-310.pyc | Bin 0 -> 9361 bytes .../tenacity/__pycache__/stop.cpython-310.pyc | Bin 0 -> 4017 bytes .../__pycache__/tornadoweb.cpython-310.pyc | Bin 0 -> 1764 bytes .../tenacity/__pycache__/wait.cpython-310.pyc | Bin 0 -> 9360 bytes .../pip/_vendor/tenacity/_asyncio.py | 92 + .../pip/_vendor/tenacity/_utils.py | 68 + .../pip/_vendor/tenacity/after.py | 46 + .../pip/_vendor/tenacity/before.py | 41 + .../pip/_vendor/tenacity/before_sleep.py | 58 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 240 + .../pip/_vendor/tenacity/stop.py | 96 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 232 + .../pip/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 355 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 17069 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2901 bytes .../tomli/__pycache__/_types.cpython-310.pyc | Bin 0 -> 325 bytes .../pip/_vendor/tomli/_parser.py | 691 + .../site-packages/pip/_vendor/tomli/_re.py | 107 + .../site-packages/pip/_vendor/tomli/_types.py | 10 + .../pip/_vendor/typing_extensions.py | 2209 ++++ .../pip/_vendor/urllib3/__init__.py | 102 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2509 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 10863 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 214 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13635 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 25394 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 10994 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8183 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2750 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15219 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5626 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 22500 bytes .../pip/_vendor/urllib3/_collections.py | 337 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 567 + .../pip/_vendor/urllib3/connectionpool.py | 1110 ++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1379 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8196 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3623 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15809 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 21941 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5601 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 216 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10712 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9099 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 518 + .../urllib3/contrib/securetransport.py | 921 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 200 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27654 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 210 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1310 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1076 ++ .../pip/_vendor/urllib3/poolmanager.py | 537 + .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 879 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1109 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3437 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1342 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1064 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3371 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2357 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 16147 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11309 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3261 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7399 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 8933 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10702 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3093 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 137 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 + .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 159 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 435 + .../pip/_vendor/urllib3/util/wait.py | 152 + .../Lib/site-packages/pip/_vendor/vendor.txt | 23 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9746 bytes .../__pycache__/labels.cpython-310.pyc | Bin 0 -> 5236 bytes .../__pycache__/mklabels.cpython-310.pyc | Bin 0 -> 1941 bytes .../__pycache__/tests.cpython-310.pyc | Bin 0 -> 5043 bytes .../x_user_defined.cpython-310.pyc | Bin 0 -> 2592 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + gestao_raul/Lib/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3296 +++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 100561 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 20254 bytes .../_vendor/__pycache__/zipp.cpython-310.pyc | Bin 0 -> 10236 bytes .../pkg_resources/_vendor/appdirs.py | 608 + .../_vendor/importlib_resources/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 648 bytes .../__pycache__/_adapters.cpython-310.pyc | Bin 0 -> 7356 bytes .../__pycache__/_common.cpython-310.pyc | Bin 0 -> 2646 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 3506 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 893 bytes .../__pycache__/_legacy.cpython-310.pyc | Bin 0 -> 4229 bytes .../__pycache__/abc.cpython-310.pyc | Bin 0 -> 5382 bytes .../__pycache__/readers.cpython-310.pyc | Bin 0 -> 5466 bytes .../__pycache__/simple.cpython-310.pyc | Bin 0 -> 4730 bytes .../_vendor/importlib_resources/_adapters.py | 170 + .../_vendor/importlib_resources/_common.py | 104 + .../_vendor/importlib_resources/_compat.py | 98 + .../_vendor/importlib_resources/_itertools.py | 35 + .../_vendor/importlib_resources/_legacy.py | 121 + .../_vendor/importlib_resources/abc.py | 137 + .../_vendor/importlib_resources/readers.py | 122 + .../_vendor/importlib_resources/simple.py | 116 + .../pkg_resources/_vendor/jaraco/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 200 bytes .../__pycache__/context.cpython-310.pyc | Bin 0 -> 6332 bytes .../__pycache__/functools.cpython-310.pyc | Bin 0 -> 15624 bytes .../pkg_resources/_vendor/jaraco/context.py | 213 + .../pkg_resources/_vendor/jaraco/functools.py | 525 + .../_vendor/jaraco/text/__init__.py | 599 + .../text/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 19669 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 275 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 123048 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 20336 bytes .../_vendor/more_itertools/more.py | 4316 +++++++ .../_vendor/more_itertools/recipes.py | 698 + .../_vendor/packaging/__about__.py | 26 + .../_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 600 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 456 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7310 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4622 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2715 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9306 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3994 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21537 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12200 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3585 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12935 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 61 + .../_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 802 ++ .../pkg_resources/_vendor/packaging/tags.py | 487 + .../pkg_resources/_vendor/packaging/utils.py | 136 + .../_vendor/packaging/version.py | 504 + .../_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7127 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7189 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10115 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 176432 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9073 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 35350 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24791 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12107 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 10068 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8615 bytes .../_vendor/pyparsing/actions.py | 207 + .../pkg_resources/_vendor/pyparsing/common.py | 424 + .../pkg_resources/_vendor/pyparsing/core.py | 5814 +++++++++ .../_vendor/pyparsing/diagram/__init__.py | 642 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16567 bytes .../_vendor/pyparsing/exceptions.py | 267 + .../_vendor/pyparsing/helpers.py | 1088 ++ .../_vendor/pyparsing/results.py | 760 ++ .../_vendor/pyparsing/testing.py | 331 + .../_vendor/pyparsing/unicode.py | 352 + .../pkg_resources/_vendor/pyparsing/util.py | 235 + .../pkg_resources/_vendor/zipp.py | 329 + .../pkg_resources/extern/__init__.py | 76 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2946 bytes .../setuptools-65.5.0.dist-info/INSTALLER | 1 + .../setuptools-65.5.0.dist-info/LICENSE | 19 + .../setuptools-65.5.0.dist-info/METADATA | 144 + .../setuptools-65.5.0.dist-info/RECORD | 466 + .../setuptools-65.5.0.dist-info/REQUESTED | 0 .../setuptools-65.5.0.dist-info/WHEEL | 5 + .../entry_points.txt | 57 + .../setuptools-65.5.0.dist-info/top_level.txt | 3 + .../Lib/site-packages/setuptools/__init__.py | 247 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9504 bytes .../_deprecation_warning.cpython-310.pyc | Bin 0 -> 554 bytes .../__pycache__/_entry_points.cpython-310.pyc | Bin 0 -> 3017 bytes .../__pycache__/_imp.cpython-310.pyc | Bin 0 -> 2080 bytes .../__pycache__/_importlib.cpython-310.pyc | Bin 0 -> 1350 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 918 bytes .../__pycache__/_path.cpython-310.pyc | Bin 0 -> 1093 bytes .../__pycache__/_reqs.cpython-310.pyc | Bin 0 -> 833 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6184 bytes .../__pycache__/build_meta.cpython-310.pyc | Bin 0 -> 18092 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 861 bytes .../__pycache__/depends.cpython-310.pyc | Bin 0 -> 5300 bytes .../__pycache__/discovery.cpython-310.pyc | Bin 0 -> 20591 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 38380 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 2488 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 5901 bytes .../__pycache__/glob.cpython-310.pyc | Bin 0 -> 3739 bytes .../__pycache__/installer.cpython-310.pyc | Bin 0 -> 2985 bytes .../__pycache__/launch.cpython-310.pyc | Bin 0 -> 911 bytes .../__pycache__/logging.cpython-310.pyc | Bin 0 -> 1248 bytes .../__pycache__/monkey.cpython-310.pyc | Bin 0 -> 4444 bytes .../__pycache__/msvc.cpython-310.pyc | Bin 0 -> 40627 bytes .../__pycache__/namespaces.cpython-310.pyc | Bin 0 -> 3622 bytes .../__pycache__/package_index.cpython-310.pyc | Bin 0 -> 32689 bytes .../__pycache__/py34compat.cpython-310.pyc | Bin 0 -> 486 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 15762 bytes .../__pycache__/unicode_utils.cpython-310.pyc | Bin 0 -> 1116 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 328 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 7596 bytes .../windows_support.cpython-310.pyc | Bin 0 -> 1034 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 24 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 562 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 2063 bytes .../__pycache__/_functools.cpython-310.pyc | Bin 0 -> 693 bytes .../__pycache__/_macos_compat.cpython-310.pyc | Bin 0 -> 457 bytes .../__pycache__/_msvccompiler.cpython-310.pyc | Bin 0 -> 13657 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6561 bytes .../__pycache__/bcppcompiler.cpython-310.pyc | Bin 0 -> 6817 bytes .../__pycache__/ccompiler.cpython-310.pyc | Bin 0 -> 34183 bytes .../__pycache__/cmd.cpython-310.pyc | Bin 0 -> 13992 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3582 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 7211 bytes .../cygwinccompiler.cpython-310.pyc | Bin 0 -> 8384 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 256 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 2773 bytes .../__pycache__/dir_util.cpython-310.pyc | Bin 0 -> 6115 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 34581 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 4998 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 7026 bytes .../__pycache__/fancy_getopt.cpython-310.pyc | Bin 0 -> 10695 bytes .../__pycache__/file_util.cpython-310.pyc | Bin 0 -> 5989 bytes .../__pycache__/filelist.cpython-310.pyc | Bin 0 -> 10817 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2313 bytes .../__pycache__/msvc9compiler.cpython-310.pyc | Bin 0 -> 17787 bytes .../__pycache__/msvccompiler.cpython-310.pyc | Bin 0 -> 15019 bytes .../__pycache__/py38compat.cpython-310.pyc | Bin 0 -> 437 bytes .../__pycache__/py39compat.cpython-310.pyc | Bin 0 -> 738 bytes .../__pycache__/spawn.cpython-310.pyc | Bin 0 -> 2878 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 13172 bytes .../__pycache__/text_file.cpython-310.pyc | Bin 0 -> 8235 bytes .../__pycache__/unixccompiler.cpython-310.pyc | Bin 0 -> 10957 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 13507 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 7839 bytes .../versionpredicate.cpython-310.pyc | Bin 0 -> 5331 bytes .../setuptools/_distutils/_collections.py | 56 + .../setuptools/_distutils/_functools.py | 20 + .../setuptools/_distutils/_macos_compat.py | 12 + .../setuptools/_distutils/_msvccompiler.py | 572 + .../setuptools/_distutils/archive_util.py | 280 + .../setuptools/_distutils/bcppcompiler.py | 408 + .../setuptools/_distutils/ccompiler.py | 1220 ++ .../setuptools/_distutils/cmd.py | 436 + .../setuptools/_distutils/command/__init__.py | 25 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 520 bytes .../_framework_compat.cpython-310.pyc | Bin 0 -> 1927 bytes .../command/__pycache__/bdist.cpython-310.pyc | Bin 0 -> 3985 bytes .../__pycache__/bdist_dumb.cpython-310.pyc | Bin 0 -> 3657 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 12347 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 3911 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 4877 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 16315 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 9813 bytes .../__pycache__/build_scripts.cpython-310.pyc | Bin 0 -> 4604 bytes .../command/__pycache__/check.cpython-310.pyc | Bin 0 -> 4664 bytes .../command/__pycache__/clean.cpython-310.pyc | Bin 0 -> 2136 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 10368 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 17212 bytes .../__pycache__/install_data.cpython-310.pyc | Bin 0 -> 2357 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 3322 bytes .../install_headers.cpython-310.pyc | Bin 0 -> 1772 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5200 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2205 bytes .../__pycache__/py37compat.cpython-310.pyc | Bin 0 -> 1044 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 8559 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 14514 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 5367 bytes .../_distutils/command/_framework_compat.py | 55 + .../setuptools/_distutils/command/bdist.py | 157 + .../_distutils/command/bdist_dumb.py | 144 + .../_distutils/command/bdist_rpm.py | 615 + .../setuptools/_distutils/command/build.py | 153 + .../_distutils/command/build_clib.py | 208 + .../_distutils/command/build_ext.py | 787 ++ .../setuptools/_distutils/command/build_py.py | 407 + .../_distutils/command/build_scripts.py | 173 + .../setuptools/_distutils/command/check.py | 151 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 377 + .../setuptools/_distutils/command/install.py | 814 ++ .../_distutils/command/install_data.py | 84 + .../_distutils/command/install_egg_info.py | 91 + .../_distutils/command/install_headers.py | 45 + .../_distutils/command/install_lib.py | 238 + .../_distutils/command/install_scripts.py | 61 + .../_distutils/command/py37compat.py | 31 + .../setuptools/_distutils/command/register.py | 319 + .../setuptools/_distutils/command/sdist.py | 531 + .../setuptools/_distutils/command/upload.py | 205 + .../setuptools/_distutils/config.py | 139 + .../setuptools/_distutils/core.py | 291 + .../setuptools/_distutils/cygwinccompiler.py | 364 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 96 + .../setuptools/_distutils/dir_util.py | 243 + .../setuptools/_distutils/dist.py | 1286 ++ .../setuptools/_distutils/errors.py | 127 + .../setuptools/_distutils/extension.py | 248 + .../setuptools/_distutils/fancy_getopt.py | 470 + .../setuptools/_distutils/file_util.py | 249 + .../setuptools/_distutils/filelist.py | 371 + .../setuptools/_distutils/log.py | 80 + .../setuptools/_distutils/msvc9compiler.py | 832 ++ .../setuptools/_distutils/msvccompiler.py | 695 + .../setuptools/_distutils/py38compat.py | 8 + .../setuptools/_distutils/py39compat.py | 22 + .../setuptools/_distutils/spawn.py | 109 + .../setuptools/_distutils/sysconfig.py | 558 + .../setuptools/_distutils/text_file.py | 287 + .../setuptools/_distutils/unixccompiler.py | 401 + .../setuptools/_distutils/util.py | 513 + .../setuptools/_distutils/version.py | 358 + .../setuptools/_distutils/versionpredicate.py | 175 + .../site-packages/setuptools/_entry_points.py | 86 + .../Lib/site-packages/setuptools/_imp.py | 82 + .../site-packages/setuptools/_importlib.py | 47 + .../site-packages/setuptools/_itertools.py | 23 + .../Lib/site-packages/setuptools/_path.py | 29 + .../Lib/site-packages/setuptools/_reqs.py | 19 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../__pycache__/ordered_set.cpython-310.pyc | Bin 0 -> 16326 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 66584 bytes .../_vendor/__pycache__/zipp.cpython-310.pyc | Bin 0 -> 10233 bytes .../_vendor/importlib_metadata/__init__.py | 1047 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 37423 bytes .../__pycache__/_adapters.cpython-310.pyc | Bin 0 -> 2410 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 1585 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 2074 bytes .../__pycache__/_functools.cpython-310.pyc | Bin 0 -> 3175 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 2056 bytes .../__pycache__/_meta.cpython-310.pyc | Bin 0 -> 2364 bytes .../__pycache__/_text.cpython-310.pyc | Bin 0 -> 3108 bytes .../_vendor/importlib_metadata/_adapters.py | 68 + .../importlib_metadata/_collections.py | 30 + .../_vendor/importlib_metadata/_compat.py | 71 + .../_vendor/importlib_metadata/_functools.py | 104 + .../_vendor/importlib_metadata/_itertools.py | 73 + .../_vendor/importlib_metadata/_meta.py | 48 + .../_vendor/importlib_metadata/_text.py | 99 + .../_vendor/importlib_resources/__init__.py | 36 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 645 bytes .../__pycache__/_adapters.cpython-310.pyc | Bin 0 -> 7353 bytes .../__pycache__/_common.cpython-310.pyc | Bin 0 -> 2643 bytes .../__pycache__/_compat.cpython-310.pyc | Bin 0 -> 3503 bytes .../__pycache__/_itertools.cpython-310.pyc | Bin 0 -> 890 bytes .../__pycache__/_legacy.cpython-310.pyc | Bin 0 -> 4226 bytes .../__pycache__/abc.cpython-310.pyc | Bin 0 -> 5379 bytes .../__pycache__/readers.cpython-310.pyc | Bin 0 -> 5463 bytes .../__pycache__/simple.cpython-310.pyc | Bin 0 -> 4727 bytes .../_vendor/importlib_resources/_adapters.py | 170 + .../_vendor/importlib_resources/_common.py | 104 + .../_vendor/importlib_resources/_compat.py | 98 + .../_vendor/importlib_resources/_itertools.py | 35 + .../_vendor/importlib_resources/_legacy.py | 121 + .../_vendor/importlib_resources/abc.py | 137 + .../_vendor/importlib_resources/readers.py | 122 + .../_vendor/importlib_resources/simple.py | 116 + .../setuptools/_vendor/jaraco/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 197 bytes .../__pycache__/context.cpython-310.pyc | Bin 0 -> 6329 bytes .../__pycache__/functools.cpython-310.pyc | Bin 0 -> 15615 bytes .../setuptools/_vendor/jaraco/context.py | 213 + .../setuptools/_vendor/jaraco/functools.py | 525 + .../_vendor/jaraco/text/__init__.py | 599 + .../text/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 19657 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 271 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 109992 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 17971 bytes .../setuptools/_vendor/more_itertools/more.py | 3824 ++++++ .../_vendor/more_itertools/recipes.py | 620 + .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 26 + .../setuptools/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 597 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 453 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7307 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4619 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2712 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9300 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3988 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21534 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12197 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3582 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12932 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 61 + .../setuptools/_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 802 ++ .../setuptools/_vendor/packaging/tags.py | 487 + .../setuptools/_vendor/packaging/utils.py | 136 + .../setuptools/_vendor/packaging/version.py | 504 + .../setuptools/_vendor/pyparsing/__init__.py | 331 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7124 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7186 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10112 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 176429 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9070 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 35347 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24788 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12104 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 10065 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8612 bytes .../setuptools/_vendor/pyparsing/actions.py | 207 + .../setuptools/_vendor/pyparsing/common.py | 424 + .../setuptools/_vendor/pyparsing/core.py | 5814 +++++++++ .../_vendor/pyparsing/diagram/__init__.py | 642 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16564 bytes .../_vendor/pyparsing/exceptions.py | 267 + .../setuptools/_vendor/pyparsing/helpers.py | 1088 ++ .../setuptools/_vendor/pyparsing/results.py | 760 ++ .../setuptools/_vendor/pyparsing/testing.py | 331 + .../setuptools/_vendor/pyparsing/unicode.py | 352 + .../setuptools/_vendor/pyparsing/util.py | 235 + .../setuptools/_vendor/tomli/__init__.py | 11 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 362 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 17076 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2908 bytes .../tomli/__pycache__/_types.cpython-310.pyc | Bin 0 -> 332 bytes .../setuptools/_vendor/tomli/_parser.py | 691 + .../setuptools/_vendor/tomli/_re.py | 107 + .../setuptools/_vendor/tomli/_types.py | 10 + .../setuptools/_vendor/typing_extensions.py | 2296 ++++ .../site-packages/setuptools/_vendor/zipp.py | 329 + .../site-packages/setuptools/archive_util.py | 213 + .../site-packages/setuptools/build_meta.py | 511 + .../Lib/site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli-arm64.exe | Bin 0 -> 137216 bytes .../Lib/site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 448 bytes .../command/__pycache__/alias.cpython-310.pyc | Bin 0 -> 2381 bytes .../__pycache__/bdist_egg.cpython-310.pyc | Bin 0 -> 13131 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 1594 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 6091 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 2468 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 12078 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 13948 bytes .../__pycache__/develop.cpython-310.pyc | Bin 0 -> 6157 bytes .../__pycache__/dist_info.cpython-310.pyc | Bin 0 -> 4743 bytes .../__pycache__/easy_install.cpython-310.pyc | Bin 0 -> 64426 bytes .../editable_wheel.cpython-310.pyc | Bin 0 -> 31921 bytes .../__pycache__/egg_info.cpython-310.pyc | Bin 0 -> 23288 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 4290 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 2464 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 4176 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2458 bytes .../__pycache__/py36compat.cpython-310.pyc | Bin 0 -> 4541 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 845 bytes .../__pycache__/rotate.cpython-310.pyc | Bin 0 -> 2512 bytes .../__pycache__/saveopts.cpython-310.pyc | Bin 0 -> 931 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 7857 bytes .../__pycache__/setopt.cpython-310.pyc | Bin 0 -> 4693 bytes .../command/__pycache__/test.cpython-310.pyc | Bin 0 -> 8194 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 818 bytes .../__pycache__/upload_docs.cpython-310.pyc | Bin 0 -> 6405 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 457 + .../setuptools/command/bdist_rpm.py | 40 + .../site-packages/setuptools/command/build.py | 146 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 383 + .../setuptools/command/build_py.py | 368 + .../setuptools/command/develop.py | 193 + .../setuptools/command/dist_info.py | 142 + .../setuptools/command/easy_install.py | 2312 ++++ .../setuptools/command/editable_wheel.py | 844 ++ .../setuptools/command/egg_info.py | 763 ++ .../setuptools/command/install.py | 139 + .../setuptools/command/install_egg_info.py | 63 + .../setuptools/command/install_lib.py | 122 + .../setuptools/command/install_scripts.py | 70 + .../setuptools/command/launcher manifest.xml | 15 + .../setuptools/command/py36compat.py | 134 + .../setuptools/command/register.py | 18 + .../setuptools/command/rotate.py | 64 + .../setuptools/command/saveopts.py | 22 + .../site-packages/setuptools/command/sdist.py | 210 + .../setuptools/command/setopt.py | 149 + .../site-packages/setuptools/command/test.py | 251 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 213 + .../setuptools/config/__init__.py | 35 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1447 bytes .../_apply_pyprojecttoml.cpython-310.pyc | Bin 0 -> 13530 bytes .../config/__pycache__/expand.cpython-310.pyc | Bin 0 -> 17589 bytes .../__pycache__/pyprojecttoml.cpython-310.pyc | Bin 0 -> 16327 bytes .../__pycache__/setupcfg.cpython-310.pyc | Bin 0 -> 22059 bytes .../setuptools/config/_apply_pyprojecttoml.py | 377 + .../config/_validate_pyproject/__init__.py | 34 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1522 bytes .../error_reporting.cpython-310.pyc | Bin 0 -> 11577 bytes .../extra_validations.cpython-310.pyc | Bin 0 -> 1417 bytes .../fastjsonschema_exceptions.cpython-310.pyc | Bin 0 -> 2454 bytes ...fastjsonschema_validations.cpython-310.pyc | Bin 0 -> 68721 bytes .../__pycache__/formats.cpython-310.pyc | Bin 0 -> 8588 bytes .../_validate_pyproject/error_reporting.py | 318 + .../_validate_pyproject/extra_validations.py | 36 + .../fastjsonschema_exceptions.py | 51 + .../fastjsonschema_validations.py | 1035 ++ .../config/_validate_pyproject/formats.py | 259 + .../site-packages/setuptools/config/expand.py | 462 + .../setuptools/config/pyprojecttoml.py | 493 + .../setuptools/config/setupcfg.py | 762 ++ .../Lib/site-packages/setuptools/dep_util.py | 25 + .../Lib/site-packages/setuptools/depends.py | 176 + .../Lib/site-packages/setuptools/discovery.py | 600 + .../Lib/site-packages/setuptools/dist.py | 1222 ++ .../Lib/site-packages/setuptools/errors.py | 58 + .../Lib/site-packages/setuptools/extension.py | 148 + .../setuptools/extern/__init__.py | 76 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3021 bytes .../Lib/site-packages/setuptools/glob.py | 167 + .../Lib/site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui-arm64.exe | Bin 0 -> 137728 bytes .../Lib/site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../Lib/site-packages/setuptools/installer.py | 104 + .../Lib/site-packages/setuptools/launch.py | 36 + .../Lib/site-packages/setuptools/logging.py | 36 + .../Lib/site-packages/setuptools/monkey.py | 165 + .../Lib/site-packages/setuptools/msvc.py | 1703 +++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1126 ++ .../site-packages/setuptools/py34compat.py | 13 + .../Lib/site-packages/setuptools/sandbox.py | 530 + .../setuptools/script (dev).tmpl | 6 + .../Lib/site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../Lib/site-packages/setuptools/version.py | 6 + .../Lib/site-packages/setuptools/wheel.py | 222 + .../setuptools/windows_support.py | 29 + .../sqlparse-0.5.2.dist-info/INSTALLER | 1 + .../sqlparse-0.5.2.dist-info/METADATA | 113 + .../sqlparse-0.5.2.dist-info/RECORD | 50 + .../sqlparse-0.5.2.dist-info/WHEEL | 4 + .../sqlparse-0.5.2.dist-info/entry_points.txt | 2 + .../sqlparse-0.5.2.dist-info/licenses/AUTHORS | 86 + .../sqlparse-0.5.2.dist-info/licenses/LICENSE | 25 + .../Lib/site-packages/sqlparse/__init__.py | 72 + .../Lib/site-packages/sqlparse/__main__.py | 22 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2512 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 584 bytes .../sqlparse/__pycache__/cli.cpython-310.pyc | Bin 0 -> 4783 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 453 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 4235 bytes .../__pycache__/keywords.cpython-310.pyc | Bin 0 -> 24855 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 4588 bytes .../sqlparse/__pycache__/sql.cpython-310.pyc | Bin 0 -> 22048 bytes .../__pycache__/tokens.cpython-310.pyc | Bin 0 -> 1368 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3417 bytes gestao_raul/Lib/site-packages/sqlparse/cli.py | 203 + .../site-packages/sqlparse/engine/__init__.py | 16 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 411 bytes .../__pycache__/filter_stack.cpython-310.pyc | Bin 0 -> 1377 bytes .../__pycache__/grouping.cpython-310.pyc | Bin 0 -> 14092 bytes .../statement_splitter.cpython-310.pyc | Bin 0 -> 2382 bytes .../sqlparse/engine/filter_stack.py | 47 + .../site-packages/sqlparse/engine/grouping.py | 486 + .../sqlparse/engine/statement_splitter.py | 115 + .../Lib/site-packages/sqlparse/exceptions.py | 12 + .../sqlparse/filters/__init__.py | 42 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 991 bytes .../aligned_indent.cpython-310.pyc | Bin 0 -> 4884 bytes .../__pycache__/others.cpython-310.pyc | Bin 0 -> 5781 bytes .../__pycache__/output.cpython-310.pyc | Bin 0 -> 2755 bytes .../__pycache__/reindent.cpython-310.pyc | Bin 0 -> 8132 bytes .../__pycache__/right_margin.cpython-310.pyc | Bin 0 -> 1371 bytes .../__pycache__/tokens.cpython-310.pyc | Bin 0 -> 2080 bytes .../sqlparse/filters/aligned_indent.py | 135 + .../site-packages/sqlparse/filters/others.py | 172 + .../site-packages/sqlparse/filters/output.py | 122 + .../sqlparse/filters/reindent.py | 247 + .../sqlparse/filters/right_margin.py | 48 + .../site-packages/sqlparse/filters/tokens.py | 59 + .../Lib/site-packages/sqlparse/formatter.py | 204 + .../Lib/site-packages/sqlparse/keywords.py | 1002 ++ .../Lib/site-packages/sqlparse/lexer.py | 161 + gestao_raul/Lib/site-packages/sqlparse/sql.py | 664 + .../Lib/site-packages/sqlparse/tokens.py | 71 + .../Lib/site-packages/sqlparse/utils.py | 124 + .../INSTALLER | 1 + .../LICENSE | 279 + .../METADATA | 67 + .../typing_extensions-4.12.2.dist-info/RECORD | 7 + .../typing_extensions-4.12.2.dist-info/WHEEL | 4 + .../Lib/site-packages/typing_extensions.py | 3641 ++++++ .../tzdata-2024.2.dist-info/INSTALLER | 1 + .../tzdata-2024.2.dist-info/LICENSE | 15 + .../tzdata-2024.2.dist-info/LICENSE_APACHE | 201 + .../tzdata-2024.2.dist-info/METADATA | 33 + .../tzdata-2024.2.dist-info/RECORD | 655 + .../tzdata-2024.2.dist-info/WHEEL | 6 + .../tzdata-2024.2.dist-info/top_level.txt | 1 + .../Lib/site-packages/tzdata/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 227 bytes .../tzdata/zoneinfo/Africa/Abidjan | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Accra | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Addis_Ababa | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Algiers | Bin 0 -> 470 bytes .../tzdata/zoneinfo/Africa/Asmara | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Asmera | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Bamako | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Bangui | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Banjul | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Bissau | Bin 0 -> 149 bytes .../tzdata/zoneinfo/Africa/Blantyre | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Brazzaville | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Bujumbura | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Cairo | Bin 0 -> 1309 bytes .../tzdata/zoneinfo/Africa/Casablanca | Bin 0 -> 1919 bytes .../tzdata/zoneinfo/Africa/Ceuta | Bin 0 -> 562 bytes .../tzdata/zoneinfo/Africa/Conakry | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Dakar | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Dar_es_Salaam | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Djibouti | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Douala | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/El_Aaiun | Bin 0 -> 1830 bytes .../tzdata/zoneinfo/Africa/Freetown | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Gaborone | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Harare | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Johannesburg | Bin 0 -> 190 bytes .../site-packages/tzdata/zoneinfo/Africa/Juba | Bin 0 -> 458 bytes .../tzdata/zoneinfo/Africa/Kampala | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Khartoum | Bin 0 -> 458 bytes .../tzdata/zoneinfo/Africa/Kigali | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Kinshasa | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Lagos | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Libreville | Bin 0 -> 180 bytes .../site-packages/tzdata/zoneinfo/Africa/Lome | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Luanda | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Lubumbashi | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Lusaka | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Malabo | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Maputo | Bin 0 -> 131 bytes .../tzdata/zoneinfo/Africa/Maseru | Bin 0 -> 190 bytes .../tzdata/zoneinfo/Africa/Mbabane | Bin 0 -> 190 bytes .../tzdata/zoneinfo/Africa/Mogadishu | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Monrovia | Bin 0 -> 164 bytes .../tzdata/zoneinfo/Africa/Nairobi | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Africa/Ndjamena | Bin 0 -> 160 bytes .../tzdata/zoneinfo/Africa/Niamey | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Nouakchott | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Ouagadougou | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Porto-Novo | Bin 0 -> 180 bytes .../tzdata/zoneinfo/Africa/Sao_Tome | Bin 0 -> 173 bytes .../tzdata/zoneinfo/Africa/Timbuktu | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Africa/Tripoli | Bin 0 -> 431 bytes .../tzdata/zoneinfo/Africa/Tunis | Bin 0 -> 449 bytes .../tzdata/zoneinfo/Africa/Windhoek | Bin 0 -> 638 bytes .../tzdata/zoneinfo/Africa/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../tzdata/zoneinfo/America/Adak | Bin 0 -> 969 bytes .../tzdata/zoneinfo/America/Anchorage | Bin 0 -> 977 bytes .../tzdata/zoneinfo/America/Anguilla | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Antigua | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Araguaina | Bin 0 -> 592 bytes .../zoneinfo/America/Argentina/Buenos_Aires | Bin 0 -> 708 bytes .../zoneinfo/America/Argentina/Catamarca | Bin 0 -> 708 bytes .../zoneinfo/America/Argentina/ComodRivadavia | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Argentina/Cordoba | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Argentina/Jujuy | Bin 0 -> 690 bytes .../zoneinfo/America/Argentina/La_Rioja | Bin 0 -> 717 bytes .../tzdata/zoneinfo/America/Argentina/Mendoza | Bin 0 -> 708 bytes .../zoneinfo/America/Argentina/Rio_Gallegos | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Argentina/Salta | Bin 0 -> 690 bytes .../zoneinfo/America/Argentina/San_Juan | Bin 0 -> 717 bytes .../zoneinfo/America/Argentina/San_Luis | Bin 0 -> 717 bytes .../tzdata/zoneinfo/America/Argentina/Tucuman | Bin 0 -> 726 bytes .../tzdata/zoneinfo/America/Argentina/Ushuaia | Bin 0 -> 708 bytes .../zoneinfo/America/Argentina/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 205 bytes .../tzdata/zoneinfo/America/Aruba | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Asuncion | Bin 0 -> 884 bytes .../tzdata/zoneinfo/America/Atikokan | Bin 0 -> 149 bytes .../tzdata/zoneinfo/America/Atka | Bin 0 -> 969 bytes .../tzdata/zoneinfo/America/Bahia | Bin 0 -> 682 bytes .../tzdata/zoneinfo/America/Bahia_Banderas | Bin 0 -> 700 bytes .../tzdata/zoneinfo/America/Barbados | Bin 0 -> 278 bytes .../tzdata/zoneinfo/America/Belem | Bin 0 -> 394 bytes .../tzdata/zoneinfo/America/Belize | Bin 0 -> 1045 bytes .../tzdata/zoneinfo/America/Blanc-Sablon | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Boa_Vista | Bin 0 -> 430 bytes .../tzdata/zoneinfo/America/Bogota | Bin 0 -> 179 bytes .../tzdata/zoneinfo/America/Boise | Bin 0 -> 999 bytes .../tzdata/zoneinfo/America/Buenos_Aires | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Cambridge_Bay | Bin 0 -> 883 bytes .../tzdata/zoneinfo/America/Campo_Grande | Bin 0 -> 952 bytes .../tzdata/zoneinfo/America/Cancun | Bin 0 -> 538 bytes .../tzdata/zoneinfo/America/Caracas | Bin 0 -> 190 bytes .../tzdata/zoneinfo/America/Catamarca | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Cayenne | Bin 0 -> 151 bytes .../tzdata/zoneinfo/America/Cayman | Bin 0 -> 149 bytes .../tzdata/zoneinfo/America/Chicago | Bin 0 -> 1754 bytes .../tzdata/zoneinfo/America/Chihuahua | Bin 0 -> 691 bytes .../tzdata/zoneinfo/America/Ciudad_Juarez | Bin 0 -> 718 bytes .../tzdata/zoneinfo/America/Coral_Harbour | Bin 0 -> 149 bytes .../tzdata/zoneinfo/America/Cordoba | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Costa_Rica | Bin 0 -> 232 bytes .../tzdata/zoneinfo/America/Creston | Bin 0 -> 240 bytes .../tzdata/zoneinfo/America/Cuiaba | Bin 0 -> 934 bytes .../tzdata/zoneinfo/America/Curacao | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Danmarkshavn | Bin 0 -> 447 bytes .../tzdata/zoneinfo/America/Dawson | Bin 0 -> 1029 bytes .../tzdata/zoneinfo/America/Dawson_Creek | Bin 0 -> 683 bytes .../tzdata/zoneinfo/America/Denver | Bin 0 -> 1042 bytes .../tzdata/zoneinfo/America/Detroit | Bin 0 -> 899 bytes .../tzdata/zoneinfo/America/Dominica | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Edmonton | Bin 0 -> 970 bytes .../tzdata/zoneinfo/America/Eirunepe | Bin 0 -> 436 bytes .../tzdata/zoneinfo/America/El_Salvador | Bin 0 -> 176 bytes .../tzdata/zoneinfo/America/Ensenada | Bin 0 -> 1079 bytes .../tzdata/zoneinfo/America/Fort_Nelson | Bin 0 -> 1448 bytes .../tzdata/zoneinfo/America/Fort_Wayne | Bin 0 -> 531 bytes .../tzdata/zoneinfo/America/Fortaleza | Bin 0 -> 484 bytes .../tzdata/zoneinfo/America/Glace_Bay | Bin 0 -> 880 bytes .../tzdata/zoneinfo/America/Godthab | Bin 0 -> 965 bytes .../tzdata/zoneinfo/America/Goose_Bay | Bin 0 -> 1580 bytes .../tzdata/zoneinfo/America/Grand_Turk | Bin 0 -> 853 bytes .../tzdata/zoneinfo/America/Grenada | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Guadeloupe | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Guatemala | Bin 0 -> 212 bytes .../tzdata/zoneinfo/America/Guayaquil | Bin 0 -> 179 bytes .../tzdata/zoneinfo/America/Guyana | Bin 0 -> 181 bytes .../tzdata/zoneinfo/America/Halifax | Bin 0 -> 1672 bytes .../tzdata/zoneinfo/America/Havana | Bin 0 -> 1117 bytes .../tzdata/zoneinfo/America/Hermosillo | Bin 0 -> 258 bytes .../zoneinfo/America/Indiana/Indianapolis | Bin 0 -> 531 bytes .../tzdata/zoneinfo/America/Indiana/Knox | Bin 0 -> 1016 bytes .../tzdata/zoneinfo/America/Indiana/Marengo | Bin 0 -> 567 bytes .../zoneinfo/America/Indiana/Petersburg | Bin 0 -> 683 bytes .../tzdata/zoneinfo/America/Indiana/Tell_City | Bin 0 -> 522 bytes .../tzdata/zoneinfo/America/Indiana/Vevay | Bin 0 -> 369 bytes .../tzdata/zoneinfo/America/Indiana/Vincennes | Bin 0 -> 558 bytes .../tzdata/zoneinfo/America/Indiana/Winamac | Bin 0 -> 603 bytes .../zoneinfo/America/Indiana/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 203 bytes .../tzdata/zoneinfo/America/Indianapolis | Bin 0 -> 531 bytes .../tzdata/zoneinfo/America/Inuvik | Bin 0 -> 817 bytes .../tzdata/zoneinfo/America/Iqaluit | Bin 0 -> 855 bytes .../tzdata/zoneinfo/America/Jamaica | Bin 0 -> 339 bytes .../tzdata/zoneinfo/America/Jujuy | Bin 0 -> 690 bytes .../tzdata/zoneinfo/America/Juneau | Bin 0 -> 966 bytes .../zoneinfo/America/Kentucky/Louisville | Bin 0 -> 1242 bytes .../zoneinfo/America/Kentucky/Monticello | Bin 0 -> 972 bytes .../zoneinfo/America/Kentucky/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 204 bytes .../tzdata/zoneinfo/America/Knox_IN | Bin 0 -> 1016 bytes .../tzdata/zoneinfo/America/Kralendijk | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/La_Paz | Bin 0 -> 170 bytes .../tzdata/zoneinfo/America/Lima | Bin 0 -> 283 bytes .../tzdata/zoneinfo/America/Los_Angeles | Bin 0 -> 1294 bytes .../tzdata/zoneinfo/America/Louisville | Bin 0 -> 1242 bytes .../tzdata/zoneinfo/America/Lower_Princes | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Maceio | Bin 0 -> 502 bytes .../tzdata/zoneinfo/America/Managua | Bin 0 -> 295 bytes .../tzdata/zoneinfo/America/Manaus | Bin 0 -> 412 bytes .../tzdata/zoneinfo/America/Marigot | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Martinique | Bin 0 -> 178 bytes .../tzdata/zoneinfo/America/Matamoros | Bin 0 -> 437 bytes .../tzdata/zoneinfo/America/Mazatlan | Bin 0 -> 690 bytes .../tzdata/zoneinfo/America/Mendoza | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Menominee | Bin 0 -> 917 bytes .../tzdata/zoneinfo/America/Merida | Bin 0 -> 654 bytes .../tzdata/zoneinfo/America/Metlakatla | Bin 0 -> 586 bytes .../tzdata/zoneinfo/America/Mexico_City | Bin 0 -> 773 bytes .../tzdata/zoneinfo/America/Miquelon | Bin 0 -> 550 bytes .../tzdata/zoneinfo/America/Moncton | Bin 0 -> 1493 bytes .../tzdata/zoneinfo/America/Monterrey | Bin 0 -> 709 bytes .../tzdata/zoneinfo/America/Montevideo | Bin 0 -> 969 bytes .../tzdata/zoneinfo/America/Montreal | Bin 0 -> 1717 bytes .../tzdata/zoneinfo/America/Montserrat | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Nassau | Bin 0 -> 1717 bytes .../tzdata/zoneinfo/America/New_York | Bin 0 -> 1744 bytes .../tzdata/zoneinfo/America/Nipigon | Bin 0 -> 1717 bytes .../tzdata/zoneinfo/America/Nome | Bin 0 -> 975 bytes .../tzdata/zoneinfo/America/Noronha | Bin 0 -> 484 bytes .../zoneinfo/America/North_Dakota/Beulah | Bin 0 -> 1043 bytes .../zoneinfo/America/North_Dakota/Center | Bin 0 -> 990 bytes .../zoneinfo/America/North_Dakota/New_Salem | Bin 0 -> 990 bytes .../zoneinfo/America/North_Dakota/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../tzdata/zoneinfo/America/Nuuk | Bin 0 -> 965 bytes .../tzdata/zoneinfo/America/Ojinaga | Bin 0 -> 718 bytes .../tzdata/zoneinfo/America/Panama | Bin 0 -> 149 bytes .../tzdata/zoneinfo/America/Pangnirtung | Bin 0 -> 855 bytes .../tzdata/zoneinfo/America/Paramaribo | Bin 0 -> 187 bytes .../tzdata/zoneinfo/America/Phoenix | Bin 0 -> 240 bytes .../tzdata/zoneinfo/America/Port-au-Prince | Bin 0 -> 565 bytes .../tzdata/zoneinfo/America/Port_of_Spain | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Porto_Acre | Bin 0 -> 418 bytes .../tzdata/zoneinfo/America/Porto_Velho | Bin 0 -> 394 bytes .../tzdata/zoneinfo/America/Puerto_Rico | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Punta_Arenas | Bin 0 -> 1218 bytes .../tzdata/zoneinfo/America/Rainy_River | Bin 0 -> 1294 bytes .../tzdata/zoneinfo/America/Rankin_Inlet | Bin 0 -> 807 bytes .../tzdata/zoneinfo/America/Recife | Bin 0 -> 484 bytes .../tzdata/zoneinfo/America/Regina | Bin 0 -> 638 bytes .../tzdata/zoneinfo/America/Resolute | Bin 0 -> 807 bytes .../tzdata/zoneinfo/America/Rio_Branco | Bin 0 -> 418 bytes .../tzdata/zoneinfo/America/Rosario | Bin 0 -> 708 bytes .../tzdata/zoneinfo/America/Santa_Isabel | Bin 0 -> 1079 bytes .../tzdata/zoneinfo/America/Santarem | Bin 0 -> 409 bytes .../tzdata/zoneinfo/America/Santiago | Bin 0 -> 1354 bytes .../tzdata/zoneinfo/America/Santo_Domingo | Bin 0 -> 317 bytes .../tzdata/zoneinfo/America/Sao_Paulo | Bin 0 -> 952 bytes .../tzdata/zoneinfo/America/Scoresbysund | Bin 0 -> 984 bytes .../tzdata/zoneinfo/America/Shiprock | Bin 0 -> 1042 bytes .../tzdata/zoneinfo/America/Sitka | Bin 0 -> 956 bytes .../tzdata/zoneinfo/America/St_Barthelemy | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/St_Johns | Bin 0 -> 1878 bytes .../tzdata/zoneinfo/America/St_Kitts | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/St_Lucia | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/St_Thomas | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/St_Vincent | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Swift_Current | Bin 0 -> 368 bytes .../tzdata/zoneinfo/America/Tegucigalpa | Bin 0 -> 194 bytes .../tzdata/zoneinfo/America/Thule | Bin 0 -> 455 bytes .../tzdata/zoneinfo/America/Thunder_Bay | Bin 0 -> 1717 bytes .../tzdata/zoneinfo/America/Tijuana | Bin 0 -> 1079 bytes .../tzdata/zoneinfo/America/Toronto | Bin 0 -> 1717 bytes .../tzdata/zoneinfo/America/Tortola | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Vancouver | Bin 0 -> 1330 bytes .../tzdata/zoneinfo/America/Virgin | Bin 0 -> 177 bytes .../tzdata/zoneinfo/America/Whitehorse | Bin 0 -> 1029 bytes .../tzdata/zoneinfo/America/Winnipeg | Bin 0 -> 1294 bytes .../tzdata/zoneinfo/America/Yakutat | Bin 0 -> 946 bytes .../tzdata/zoneinfo/America/Yellowknife | Bin 0 -> 970 bytes .../tzdata/zoneinfo/America/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../tzdata/zoneinfo/Antarctica/Casey | Bin 0 -> 287 bytes .../tzdata/zoneinfo/Antarctica/Davis | Bin 0 -> 197 bytes .../tzdata/zoneinfo/Antarctica/DumontDUrville | Bin 0 -> 154 bytes .../tzdata/zoneinfo/Antarctica/Macquarie | Bin 0 -> 976 bytes .../tzdata/zoneinfo/Antarctica/Mawson | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Antarctica/McMurdo | Bin 0 -> 1043 bytes .../tzdata/zoneinfo/Antarctica/Palmer | Bin 0 -> 887 bytes .../tzdata/zoneinfo/Antarctica/Rothera | Bin 0 -> 132 bytes .../tzdata/zoneinfo/Antarctica/South_Pole | Bin 0 -> 1043 bytes .../tzdata/zoneinfo/Antarctica/Syowa | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Antarctica/Troll | Bin 0 -> 158 bytes .../tzdata/zoneinfo/Antarctica/Vostok | Bin 0 -> 170 bytes .../tzdata/zoneinfo/Antarctica/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../tzdata/zoneinfo/Arctic/Longyearbyen | Bin 0 -> 705 bytes .../tzdata/zoneinfo/Arctic/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../site-packages/tzdata/zoneinfo/Asia/Aden | Bin 0 -> 133 bytes .../site-packages/tzdata/zoneinfo/Asia/Almaty | Bin 0 -> 618 bytes .../site-packages/tzdata/zoneinfo/Asia/Amman | Bin 0 -> 928 bytes .../site-packages/tzdata/zoneinfo/Asia/Anadyr | Bin 0 -> 743 bytes .../site-packages/tzdata/zoneinfo/Asia/Aqtau | Bin 0 -> 606 bytes .../site-packages/tzdata/zoneinfo/Asia/Aqtobe | Bin 0 -> 615 bytes .../tzdata/zoneinfo/Asia/Ashgabat | Bin 0 -> 375 bytes .../tzdata/zoneinfo/Asia/Ashkhabad | Bin 0 -> 375 bytes .../site-packages/tzdata/zoneinfo/Asia/Atyrau | Bin 0 -> 616 bytes .../tzdata/zoneinfo/Asia/Baghdad | Bin 0 -> 630 bytes .../tzdata/zoneinfo/Asia/Bahrain | Bin 0 -> 152 bytes .../site-packages/tzdata/zoneinfo/Asia/Baku | Bin 0 -> 744 bytes .../tzdata/zoneinfo/Asia/Bangkok | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Asia/Barnaul | Bin 0 -> 753 bytes .../site-packages/tzdata/zoneinfo/Asia/Beirut | Bin 0 -> 732 bytes .../tzdata/zoneinfo/Asia/Bishkek | Bin 0 -> 618 bytes .../site-packages/tzdata/zoneinfo/Asia/Brunei | Bin 0 -> 320 bytes .../tzdata/zoneinfo/Asia/Calcutta | Bin 0 -> 220 bytes .../site-packages/tzdata/zoneinfo/Asia/Chita | Bin 0 -> 750 bytes .../tzdata/zoneinfo/Asia/Choibalsan | Bin 0 -> 594 bytes .../tzdata/zoneinfo/Asia/Chongqing | Bin 0 -> 393 bytes .../tzdata/zoneinfo/Asia/Chungking | Bin 0 -> 393 bytes .../tzdata/zoneinfo/Asia/Colombo | Bin 0 -> 247 bytes .../site-packages/tzdata/zoneinfo/Asia/Dacca | Bin 0 -> 231 bytes .../tzdata/zoneinfo/Asia/Damascus | Bin 0 -> 1234 bytes .../site-packages/tzdata/zoneinfo/Asia/Dhaka | Bin 0 -> 231 bytes .../site-packages/tzdata/zoneinfo/Asia/Dili | Bin 0 -> 170 bytes .../site-packages/tzdata/zoneinfo/Asia/Dubai | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Asia/Dushanbe | Bin 0 -> 366 bytes .../tzdata/zoneinfo/Asia/Famagusta | Bin 0 -> 940 bytes .../site-packages/tzdata/zoneinfo/Asia/Gaza | Bin 0 -> 2950 bytes .../site-packages/tzdata/zoneinfo/Asia/Harbin | Bin 0 -> 393 bytes .../site-packages/tzdata/zoneinfo/Asia/Hebron | Bin 0 -> 2968 bytes .../tzdata/zoneinfo/Asia/Ho_Chi_Minh | Bin 0 -> 236 bytes .../tzdata/zoneinfo/Asia/Hong_Kong | Bin 0 -> 775 bytes .../site-packages/tzdata/zoneinfo/Asia/Hovd | Bin 0 -> 594 bytes .../tzdata/zoneinfo/Asia/Irkutsk | Bin 0 -> 760 bytes .../tzdata/zoneinfo/Asia/Istanbul | Bin 0 -> 1200 bytes .../tzdata/zoneinfo/Asia/Jakarta | Bin 0 -> 248 bytes .../tzdata/zoneinfo/Asia/Jayapura | Bin 0 -> 171 bytes .../tzdata/zoneinfo/Asia/Jerusalem | Bin 0 -> 1074 bytes .../site-packages/tzdata/zoneinfo/Asia/Kabul | Bin 0 -> 159 bytes .../tzdata/zoneinfo/Asia/Kamchatka | Bin 0 -> 727 bytes .../tzdata/zoneinfo/Asia/Karachi | Bin 0 -> 266 bytes .../tzdata/zoneinfo/Asia/Kashgar | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Asia/Kathmandu | Bin 0 -> 161 bytes .../tzdata/zoneinfo/Asia/Katmandu | Bin 0 -> 161 bytes .../tzdata/zoneinfo/Asia/Khandyga | Bin 0 -> 775 bytes .../tzdata/zoneinfo/Asia/Kolkata | Bin 0 -> 220 bytes .../tzdata/zoneinfo/Asia/Krasnoyarsk | Bin 0 -> 741 bytes .../tzdata/zoneinfo/Asia/Kuala_Lumpur | Bin 0 -> 256 bytes .../tzdata/zoneinfo/Asia/Kuching | Bin 0 -> 320 bytes .../site-packages/tzdata/zoneinfo/Asia/Kuwait | Bin 0 -> 133 bytes .../site-packages/tzdata/zoneinfo/Asia/Macao | Bin 0 -> 791 bytes .../site-packages/tzdata/zoneinfo/Asia/Macau | Bin 0 -> 791 bytes .../tzdata/zoneinfo/Asia/Magadan | Bin 0 -> 751 bytes .../tzdata/zoneinfo/Asia/Makassar | Bin 0 -> 190 bytes .../site-packages/tzdata/zoneinfo/Asia/Manila | Bin 0 -> 238 bytes .../site-packages/tzdata/zoneinfo/Asia/Muscat | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Asia/Nicosia | Bin 0 -> 597 bytes .../tzdata/zoneinfo/Asia/Novokuznetsk | Bin 0 -> 726 bytes .../tzdata/zoneinfo/Asia/Novosibirsk | Bin 0 -> 753 bytes .../site-packages/tzdata/zoneinfo/Asia/Omsk | Bin 0 -> 741 bytes .../site-packages/tzdata/zoneinfo/Asia/Oral | Bin 0 -> 625 bytes .../tzdata/zoneinfo/Asia/Phnom_Penh | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Asia/Pontianak | Bin 0 -> 247 bytes .../tzdata/zoneinfo/Asia/Pyongyang | Bin 0 -> 183 bytes .../site-packages/tzdata/zoneinfo/Asia/Qatar | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Asia/Qostanay | Bin 0 -> 624 bytes .../tzdata/zoneinfo/Asia/Qyzylorda | Bin 0 -> 624 bytes .../tzdata/zoneinfo/Asia/Rangoon | Bin 0 -> 187 bytes .../site-packages/tzdata/zoneinfo/Asia/Riyadh | Bin 0 -> 133 bytes .../site-packages/tzdata/zoneinfo/Asia/Saigon | Bin 0 -> 236 bytes .../tzdata/zoneinfo/Asia/Sakhalin | Bin 0 -> 755 bytes .../tzdata/zoneinfo/Asia/Samarkand | Bin 0 -> 366 bytes .../site-packages/tzdata/zoneinfo/Asia/Seoul | Bin 0 -> 415 bytes .../tzdata/zoneinfo/Asia/Shanghai | Bin 0 -> 393 bytes .../tzdata/zoneinfo/Asia/Singapore | Bin 0 -> 256 bytes .../tzdata/zoneinfo/Asia/Srednekolymsk | Bin 0 -> 742 bytes .../site-packages/tzdata/zoneinfo/Asia/Taipei | Bin 0 -> 511 bytes .../tzdata/zoneinfo/Asia/Tashkent | Bin 0 -> 366 bytes .../tzdata/zoneinfo/Asia/Tbilisi | Bin 0 -> 629 bytes .../site-packages/tzdata/zoneinfo/Asia/Tehran | Bin 0 -> 812 bytes .../tzdata/zoneinfo/Asia/Tel_Aviv | Bin 0 -> 1074 bytes .../site-packages/tzdata/zoneinfo/Asia/Thimbu | Bin 0 -> 154 bytes .../tzdata/zoneinfo/Asia/Thimphu | Bin 0 -> 154 bytes .../site-packages/tzdata/zoneinfo/Asia/Tokyo | Bin 0 -> 213 bytes .../site-packages/tzdata/zoneinfo/Asia/Tomsk | Bin 0 -> 753 bytes .../tzdata/zoneinfo/Asia/Ujung_Pandang | Bin 0 -> 190 bytes .../tzdata/zoneinfo/Asia/Ulaanbaatar | Bin 0 -> 594 bytes .../tzdata/zoneinfo/Asia/Ulan_Bator | Bin 0 -> 594 bytes .../site-packages/tzdata/zoneinfo/Asia/Urumqi | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Asia/Ust-Nera | Bin 0 -> 771 bytes .../tzdata/zoneinfo/Asia/Vientiane | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Asia/Vladivostok | Bin 0 -> 742 bytes .../tzdata/zoneinfo/Asia/Yakutsk | Bin 0 -> 741 bytes .../site-packages/tzdata/zoneinfo/Asia/Yangon | Bin 0 -> 187 bytes .../tzdata/zoneinfo/Asia/Yekaterinburg | Bin 0 -> 760 bytes .../tzdata/zoneinfo/Asia/Yerevan | Bin 0 -> 708 bytes .../tzdata/zoneinfo/Asia/__init__.py | 0 .../Asia/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 192 bytes .../tzdata/zoneinfo/Atlantic/Azores | Bin 0 -> 1401 bytes .../tzdata/zoneinfo/Atlantic/Bermuda | Bin 0 -> 1024 bytes .../tzdata/zoneinfo/Atlantic/Canary | Bin 0 -> 478 bytes .../tzdata/zoneinfo/Atlantic/Cape_Verde | Bin 0 -> 175 bytes .../tzdata/zoneinfo/Atlantic/Faeroe | Bin 0 -> 441 bytes .../tzdata/zoneinfo/Atlantic/Faroe | Bin 0 -> 441 bytes .../tzdata/zoneinfo/Atlantic/Jan_Mayen | Bin 0 -> 705 bytes .../tzdata/zoneinfo/Atlantic/Madeira | Bin 0 -> 1372 bytes .../tzdata/zoneinfo/Atlantic/Reykjavik | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Atlantic/South_Georgia | Bin 0 -> 132 bytes .../tzdata/zoneinfo/Atlantic/St_Helena | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Atlantic/Stanley | Bin 0 -> 789 bytes .../tzdata/zoneinfo/Atlantic/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 196 bytes .../tzdata/zoneinfo/Australia/ACT | Bin 0 -> 904 bytes .../tzdata/zoneinfo/Australia/Adelaide | Bin 0 -> 921 bytes .../tzdata/zoneinfo/Australia/Brisbane | Bin 0 -> 289 bytes .../tzdata/zoneinfo/Australia/Broken_Hill | Bin 0 -> 941 bytes .../tzdata/zoneinfo/Australia/Canberra | Bin 0 -> 904 bytes .../tzdata/zoneinfo/Australia/Currie | Bin 0 -> 1003 bytes .../tzdata/zoneinfo/Australia/Darwin | Bin 0 -> 234 bytes .../tzdata/zoneinfo/Australia/Eucla | Bin 0 -> 314 bytes .../tzdata/zoneinfo/Australia/Hobart | Bin 0 -> 1003 bytes .../tzdata/zoneinfo/Australia/LHI | Bin 0 -> 692 bytes .../tzdata/zoneinfo/Australia/Lindeman | Bin 0 -> 325 bytes .../tzdata/zoneinfo/Australia/Lord_Howe | Bin 0 -> 692 bytes .../tzdata/zoneinfo/Australia/Melbourne | Bin 0 -> 904 bytes .../tzdata/zoneinfo/Australia/NSW | Bin 0 -> 904 bytes .../tzdata/zoneinfo/Australia/North | Bin 0 -> 234 bytes .../tzdata/zoneinfo/Australia/Perth | Bin 0 -> 306 bytes .../tzdata/zoneinfo/Australia/Queensland | Bin 0 -> 289 bytes .../tzdata/zoneinfo/Australia/South | Bin 0 -> 921 bytes .../tzdata/zoneinfo/Australia/Sydney | Bin 0 -> 904 bytes .../tzdata/zoneinfo/Australia/Tasmania | Bin 0 -> 1003 bytes .../tzdata/zoneinfo/Australia/Victoria | Bin 0 -> 904 bytes .../tzdata/zoneinfo/Australia/West | Bin 0 -> 306 bytes .../tzdata/zoneinfo/Australia/Yancowinna | Bin 0 -> 941 bytes .../tzdata/zoneinfo/Australia/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 197 bytes .../site-packages/tzdata/zoneinfo/Brazil/Acre | Bin 0 -> 418 bytes .../tzdata/zoneinfo/Brazil/DeNoronha | Bin 0 -> 484 bytes .../site-packages/tzdata/zoneinfo/Brazil/East | Bin 0 -> 952 bytes .../site-packages/tzdata/zoneinfo/Brazil/West | Bin 0 -> 412 bytes .../tzdata/zoneinfo/Brazil/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../Lib/site-packages/tzdata/zoneinfo/CET | Bin 0 -> 1103 bytes .../Lib/site-packages/tzdata/zoneinfo/CST6CDT | Bin 0 -> 1754 bytes .../tzdata/zoneinfo/Canada/Atlantic | Bin 0 -> 1672 bytes .../tzdata/zoneinfo/Canada/Central | Bin 0 -> 1294 bytes .../tzdata/zoneinfo/Canada/Eastern | Bin 0 -> 1717 bytes .../tzdata/zoneinfo/Canada/Mountain | Bin 0 -> 970 bytes .../tzdata/zoneinfo/Canada/Newfoundland | Bin 0 -> 1878 bytes .../tzdata/zoneinfo/Canada/Pacific | Bin 0 -> 1330 bytes .../tzdata/zoneinfo/Canada/Saskatchewan | Bin 0 -> 638 bytes .../tzdata/zoneinfo/Canada/Yukon | Bin 0 -> 1029 bytes .../tzdata/zoneinfo/Canada/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../tzdata/zoneinfo/Chile/Continental | Bin 0 -> 1354 bytes .../tzdata/zoneinfo/Chile/EasterIsland | Bin 0 -> 1174 bytes .../tzdata/zoneinfo/Chile/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 193 bytes .../Lib/site-packages/tzdata/zoneinfo/Cuba | Bin 0 -> 1117 bytes .../Lib/site-packages/tzdata/zoneinfo/EET | Bin 0 -> 682 bytes .../Lib/site-packages/tzdata/zoneinfo/EST | Bin 0 -> 149 bytes .../Lib/site-packages/tzdata/zoneinfo/EST5EDT | Bin 0 -> 1744 bytes .../Lib/site-packages/tzdata/zoneinfo/Egypt | Bin 0 -> 1309 bytes .../Lib/site-packages/tzdata/zoneinfo/Eire | Bin 0 -> 1496 bytes .../Lib/site-packages/tzdata/zoneinfo/Etc/GMT | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+0 | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+1 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+10 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+11 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+12 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+2 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+3 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+4 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+5 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+6 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+7 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+8 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT+9 | Bin 0 -> 113 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-0 | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-1 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-10 | Bin 0 -> 115 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-11 | Bin 0 -> 115 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-12 | Bin 0 -> 115 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-13 | Bin 0 -> 115 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-14 | Bin 0 -> 115 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-2 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-3 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-4 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-5 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-6 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-7 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-8 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT-9 | Bin 0 -> 114 bytes .../site-packages/tzdata/zoneinfo/Etc/GMT0 | Bin 0 -> 111 bytes .../tzdata/zoneinfo/Etc/Greenwich | Bin 0 -> 111 bytes .../Lib/site-packages/tzdata/zoneinfo/Etc/UCT | Bin 0 -> 111 bytes .../Lib/site-packages/tzdata/zoneinfo/Etc/UTC | Bin 0 -> 111 bytes .../tzdata/zoneinfo/Etc/Universal | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/Etc/Zulu | Bin 0 -> 111 bytes .../tzdata/zoneinfo/Etc/__init__.py | 0 .../Etc/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Europe/Amsterdam | Bin 0 -> 1103 bytes .../tzdata/zoneinfo/Europe/Andorra | Bin 0 -> 389 bytes .../tzdata/zoneinfo/Europe/Astrakhan | Bin 0 -> 726 bytes .../tzdata/zoneinfo/Europe/Athens | Bin 0 -> 682 bytes .../tzdata/zoneinfo/Europe/Belfast | Bin 0 -> 1599 bytes .../tzdata/zoneinfo/Europe/Belgrade | Bin 0 -> 478 bytes .../tzdata/zoneinfo/Europe/Berlin | Bin 0 -> 705 bytes .../tzdata/zoneinfo/Europe/Bratislava | Bin 0 -> 723 bytes .../tzdata/zoneinfo/Europe/Brussels | Bin 0 -> 1103 bytes .../tzdata/zoneinfo/Europe/Bucharest | Bin 0 -> 661 bytes .../tzdata/zoneinfo/Europe/Budapest | Bin 0 -> 766 bytes .../tzdata/zoneinfo/Europe/Busingen | Bin 0 -> 497 bytes .../tzdata/zoneinfo/Europe/Chisinau | Bin 0 -> 755 bytes .../tzdata/zoneinfo/Europe/Copenhagen | Bin 0 -> 705 bytes .../tzdata/zoneinfo/Europe/Dublin | Bin 0 -> 1496 bytes .../tzdata/zoneinfo/Europe/Gibraltar | Bin 0 -> 1220 bytes .../tzdata/zoneinfo/Europe/Guernsey | Bin 0 -> 1599 bytes .../tzdata/zoneinfo/Europe/Helsinki | Bin 0 -> 481 bytes .../tzdata/zoneinfo/Europe/Isle_of_Man | Bin 0 -> 1599 bytes .../tzdata/zoneinfo/Europe/Istanbul | Bin 0 -> 1200 bytes .../tzdata/zoneinfo/Europe/Jersey | Bin 0 -> 1599 bytes .../tzdata/zoneinfo/Europe/Kaliningrad | Bin 0 -> 904 bytes .../site-packages/tzdata/zoneinfo/Europe/Kiev | Bin 0 -> 558 bytes .../tzdata/zoneinfo/Europe/Kirov | Bin 0 -> 735 bytes .../site-packages/tzdata/zoneinfo/Europe/Kyiv | Bin 0 -> 558 bytes .../tzdata/zoneinfo/Europe/Lisbon | Bin 0 -> 1463 bytes .../tzdata/zoneinfo/Europe/Ljubljana | Bin 0 -> 478 bytes .../tzdata/zoneinfo/Europe/London | Bin 0 -> 1599 bytes .../tzdata/zoneinfo/Europe/Luxembourg | Bin 0 -> 1103 bytes .../tzdata/zoneinfo/Europe/Madrid | Bin 0 -> 897 bytes .../tzdata/zoneinfo/Europe/Malta | Bin 0 -> 928 bytes .../tzdata/zoneinfo/Europe/Mariehamn | Bin 0 -> 481 bytes .../tzdata/zoneinfo/Europe/Minsk | Bin 0 -> 808 bytes .../tzdata/zoneinfo/Europe/Monaco | Bin 0 -> 1105 bytes .../tzdata/zoneinfo/Europe/Moscow | Bin 0 -> 908 bytes .../tzdata/zoneinfo/Europe/Nicosia | Bin 0 -> 597 bytes .../site-packages/tzdata/zoneinfo/Europe/Oslo | Bin 0 -> 705 bytes .../tzdata/zoneinfo/Europe/Paris | Bin 0 -> 1105 bytes .../tzdata/zoneinfo/Europe/Podgorica | Bin 0 -> 478 bytes .../tzdata/zoneinfo/Europe/Prague | Bin 0 -> 723 bytes .../site-packages/tzdata/zoneinfo/Europe/Riga | Bin 0 -> 694 bytes .../site-packages/tzdata/zoneinfo/Europe/Rome | Bin 0 -> 947 bytes .../tzdata/zoneinfo/Europe/Samara | Bin 0 -> 732 bytes .../tzdata/zoneinfo/Europe/San_Marino | Bin 0 -> 947 bytes .../tzdata/zoneinfo/Europe/Sarajevo | Bin 0 -> 478 bytes .../tzdata/zoneinfo/Europe/Saratov | Bin 0 -> 726 bytes .../tzdata/zoneinfo/Europe/Simferopol | Bin 0 -> 865 bytes .../tzdata/zoneinfo/Europe/Skopje | Bin 0 -> 478 bytes .../tzdata/zoneinfo/Europe/Sofia | Bin 0 -> 592 bytes .../tzdata/zoneinfo/Europe/Stockholm | Bin 0 -> 705 bytes .../tzdata/zoneinfo/Europe/Tallinn | Bin 0 -> 675 bytes .../tzdata/zoneinfo/Europe/Tirane | Bin 0 -> 604 bytes .../tzdata/zoneinfo/Europe/Tiraspol | Bin 0 -> 755 bytes .../tzdata/zoneinfo/Europe/Ulyanovsk | Bin 0 -> 760 bytes .../tzdata/zoneinfo/Europe/Uzhgorod | Bin 0 -> 558 bytes .../tzdata/zoneinfo/Europe/Vaduz | Bin 0 -> 497 bytes .../tzdata/zoneinfo/Europe/Vatican | Bin 0 -> 947 bytes .../tzdata/zoneinfo/Europe/Vienna | Bin 0 -> 658 bytes .../tzdata/zoneinfo/Europe/Vilnius | Bin 0 -> 676 bytes .../tzdata/zoneinfo/Europe/Volgograd | Bin 0 -> 753 bytes .../tzdata/zoneinfo/Europe/Warsaw | Bin 0 -> 923 bytes .../tzdata/zoneinfo/Europe/Zagreb | Bin 0 -> 478 bytes .../tzdata/zoneinfo/Europe/Zaporozhye | Bin 0 -> 558 bytes .../tzdata/zoneinfo/Europe/Zurich | Bin 0 -> 497 bytes .../tzdata/zoneinfo/Europe/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../Lib/site-packages/tzdata/zoneinfo/Factory | Bin 0 -> 113 bytes .../Lib/site-packages/tzdata/zoneinfo/GB | Bin 0 -> 1599 bytes .../Lib/site-packages/tzdata/zoneinfo/GB-Eire | Bin 0 -> 1599 bytes .../Lib/site-packages/tzdata/zoneinfo/GMT | Bin 0 -> 111 bytes .../Lib/site-packages/tzdata/zoneinfo/GMT+0 | Bin 0 -> 111 bytes .../Lib/site-packages/tzdata/zoneinfo/GMT-0 | Bin 0 -> 111 bytes .../Lib/site-packages/tzdata/zoneinfo/GMT0 | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/Greenwich | Bin 0 -> 111 bytes .../Lib/site-packages/tzdata/zoneinfo/HST | Bin 0 -> 221 bytes .../site-packages/tzdata/zoneinfo/Hongkong | Bin 0 -> 775 bytes .../Lib/site-packages/tzdata/zoneinfo/Iceland | Bin 0 -> 130 bytes .../tzdata/zoneinfo/Indian/Antananarivo | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Indian/Chagos | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Indian/Christmas | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Indian/Cocos | Bin 0 -> 187 bytes .../tzdata/zoneinfo/Indian/Comoro | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Indian/Kerguelen | Bin 0 -> 152 bytes .../site-packages/tzdata/zoneinfo/Indian/Mahe | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Indian/Maldives | Bin 0 -> 152 bytes .../tzdata/zoneinfo/Indian/Mauritius | Bin 0 -> 179 bytes .../tzdata/zoneinfo/Indian/Mayotte | Bin 0 -> 191 bytes .../tzdata/zoneinfo/Indian/Reunion | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Indian/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../Lib/site-packages/tzdata/zoneinfo/Iran | Bin 0 -> 812 bytes .../Lib/site-packages/tzdata/zoneinfo/Israel | Bin 0 -> 1074 bytes .../Lib/site-packages/tzdata/zoneinfo/Jamaica | Bin 0 -> 339 bytes .../Lib/site-packages/tzdata/zoneinfo/Japan | Bin 0 -> 213 bytes .../site-packages/tzdata/zoneinfo/Kwajalein | Bin 0 -> 219 bytes .../Lib/site-packages/tzdata/zoneinfo/Libya | Bin 0 -> 431 bytes .../Lib/site-packages/tzdata/zoneinfo/MET | Bin 0 -> 1103 bytes .../Lib/site-packages/tzdata/zoneinfo/MST | Bin 0 -> 240 bytes .../Lib/site-packages/tzdata/zoneinfo/MST7MDT | Bin 0 -> 1042 bytes .../tzdata/zoneinfo/Mexico/BajaNorte | Bin 0 -> 1079 bytes .../tzdata/zoneinfo/Mexico/BajaSur | Bin 0 -> 690 bytes .../tzdata/zoneinfo/Mexico/General | Bin 0 -> 773 bytes .../tzdata/zoneinfo/Mexico/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 194 bytes .../Lib/site-packages/tzdata/zoneinfo/NZ | Bin 0 -> 1043 bytes .../Lib/site-packages/tzdata/zoneinfo/NZ-CHAT | Bin 0 -> 808 bytes .../Lib/site-packages/tzdata/zoneinfo/Navajo | Bin 0 -> 1042 bytes .../Lib/site-packages/tzdata/zoneinfo/PRC | Bin 0 -> 393 bytes .../Lib/site-packages/tzdata/zoneinfo/PST8PDT | Bin 0 -> 1294 bytes .../tzdata/zoneinfo/Pacific/Apia | Bin 0 -> 407 bytes .../tzdata/zoneinfo/Pacific/Auckland | Bin 0 -> 1043 bytes .../tzdata/zoneinfo/Pacific/Bougainville | Bin 0 -> 201 bytes .../tzdata/zoneinfo/Pacific/Chatham | Bin 0 -> 808 bytes .../tzdata/zoneinfo/Pacific/Chuuk | Bin 0 -> 154 bytes .../tzdata/zoneinfo/Pacific/Easter | Bin 0 -> 1174 bytes .../tzdata/zoneinfo/Pacific/Efate | Bin 0 -> 342 bytes .../tzdata/zoneinfo/Pacific/Enderbury | Bin 0 -> 172 bytes .../tzdata/zoneinfo/Pacific/Fakaofo | Bin 0 -> 153 bytes .../tzdata/zoneinfo/Pacific/Fiji | Bin 0 -> 396 bytes .../tzdata/zoneinfo/Pacific/Funafuti | Bin 0 -> 134 bytes .../tzdata/zoneinfo/Pacific/Galapagos | Bin 0 -> 175 bytes .../tzdata/zoneinfo/Pacific/Gambier | Bin 0 -> 132 bytes .../tzdata/zoneinfo/Pacific/Guadalcanal | Bin 0 -> 134 bytes .../tzdata/zoneinfo/Pacific/Guam | Bin 0 -> 350 bytes .../tzdata/zoneinfo/Pacific/Honolulu | Bin 0 -> 221 bytes .../tzdata/zoneinfo/Pacific/Johnston | Bin 0 -> 221 bytes .../tzdata/zoneinfo/Pacific/Kanton | Bin 0 -> 172 bytes .../tzdata/zoneinfo/Pacific/Kiritimati | Bin 0 -> 174 bytes .../tzdata/zoneinfo/Pacific/Kosrae | Bin 0 -> 242 bytes .../tzdata/zoneinfo/Pacific/Kwajalein | Bin 0 -> 219 bytes .../tzdata/zoneinfo/Pacific/Majuro | Bin 0 -> 134 bytes .../tzdata/zoneinfo/Pacific/Marquesas | Bin 0 -> 139 bytes .../tzdata/zoneinfo/Pacific/Midway | Bin 0 -> 146 bytes .../tzdata/zoneinfo/Pacific/Nauru | Bin 0 -> 183 bytes .../tzdata/zoneinfo/Pacific/Niue | Bin 0 -> 154 bytes .../tzdata/zoneinfo/Pacific/Norfolk | Bin 0 -> 237 bytes .../tzdata/zoneinfo/Pacific/Noumea | Bin 0 -> 198 bytes .../tzdata/zoneinfo/Pacific/Pago_Pago | Bin 0 -> 146 bytes .../tzdata/zoneinfo/Pacific/Palau | Bin 0 -> 148 bytes .../tzdata/zoneinfo/Pacific/Pitcairn | Bin 0 -> 153 bytes .../tzdata/zoneinfo/Pacific/Pohnpei | Bin 0 -> 134 bytes .../tzdata/zoneinfo/Pacific/Ponape | Bin 0 -> 134 bytes .../tzdata/zoneinfo/Pacific/Port_Moresby | Bin 0 -> 154 bytes .../tzdata/zoneinfo/Pacific/Rarotonga | Bin 0 -> 406 bytes .../tzdata/zoneinfo/Pacific/Saipan | Bin 0 -> 350 bytes .../tzdata/zoneinfo/Pacific/Samoa | Bin 0 -> 146 bytes .../tzdata/zoneinfo/Pacific/Tahiti | Bin 0 -> 133 bytes .../tzdata/zoneinfo/Pacific/Tarawa | Bin 0 -> 134 bytes .../tzdata/zoneinfo/Pacific/Tongatapu | Bin 0 -> 237 bytes .../tzdata/zoneinfo/Pacific/Truk | Bin 0 -> 154 bytes .../tzdata/zoneinfo/Pacific/Wake | Bin 0 -> 134 bytes .../tzdata/zoneinfo/Pacific/Wallis | Bin 0 -> 134 bytes .../site-packages/tzdata/zoneinfo/Pacific/Yap | Bin 0 -> 154 bytes .../tzdata/zoneinfo/Pacific/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 195 bytes .../Lib/site-packages/tzdata/zoneinfo/Poland | Bin 0 -> 923 bytes .../site-packages/tzdata/zoneinfo/Portugal | Bin 0 -> 1463 bytes .../Lib/site-packages/tzdata/zoneinfo/ROC | Bin 0 -> 511 bytes .../Lib/site-packages/tzdata/zoneinfo/ROK | Bin 0 -> 415 bytes .../site-packages/tzdata/zoneinfo/Singapore | Bin 0 -> 256 bytes .../Lib/site-packages/tzdata/zoneinfo/Turkey | Bin 0 -> 1200 bytes .../Lib/site-packages/tzdata/zoneinfo/UCT | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/US/Alaska | Bin 0 -> 977 bytes .../site-packages/tzdata/zoneinfo/US/Aleutian | Bin 0 -> 969 bytes .../site-packages/tzdata/zoneinfo/US/Arizona | Bin 0 -> 240 bytes .../site-packages/tzdata/zoneinfo/US/Central | Bin 0 -> 1754 bytes .../tzdata/zoneinfo/US/East-Indiana | Bin 0 -> 531 bytes .../site-packages/tzdata/zoneinfo/US/Eastern | Bin 0 -> 1744 bytes .../site-packages/tzdata/zoneinfo/US/Hawaii | Bin 0 -> 221 bytes .../tzdata/zoneinfo/US/Indiana-Starke | Bin 0 -> 1016 bytes .../site-packages/tzdata/zoneinfo/US/Michigan | Bin 0 -> 899 bytes .../site-packages/tzdata/zoneinfo/US/Mountain | Bin 0 -> 1042 bytes .../site-packages/tzdata/zoneinfo/US/Pacific | Bin 0 -> 1294 bytes .../site-packages/tzdata/zoneinfo/US/Samoa | Bin 0 -> 146 bytes .../tzdata/zoneinfo/US/__init__.py | 0 .../US/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 190 bytes .../Lib/site-packages/tzdata/zoneinfo/UTC | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/Universal | Bin 0 -> 111 bytes .../Lib/site-packages/tzdata/zoneinfo/W-SU | Bin 0 -> 908 bytes .../Lib/site-packages/tzdata/zoneinfo/WET | Bin 0 -> 1463 bytes .../Lib/site-packages/tzdata/zoneinfo/Zulu | Bin 0 -> 111 bytes .../site-packages/tzdata/zoneinfo/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 187 bytes .../site-packages/tzdata/zoneinfo/iso3166.tab | 279 + .../site-packages/tzdata/zoneinfo/leapseconds | 79 + .../site-packages/tzdata/zoneinfo/tzdata.zi | 4281 ++++++ .../site-packages/tzdata/zoneinfo/zone.tab | 447 + .../tzdata/zoneinfo/zone1970.tab | 374 + .../site-packages/tzdata/zoneinfo/zonenow.tab | 299 + gestao_raul/Lib/site-packages/tzdata/zones | 597 + gestao_raul/Scripts/Activate.ps1 | 502 + gestao_raul/Scripts/activate | 69 + gestao_raul/Scripts/activate.bat | 34 + gestao_raul/Scripts/deactivate.bat | 22 + gestao_raul/Scripts/django-admin.exe | Bin 0 -> 108468 bytes gestao_raul/Scripts/pip.exe | Bin 0 -> 108426 bytes gestao_raul/Scripts/pip3.10.exe | Bin 0 -> 108426 bytes gestao_raul/Scripts/pip3.exe | Bin 0 -> 108426 bytes gestao_raul/Scripts/python.exe | Bin 0 -> 268568 bytes gestao_raul/Scripts/pythonw.exe | Bin 0 -> 257304 bytes gestao_raul/Scripts/sqlformat.exe | Bin 0 -> 108421 bytes gestao_raul/pyvenv.cfg | 3 + 6881 files changed, 843683 insertions(+) create mode 100644 comandos.txt create mode 100644 gestaoRaul/__pycache__/manage.cpython-310.pyc create mode 100644 gestaoRaul/categories/__init__.py create mode 100644 gestaoRaul/categories/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/categories/__pycache__/admin.cpython-310.pyc create mode 100644 gestaoRaul/categories/__pycache__/apps.cpython-310.pyc create mode 100644 gestaoRaul/categories/__pycache__/models.cpython-310.pyc create mode 100644 gestaoRaul/categories/__pycache__/urls.cpython-310.pyc create mode 100644 gestaoRaul/categories/__pycache__/views.cpython-310.pyc create mode 100644 gestaoRaul/categories/admin.py create mode 100644 gestaoRaul/categories/apps.py create mode 100644 gestaoRaul/categories/migrations/0001_initial.py create mode 100644 gestaoRaul/categories/migrations/0002_rename_category_categories.py create mode 100644 gestaoRaul/categories/migrations/__init__.py create mode 100644 gestaoRaul/categories/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestaoRaul/categories/migrations/__pycache__/0002_rename_category_categories.cpython-310.pyc create mode 100644 gestaoRaul/categories/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/categories/models.py create mode 100644 gestaoRaul/categories/templates/categories.html create mode 100644 gestaoRaul/categories/tests.py create mode 100644 gestaoRaul/categories/urls.py create mode 100644 gestaoRaul/categories/views.py create mode 100644 gestaoRaul/clients/__init__.py create mode 100644 gestaoRaul/clients/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/clients/__pycache__/admin.cpython-310.pyc create mode 100644 gestaoRaul/clients/__pycache__/apps.cpython-310.pyc create mode 100644 gestaoRaul/clients/__pycache__/models.cpython-310.pyc create mode 100644 gestaoRaul/clients/__pycache__/urls.cpython-310.pyc create mode 100644 gestaoRaul/clients/__pycache__/views.cpython-310.pyc create mode 100644 gestaoRaul/clients/admin.py create mode 100644 gestaoRaul/clients/apps.py create mode 100644 gestaoRaul/clients/migrations/0001_initial.py create mode 100644 gestaoRaul/clients/migrations/__init__.py create mode 100644 gestaoRaul/clients/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestaoRaul/clients/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/clients/models.py create mode 100644 gestaoRaul/clients/templates/clients.html create mode 100644 gestaoRaul/clients/tests.py create mode 100644 gestaoRaul/clients/urls.py create mode 100644 gestaoRaul/clients/views.py create mode 100644 gestaoRaul/comandas/__init__.py create mode 100644 gestaoRaul/comandas/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/comandas/__pycache__/admin.cpython-310.pyc create mode 100644 gestaoRaul/comandas/__pycache__/apps.cpython-310.pyc create mode 100644 gestaoRaul/comandas/__pycache__/models.cpython-310.pyc create mode 100644 gestaoRaul/comandas/__pycache__/urls.cpython-310.pyc create mode 100644 gestaoRaul/comandas/__pycache__/views.cpython-310.pyc create mode 100644 gestaoRaul/comandas/admin.py create mode 100644 gestaoRaul/comandas/apps.py create mode 100644 gestaoRaul/comandas/migrations/0001_initial.py create mode 100644 gestaoRaul/comandas/migrations/0002_productcomanda.py create mode 100644 gestaoRaul/comandas/migrations/__init__.py create mode 100644 gestaoRaul/comandas/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestaoRaul/comandas/migrations/__pycache__/0002_productcomanda.cpython-310.pyc create mode 100644 gestaoRaul/comandas/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/comandas/models.py create mode 100644 gestaoRaul/comandas/templates/comandas.html create mode 100644 gestaoRaul/comandas/tests.py create mode 100644 gestaoRaul/comandas/urls.py create mode 100644 gestaoRaul/comandas/views.py create mode 100644 gestaoRaul/db.sqlite3 create mode 100644 gestaoRaul/gestaoRaul/__init__.py create mode 100644 gestaoRaul/gestaoRaul/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/gestaoRaul/__pycache__/settings.cpython-310.pyc create mode 100644 gestaoRaul/gestaoRaul/__pycache__/urls.cpython-310.pyc create mode 100644 gestaoRaul/gestaoRaul/__pycache__/wsgi.cpython-310.pyc create mode 100644 gestaoRaul/gestaoRaul/asgi.py create mode 100644 gestaoRaul/gestaoRaul/settings.py create mode 100644 gestaoRaul/gestaoRaul/urls.py create mode 100644 gestaoRaul/gestaoRaul/wsgi.py create mode 100644 gestaoRaul/manage.py create mode 100644 gestaoRaul/mesas/__init__.py create mode 100644 gestaoRaul/mesas/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/mesas/__pycache__/admin.cpython-310.pyc create mode 100644 gestaoRaul/mesas/__pycache__/apps.cpython-310.pyc create mode 100644 gestaoRaul/mesas/__pycache__/models.cpython-310.pyc create mode 100644 gestaoRaul/mesas/__pycache__/urls.cpython-310.pyc create mode 100644 gestaoRaul/mesas/__pycache__/views.cpython-310.pyc create mode 100644 gestaoRaul/mesas/admin.py create mode 100644 gestaoRaul/mesas/apps.py create mode 100644 gestaoRaul/mesas/migrations/0001_initial.py create mode 100644 gestaoRaul/mesas/migrations/__init__.py create mode 100644 gestaoRaul/mesas/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestaoRaul/mesas/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/mesas/models.py create mode 100644 gestaoRaul/mesas/templates/mesas.html create mode 100644 gestaoRaul/mesas/tests.py create mode 100644 gestaoRaul/mesas/urls.py create mode 100644 gestaoRaul/mesas/views.py create mode 100644 gestaoRaul/products/__init__.py create mode 100644 gestaoRaul/products/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/products/__pycache__/admin.cpython-310.pyc create mode 100644 gestaoRaul/products/__pycache__/apps.cpython-310.pyc create mode 100644 gestaoRaul/products/__pycache__/models.cpython-310.pyc create mode 100644 gestaoRaul/products/__pycache__/urls.cpython-310.pyc create mode 100644 gestaoRaul/products/__pycache__/views.cpython-310.pyc create mode 100644 gestaoRaul/products/admin.py create mode 100644 gestaoRaul/products/apps.py create mode 100644 gestaoRaul/products/migrations/0001_initial.py create mode 100644 gestaoRaul/products/migrations/__init__.py create mode 100644 gestaoRaul/products/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestaoRaul/products/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/products/models.py create mode 100644 gestaoRaul/products/templates/products.html create mode 100644 gestaoRaul/products/tests.py create mode 100644 gestaoRaul/products/urls.py create mode 100644 gestaoRaul/products/views.py create mode 100644 gestaoRaul/templates/base.html create mode 100644 gestaoRaul/templates/static/mesas/css/mesas.css create mode 100644 gestaoRaul/typePay/__init__.py create mode 100644 gestaoRaul/typePay/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/typePay/__pycache__/admin.cpython-310.pyc create mode 100644 gestaoRaul/typePay/__pycache__/apps.cpython-310.pyc create mode 100644 gestaoRaul/typePay/__pycache__/models.cpython-310.pyc create mode 100644 gestaoRaul/typePay/__pycache__/urls.cpython-310.pyc create mode 100644 gestaoRaul/typePay/__pycache__/views.cpython-310.pyc create mode 100644 gestaoRaul/typePay/admin.py create mode 100644 gestaoRaul/typePay/apps.py create mode 100644 gestaoRaul/typePay/migrations/0001_initial.py create mode 100644 gestaoRaul/typePay/migrations/__init__.py create mode 100644 gestaoRaul/typePay/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestaoRaul/typePay/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestaoRaul/typePay/models.py create mode 100644 gestaoRaul/typePay/templates/typePay.html create mode 100644 gestaoRaul/typePay/tests.py create mode 100644 gestaoRaul/typePay/urls.py create mode 100644 gestaoRaul/typePay/views.py create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/AUTHORS create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/INSTALLER create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE.python create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/METADATA create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/RECORD create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/REQUESTED create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/WHEEL create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/entry_points.txt create mode 100644 gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/top_level.txt create mode 100644 gestao_raul/Lib/site-packages/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/_distutils_hack/__init__.py create mode 100644 gestao_raul/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/_distutils_hack/override.py create mode 100644 gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/INSTALLER create mode 100644 gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/LICENSE create mode 100644 gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/METADATA create mode 100644 gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/RECORD create mode 100644 gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/WHEEL create mode 100644 gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/top_level.txt create mode 100644 gestao_raul/Lib/site-packages/asgiref/__init__.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/compatibility.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/current_thread_executor.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/server.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/sync.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/asgiref/compatibility.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/current_thread_executor.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/local.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/py.typed create mode 100644 gestao_raul/Lib/site-packages/asgiref/server.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/sync.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/testing.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/timeout.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/typing.py create mode 100644 gestao_raul/Lib/site-packages/asgiref/wsgi.py create mode 100644 gestao_raul/Lib/site-packages/distutils-precedence.pth create mode 100644 gestao_raul/Lib/site-packages/django/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/__main__.py create mode 100644 gestao_raul/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/__pycache__/shortcuts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/apps/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/apps/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/apps/config.py create mode 100644 gestao_raul/Lib/site-packages/django/apps/registry.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/app_template/__init__.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/app_template/admin.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/app_template/apps.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/app_template/migrations/__init__.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/app_template/models.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/app_template/tests.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/app_template/views.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/global_settings.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/az/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/az/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/az/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bg/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bg/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bg/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bn/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bn/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bn/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bs/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bs/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/bs/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ca/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ca/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ca/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ckb/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ckb/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ckb/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ckb/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cs/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cs/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cs/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cy/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cy/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/cy/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/da/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/da/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/da/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de_CH/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/de_CH/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/el/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/el/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/el/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_AU/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_AU/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_CA/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_CA/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_CA/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_CA/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_GB/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_GB/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_IE/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_IE/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_IE/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/en_IE/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eo/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eo/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eo/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_AR/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_CO/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_MX/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_NI/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_PR/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_PR/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/et/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/et/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/et/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eu/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eu/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/eu/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fa/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fa/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fa/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fi/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fi/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fi/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CH/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CH/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CH/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fr_CH/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fy/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fy/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/fy/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ga/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ga/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ga/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gd/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gd/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gd/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gl/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gl/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/gl/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/he/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/he/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/he/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hi/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hi/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hi/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hr/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hr/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hr/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hu/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hu/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hu/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/id/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/id/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/id/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ig/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ig/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ig/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/is/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/is/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/is/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/it/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/it/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/it/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ja/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ja/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ja/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ka/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ka/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/km/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/km/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/km/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kn/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kn/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/kn/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ko/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ko/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ko/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ky/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ky/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ky/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lt/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lt/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lt/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lv/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lv/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/lv/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mk/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mk/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mk/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ml/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ml/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ml/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mn/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mn/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ms/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ms/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nb/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nb/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nb/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nl/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nl/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nl/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nn/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nn/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/nn/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pl/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pl/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ro/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ro/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ro/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ru/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ru/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ru/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sk/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sk/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sl/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sl/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sl/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sq/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sq/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sq/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sv/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sv/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sv/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ta/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ta/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ta/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/te/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/te/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tg/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tg/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tg/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/th/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/th/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/th/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tk/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tk/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tk/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tr/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tr/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tr/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ug/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ug/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ug/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ug/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uk/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uk/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uk/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uz/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uz/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/uz/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/vi/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/vi/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/vi/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/project_template/manage.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl create mode 100644 gestao_raul/Lib/site-packages/django/conf/urls/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/urls/__pycache__/i18n.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/conf/urls/i18n.py create mode 100644 gestao_raul/Lib/site-packages/django/conf/urls/static.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/actions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/decorators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/filters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/helpers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/tests.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/widgets.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/actions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/checks.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/decorators.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/filters.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/forms.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/helpers.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/am/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ckb/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ckb/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ug/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ug/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/0001_initial.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/0002_logentry_remove_auto_add.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/options.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/sites.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/autocomplete.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/base.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/changelists.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/dark_mode.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/dashboard.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/forms.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/login.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/nav_sidebar.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/responsive.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/responsive_rtl.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/rtl.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/unusable_password_field.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/vendor/select2/select2.min.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/css/widgets.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/LICENSE create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/README.txt create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/calendar-icons.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_off.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/gis/move_vertex_on.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-addlink.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-alert.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-calendar.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-changelink.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-clock.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-deletelink.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-hidelink.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-no.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown-alt.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-unknown.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-viewlink.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/icon-yes.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/inline-delete.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/search.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/selector-icons.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/sorting-icons.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-add.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/img/tooltag-arrowright.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/SelectBox.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/SelectFilter2.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/actions.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/autocomplete.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/calendar.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/cancel.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/change_form.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/core.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/filters.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/inlines.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/jquery.init.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/nav_sidebar.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/popup_response.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/prepopulate_init.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/theme.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/unusable_password_field.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/urlify.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/404.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/500.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/actions.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/app_index.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/app_list.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/base.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/base_site.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/change_form.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/change_form_object_tools.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/change_list.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/change_list_object_tools.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/change_list_results.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/color_theme_toggle.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/filter.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/includes/object_delete_summary.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/index.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/invalid_setup.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/login.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/nav_sidebar.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/object_history.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/pagination.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/popup_response.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/search_form.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/submit_line.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/clearable_file_input.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/date.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/radio.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/split_datetime.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/time.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/admin/widgets/url.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/logged_out.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/password_change_done.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/password_change_form.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_done.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_email.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templates/registration/password_reset_form.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/admin_list.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/admin_modify.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/admin_urls.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/templatetags/log.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/tests.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/__pycache__/main.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/autocomplete.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/decorators.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/views/main.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admin/widgets.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/__pycache__/urls.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/middleware.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/index.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/urls.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/admindocs/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/admin.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/backends.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/base_user.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/checks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/context_processors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/decorators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/forms.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/hashers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/middleware.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/mixins.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/password_validation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/signals.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/tokens.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/urls.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/validators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/admin.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/backends.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/base_user.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/checks.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/common-passwords.txt.gz create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/context_processors.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/decorators.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/forms.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/handlers/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/handlers/modwsgi.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/hashers.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/kab/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/commands/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/commands/changepassword.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/management/commands/createsuperuser.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/middleware.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0001_initial.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0002_alter_permission_name_max_length.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0003_alter_user_email_max_length.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0004_alter_user_username_opts.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0005_alter_user_last_login_null.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0006_require_contenttypes_0002.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0008_alter_user_username_max_length.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0010_alter_group_name_max_length.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0011_update_proxy_permissions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/mixins.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/password_validation.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/signals.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/templates/auth/widgets/read_only_password_hash.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/templates/registration/password_reset_subject.txt create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/tokens.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/urls.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/validators.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/auth/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/prefetch.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/admin.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/checks.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/fields.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/forms.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/management/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/management/commands/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/migrations/0001_initial.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/migrations/0002_remove_content_type_name.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/prefetch.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/contenttypes/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/admin.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/forms.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/urls.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/admin.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/forms.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/middleware.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/migrations/0001_initial.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/sitemaps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/templatetags/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/templatetags/flatpages.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/urls.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/flatpages/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/feeds.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/geoip2.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/geometry.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/measure.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/ptr.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/admin/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/admin/__pycache__/options.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/admin/options.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/adapter.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/features.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/base/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/features.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/mysql/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/adapter.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/features.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/oracle/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/adapter.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/const.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/features.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/pgraster.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/postgis/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/adapter.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/client.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/features.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/spatialite/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/backends/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/aggregates.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/fields.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/functions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/lookups.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/proxy.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/sql/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/db/models/sql/conversion.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/feeds.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/forms/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/forms/fields.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/forms/widgets.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/LICENSE create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/datasource.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/driver.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/envelope.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/error.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/feature.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/field.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/geometries.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/geomtype.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/layer.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/libgdal.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/ds.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/errcheck.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/generation.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/geom.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/raster.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/prototypes/srs.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/band.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/const.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/raster/source.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/gdal/srs.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geoip2.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geometry.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/LICENSE create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/error.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/io.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/point.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/collections.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/coordseq.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/error.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/factory.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/geometry.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/io.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/libgeos.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/linestring.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/mutable_list.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/point.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/polygon.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prepared.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/coordseq.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/errcheck.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/geom.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/io.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/misc.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/predicates.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/prepared.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/threadsafe.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/geos/prototypes/topology.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/commands/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/commands/inspectdb.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/management/commands/ogrinspect.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/measure.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/ptr.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/serializers/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/serializers/geojson.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/shortcuts.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/sitemaps/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/sitemaps/kml.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/sitemaps/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/css/ol3.css create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_off.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/img/draw_line_on.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_off.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/img/draw_point_on.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_off.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/img/draw_polygon_on.svg create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/static/gis/js/OLMapWidget.js create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/templates/gis/kml/base.kml create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/templates/gis/kml/placemarks.kml create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/templates/gis/openlayers-osm.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/templates/gis/openlayers.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/layermapping.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/ogrinfo.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/ogrinspect.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/utils/srs.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/gis/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/templatetags/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/humanize/templatetags/humanize.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/api.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/constants.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/context_processors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/middleware.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/api.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/constants.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/context_processors.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/middleware.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/__pycache__/session.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/cookie.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/fallback.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/storage/session.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/test.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/messages/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/constraints.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/expressions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/functions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/indexes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/lookups.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/search.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/serializers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/signals.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/__pycache__/validators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/general.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/mixins.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/aggregates/statistics.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/constraints.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/expressions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/array.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/citext.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/hstore.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/jsonb.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/ranges.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/fields/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/array.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/hstore.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/forms/ranges.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/functions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/indexes.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/jinja2/postgres/widgets/split_array.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/lookups.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/search.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/serializers.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/signals.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/templates/postgres/widgets/split_array.html create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/postgres/validators.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/__pycache__/admin.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/__pycache__/middleware.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/admin.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/kab/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/middleware.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/migrations/0001_initial.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/redirects/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__pycache__/base_session.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__pycache__/middleware.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/__pycache__/serializers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/base.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/cache.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/cached_db.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/db.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/file.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/backends/signed_cookies.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/base_session.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/kab/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/management/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/management/commands/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/management/commands/clearsessions.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/middleware.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/migrations/0001_initial.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sessions/serializers.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/templates/sitemap.xml create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/templates/sitemap_index.xml create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sitemaps/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/admin.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/checks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/management.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/managers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/middleware.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/requests.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/admin.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/checks.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/af/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ar/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ast/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/az/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/be/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/bg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/bn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/br/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/bs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ca/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ckb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ckb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/cs/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/cy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/da/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/de/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/dsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/el/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/en/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/eo/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/et/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/eu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/fy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ga/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/gd/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/gl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/he/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hsb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hu/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/hy/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ia/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/id/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/io/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/is/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/it/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ja/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ka/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/kab/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/kk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/km/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/kn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ko/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ky/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/lb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/lt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/lv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/mk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ml/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/mn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/mr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ms/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/my/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/nb/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ne/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/nl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/nn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/os/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pa/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ro/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ru/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sl/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sq/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sv/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/sw/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ta/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/te/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tg/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/th/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tr/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/tt/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/udm/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ug/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ug/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/uk/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/ur/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/uz/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/vi/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/management.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/managers.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/middleware.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/migrations/0001_initial.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/migrations/0002_alter_domain_unique.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/models.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/requests.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/sites/shortcuts.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/checks.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/finders.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/handlers.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/collectstatic.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/findstatic.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/management/commands/runserver.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/storage.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/testing.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/urls.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/staticfiles/views.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/syndication/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/syndication/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/syndication/__pycache__/apps.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/syndication/__pycache__/views.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/contrib/syndication/apps.py create mode 100644 gestao_raul/Lib/site-packages/django/contrib/syndication/views.py create mode 100644 gestao_raul/Lib/site-packages/django/core/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/asgi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/paginator.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/signals.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/signing.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/validators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/__pycache__/wsgi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/asgi.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/db.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/dummy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/filebased.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/locmem.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/memcached.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/__pycache__/redis.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/db.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/dummy.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/filebased.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/locmem.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/memcached.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/backends/redis.py create mode 100644 gestao_raul/Lib/site-packages/django/core/cache/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/async_checks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/caches.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/database.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/files.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/messages.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/model_checks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/registry.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/templates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/translation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/__pycache__/urls.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/async_checks.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/caches.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/compatibility/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/compatibility/django_4_0.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/database.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/files.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/messages.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/model_checks.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/registry.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/__pycache__/csrf.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/__pycache__/sessions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/csrf.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/security/sessions.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/templates.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/translation.py create mode 100644 gestao_raul/Lib/site-packages/django/core/checks/urls.py create mode 100644 gestao_raul/Lib/site-packages/django/core/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/images.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/locks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/move.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/temp.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/uploadedfile.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/uploadhandler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/images.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/locks.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/move.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/__pycache__/filesystem.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/__pycache__/handler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/__pycache__/memory.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/__pycache__/mixins.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/filesystem.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/handler.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/memory.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/storage/mixins.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/temp.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/uploadedfile.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/uploadhandler.py create mode 100644 gestao_raul/Lib/site-packages/django/core/files/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/__pycache__/asgi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/__pycache__/exception.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/__pycache__/wsgi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/asgi.py create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/exception.py create mode 100644 gestao_raul/Lib/site-packages/django/core/handlers/wsgi.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/__pycache__/message.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__pycache__/console.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__pycache__/dummy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__pycache__/filebased.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__pycache__/locmem.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/__pycache__/smtp.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/console.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/dummy.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/filebased.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/locmem.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/backends/smtp.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/message.py create mode 100644 gestao_raul/Lib/site-packages/django/core/mail/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/__pycache__/color.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/__pycache__/sql.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/__pycache__/templates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/color.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/check.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/dbshell.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/flush.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/loaddata.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/makemessages.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/migrate.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/runserver.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/shell.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/startapp.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/startproject.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/__pycache__/testserver.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/check.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/compilemessages.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/createcachetable.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/dbshell.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/diffsettings.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/dumpdata.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/flush.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/inspectdb.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/loaddata.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/makemessages.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/makemigrations.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/migrate.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/optimizemigration.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/runserver.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/sendtestemail.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/shell.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/showmigrations.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/sqlflush.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/sqlmigrate.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/sqlsequencereset.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/squashmigrations.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/startapp.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/startproject.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/test.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/commands/testserver.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/sql.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/templates.py create mode 100644 gestao_raul/Lib/site-packages/django/core/management/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/core/paginator.py create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__pycache__/json.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__pycache__/jsonl.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__pycache__/python.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__pycache__/pyyaml.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/base.py create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/json.py create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/jsonl.py create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/python.py create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/pyyaml.py create mode 100644 gestao_raul/Lib/site-packages/django/core/serializers/xml_serializer.py create mode 100644 gestao_raul/Lib/site-packages/django/core/servers/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/core/servers/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/servers/__pycache__/basehttp.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/core/servers/basehttp.py create mode 100644 gestao_raul/Lib/site-packages/django/core/signals.py create mode 100644 gestao_raul/Lib/site-packages/django/core/signing.py create mode 100644 gestao_raul/Lib/site-packages/django/core/validators.py create mode 100644 gestao_raul/Lib/site-packages/django/core/wsgi.py create mode 100644 gestao_raul/Lib/site-packages/django/db/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/__pycache__/transaction.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/__pycache__/ddl_references.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/__pycache__/signals.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/client.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/creation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/__pycache__/validation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/client.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/creation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/features.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/base/validation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/ddl_references.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/dummy/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/dummy/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/dummy/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/dummy/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/dummy/features.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/client.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/creation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/__pycache__/validation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/client.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/compiler.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/creation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/features.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/mysql/validation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/client.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/creation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/functions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/oracledb_any.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/__pycache__/validation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/client.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/creation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/features.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/functions.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/oracledb_any.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/oracle/validation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/client.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/psycopg_any.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/client.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/creation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/features.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/psycopg_any.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/postgresql/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/signals.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/_functions.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/client.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/creation.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/features.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/introspection.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/operations.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/sqlite3/schema.py create mode 100644 gestao_raul/Lib/site-packages/django/db/backends/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/autodetector.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/executor.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/graph.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/loader.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/migration.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/optimizer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/questioner.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/recorder.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/serializer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/state.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/__pycache__/writer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/autodetector.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/executor.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/graph.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/loader.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/migration.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/__pycache__/fields.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/__pycache__/special.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/fields.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/models.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/operations/special.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/optimizer.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/questioner.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/recorder.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/serializer.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/state.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/db/migrations/writer.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/aggregates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/constants.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/constraints.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/deletion.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/enums.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/expressions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/indexes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/lookups.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/manager.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/options.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/query.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/query_utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/signals.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/aggregates.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/base.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/constants.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/constraints.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/deletion.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/enums.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/expressions.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/files.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/generated.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/json.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/mixins.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/proxy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/related.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/files.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/generated.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/json.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/mixins.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/proxy.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/related.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/related_descriptors.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/related_lookups.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/fields/reverse_related.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__pycache__/comparison.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__pycache__/datetime.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__pycache__/math.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__pycache__/mixins.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__pycache__/text.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/__pycache__/window.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/comparison.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/datetime.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/math.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/mixins.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/text.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/functions/window.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/indexes.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/lookups.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/manager.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/options.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/query.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/query_utils.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/signals.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__pycache__/compiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__pycache__/constants.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__pycache__/datastructures.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__pycache__/query.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__pycache__/subqueries.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/__pycache__/where.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/compiler.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/constants.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/datastructures.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/query.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/subqueries.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/sql/where.py create mode 100644 gestao_raul/Lib/site-packages/django/db/models/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/db/transaction.py create mode 100644 gestao_raul/Lib/site-packages/django/db/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/dispatch/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/dispatch/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/dispatch/__pycache__/dispatcher.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/dispatch/dispatcher.py create mode 100644 gestao_raul/Lib/site-packages/django/dispatch/license.txt create mode 100644 gestao_raul/Lib/site-packages/django/forms/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/boundfield.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/fields.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/forms.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/formsets.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/renderers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/__pycache__/widgets.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/forms/boundfield.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/fields.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/forms.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/formsets.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/attrs.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/div.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/default.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/text.txt create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/errors/dict/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/default.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/text.txt create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/errors/list/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/field.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/formsets/div.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/formsets/p.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/formsets/table.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/formsets/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/label.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/p.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/table.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/attrs.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/checkbox_select.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/clearable_file_input.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/date.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/datetime.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/email.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/file.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/hidden.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/input_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_hidden.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiple_input.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/multiwidget.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/number.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/password.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/radio_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_date.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/select_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splitdatetime.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/splithiddendatetime.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/text.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/textarea.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/time.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/jinja2/django/forms/widgets/url.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/models.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/renderers.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/attrs.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/div.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/errors/dict/default.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/errors/dict/text.txt create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/errors/dict/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/errors/list/default.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/errors/list/text.txt create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/errors/list/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/field.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/formsets/div.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/formsets/p.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/formsets/table.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/formsets/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/label.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/p.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/table.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/ul.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/attrs.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/checkbox_select.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/clearable_file_input.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/date.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/datetime.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/email.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/file.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/hidden.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/input.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/input_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_hidden.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/multiple_input.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/multiwidget.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/number.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/password.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/radio.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/radio_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/select.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/select_date.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/select_option.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/splitdatetime.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/splithiddendatetime.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/text.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/textarea.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/time.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/templates/django/forms/widgets/url.html create mode 100644 gestao_raul/Lib/site-packages/django/forms/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/forms/widgets.py create mode 100644 gestao_raul/Lib/site-packages/django/http/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/http/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/http/__pycache__/cookie.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/http/__pycache__/multipartparser.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/http/__pycache__/request.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/http/__pycache__/response.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/http/cookie.py create mode 100644 gestao_raul/Lib/site-packages/django/http/multipartparser.py create mode 100644 gestao_raul/Lib/site-packages/django/http/request.py create mode 100644 gestao_raul/Lib/site-packages/django/http/response.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/clickjacking.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/common.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/csrf.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/gzip.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/http.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/locale.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/__pycache__/security.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/middleware/cache.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/clickjacking.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/common.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/csrf.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/gzip.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/http.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/locale.py create mode 100644 gestao_raul/Lib/site-packages/django/middleware/security.py create mode 100644 gestao_raul/Lib/site-packages/django/shortcuts.py create mode 100644 gestao_raul/Lib/site-packages/django/template/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/autoreload.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/context.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/context_processors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/defaultfilters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/defaulttags.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/engine.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/library.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/loader.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/loader_tags.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/response.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/smartif.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/autoreload.py create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/__pycache__/django.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/__pycache__/dummy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/__pycache__/jinja2.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/base.py create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/django.py create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/dummy.py create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/jinja2.py create mode 100644 gestao_raul/Lib/site-packages/django/template/backends/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/template/base.py create mode 100644 gestao_raul/Lib/site-packages/django/template/context.py create mode 100644 gestao_raul/Lib/site-packages/django/template/context_processors.py create mode 100644 gestao_raul/Lib/site-packages/django/template/defaultfilters.py create mode 100644 gestao_raul/Lib/site-packages/django/template/defaulttags.py create mode 100644 gestao_raul/Lib/site-packages/django/template/engine.py create mode 100644 gestao_raul/Lib/site-packages/django/template/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/django/template/library.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loader.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loader_tags.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/__pycache__/app_directories.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/__pycache__/cached.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/__pycache__/filesystem.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/__pycache__/locmem.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/app_directories.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/base.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/cached.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/filesystem.py create mode 100644 gestao_raul/Lib/site-packages/django/template/loaders/locmem.py create mode 100644 gestao_raul/Lib/site-packages/django/template/response.py create mode 100644 gestao_raul/Lib/site-packages/django/template/smartif.py create mode 100644 gestao_raul/Lib/site-packages/django/template/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/__pycache__/i18n.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/__pycache__/l10n.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/__pycache__/static.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/__pycache__/tz.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/cache.py create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/i18n.py create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/l10n.py create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/static.py create mode 100644 gestao_raul/Lib/site-packages/django/templatetags/tz.py create mode 100644 gestao_raul/Lib/site-packages/django/test/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/client.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/html.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/runner.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/selenium.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/signals.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/testcases.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/test/client.py create mode 100644 gestao_raul/Lib/site-packages/django/test/html.py create mode 100644 gestao_raul/Lib/site-packages/django/test/runner.py create mode 100644 gestao_raul/Lib/site-packages/django/test/selenium.py create mode 100644 gestao_raul/Lib/site-packages/django/test/signals.py create mode 100644 gestao_raul/Lib/site-packages/django/test/testcases.py create mode 100644 gestao_raul/Lib/site-packages/django/test/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/urls/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/urls/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/urls/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/urls/__pycache__/conf.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/urls/__pycache__/converters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/urls/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/urls/__pycache__/resolvers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/urls/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/urls/base.py create mode 100644 gestao_raul/Lib/site-packages/django/urls/conf.py create mode 100644 gestao_raul/Lib/site-packages/django/urls/converters.py create mode 100644 gestao_raul/Lib/site-packages/django/urls/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/django/urls/resolvers.py create mode 100644 gestao_raul/Lib/site-packages/django/urls/utils.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/_os.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/archive.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/asyncio.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/autoreload.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/choices.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/connection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/crypto.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/datastructures.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/dateformat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/dateparse.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/dates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/deconstruct.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/decorators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/duration.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/feedgenerator.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/functional.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/hashable.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/html.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/http.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/inspect.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/ipv6.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/itercompat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/jslex.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/log.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/lorem_ipsum.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/module_loading.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/numberformat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/regex_helper.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/safestring.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/termcolors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/text.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/timesince.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/timezone.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/tree.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/__pycache__/xmlutils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/_os.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/archive.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/asyncio.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/autoreload.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/cache.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/choices.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/connection.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/crypto.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/datastructures.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/dateformat.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/dateparse.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/dates.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/deconstruct.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/decorators.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/deprecation.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/duration.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/encoding.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/feedgenerator.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/formats.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/functional.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/hashable.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/html.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/http.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/inspect.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/ipv6.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/itercompat.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/jslex.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/log.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/lorem_ipsum.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/module_loading.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/numberformat.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/regex_helper.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/safestring.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/termcolors.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/text.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/timesince.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/timezone.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/__pycache__/reloader.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/__pycache__/template.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/__pycache__/trans_null.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/__pycache__/trans_real.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/reloader.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/template.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/trans_null.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/translation/trans_real.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/tree.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/version.py create mode 100644 gestao_raul/Lib/site-packages/django/utils/xmlutils.py create mode 100644 gestao_raul/Lib/site-packages/django/views/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/views/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/__pycache__/csrf.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/__pycache__/debug.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/__pycache__/defaults.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/__pycache__/i18n.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/__pycache__/static.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/csrf.py create mode 100644 gestao_raul/Lib/site-packages/django/views/debug.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/clickjacking.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/common.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/csrf.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/debug.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/gzip.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/http.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/__pycache__/vary.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/cache.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/clickjacking.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/common.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/csrf.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/debug.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/gzip.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/http.py create mode 100644 gestao_raul/Lib/site-packages/django/views/decorators/vary.py create mode 100644 gestao_raul/Lib/site-packages/django/views/defaults.py create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/__init__.py create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/__pycache__/dates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/__pycache__/detail.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/__pycache__/edit.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/__pycache__/list.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/base.py create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/dates.py create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/detail.py create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/edit.py create mode 100644 gestao_raul/Lib/site-packages/django/views/generic/list.py create mode 100644 gestao_raul/Lib/site-packages/django/views/i18n.py create mode 100644 gestao_raul/Lib/site-packages/django/views/static.py create mode 100644 gestao_raul/Lib/site-packages/django/views/templates/csrf_403.html create mode 100644 gestao_raul/Lib/site-packages/django/views/templates/default_urlconf.html create mode 100644 gestao_raul/Lib/site-packages/django/views/templates/directory_index.html create mode 100644 gestao_raul/Lib/site-packages/django/views/templates/i18n_catalog.js create mode 100644 gestao_raul/Lib/site-packages/django/views/templates/technical_404.html create mode 100644 gestao_raul/Lib/site-packages/django/views/templates/technical_500.html create mode 100644 gestao_raul/Lib/site-packages/django/views/templates/technical_500.txt create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/INSTALLER create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/LICENSE.txt create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/METADATA create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/RECORD create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/REQUESTED create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/WHEEL create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/entry_points.txt create mode 100644 gestao_raul/Lib/site-packages/pip-23.0.1.dist-info/top_level.txt create mode 100644 gestao_raul/Lib/site-packages/pip/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/__main__.py create mode 100644 gestao_raul/Lib/site-packages/pip/__pip-runner__.py create mode 100644 gestao_raul/Lib/site-packages/pip/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/build_env.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cache.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/base_command.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/command_context.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/main.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/main_parser.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/parser.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/req_command.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/spinners.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/cli/status_codes.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/cache.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/check.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/completion.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/configuration.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/debug.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/download.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/freeze.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/hash.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/help.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/index.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/inspect.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/install.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/list.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/search.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/show.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/uninstall.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/commands/wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/configuration.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/base.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/installed.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/sdist.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/distributions/wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/collector.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/package_finder.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/index/sources.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/_distutils.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/locations/base.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/main.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/_json.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/base.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/candidate.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/direct_url.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/format_control.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/index.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/installation_report.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/link.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/scheme.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/search_scope.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/target_python.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/models/wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/auth.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/cache.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/download.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/session.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/utils.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/build_tracker.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/check.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/freeze.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/operations/prepare.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/pyproject.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/constructors.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/req_file.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/req_install.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/req_set.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/base.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/self_outdated_check.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/_log.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/appdirs.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/datetime.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/deprecation.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/egg_link.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/encoding.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/filesystem.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/filetypes.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/glibc.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/hashes.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/logging.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/misc.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/models.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/packaging.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/subprocess.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/unpacking.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/urls.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/utils/wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/git.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/subversion.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 gestao_raul/Lib/site-packages/pip/_internal/wheel_builder.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/certifi/core.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachinedict.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/macromanprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/codingstatemachinedict.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/enums.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/johabfreq.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/johabprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/macromanprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/resultdict.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/chardet/version.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__pycache__/ansi_test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__pycache__/initialise_test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__pycache__/isatty_test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/__pycache__/winterm_test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/ansi_test.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/ansitowin32_test.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/initialise_test.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/isatty_test.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/utils.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/tests/winterm_test.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/win32.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/database.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/index.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/locators.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/markers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/resources.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/t32.exe create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/t64.exe create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/util.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/version.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/w32.exe create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/w64.exe create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distro/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distro/__main__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/distro/distro.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/codec.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/core.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/intranges.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/package_data.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/markers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/tags.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/utils.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/packaging/version.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/console.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/filter.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/style.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/token.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pygments/util.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/__version__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/adapters.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/api.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/auth.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/certs.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/compat.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/cookies.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/help.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/hooks.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/models.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/packages.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/sessions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/structures.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/requests/utils.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__main__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_export_format.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_extension.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_loop.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_null_file.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_pick.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_stack.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_timer.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_win32_console.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_windows.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/abc.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/align.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/ansi.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/bar.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/box.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/cells.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/color.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/columns.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/console.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/constrain.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/containers.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/control.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/emoji.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/errors.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/filesize.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/json.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/layout.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/live.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/live_render.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/logging.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/markup.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/measure.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/padding.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/pager.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/palette.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/panel.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/pretty.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/progress.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/prompt.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/protocol.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/region.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/repr.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/rule.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/scope.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/screen.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/segment.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/spinner.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/status.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/style.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/styled.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/syntax.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/table.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/text.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/theme.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/themes.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/traceback.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/rich/tree.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/six.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/after.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/before.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/_re.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/tomli/_types.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/typing_extensions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/request.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/response.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/vendor.txt create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 gestao_raul/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 gestao_raul/Lib/site-packages/pip/py.typed create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/context.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/__pycache__/functools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/_vendor/zipp.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/extern/__init__.py create mode 100644 gestao_raul/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/INSTALLER create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/LICENSE create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/METADATA create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/RECORD create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/REQUESTED create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/WHEEL create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/entry_points.txt create mode 100644 gestao_raul/Lib/site-packages/setuptools-65.5.0.dist-info/top_level.txt create mode 100644 gestao_raul/Lib/site-packages/setuptools/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/_path.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/depends.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/discovery.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/dist.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/errors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/extension.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/glob.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/installer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/launch.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/logging.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_deprecation_warning.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/_collections.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/_functools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/py39compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/_collections.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/_functools.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/_macos_compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/archive_util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/cmd.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/build.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/check.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/clean.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/config.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/install.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/register.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/command/upload.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/config.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/core.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/debug.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/dep_util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/dir_util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/dist.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/errors.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/extension.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/file_util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/filelist.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/log.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/py38compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/py39compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/spawn.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/text_file.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/version.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_entry_points.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_imp.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_importlib.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_itertools.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_path.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_reqs.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_adapters.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_common.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_itertools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/_legacy.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/abc.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/readers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/__pycache__/simple.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/context.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/__pycache__/functools.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/context.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/functools.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/common.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/core.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/results.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/pyparsing/util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/_parser.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/_re.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/tomli/_types.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/typing_extensions.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/_vendor/zipp.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/archive_util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/build_meta.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/cli-32.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/cli-64.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/cli-arm64.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/cli.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/build.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/alias.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/bdist_egg.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/bdist_rpm.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/build.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/build_clib.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/build_ext.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/build_py.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/develop.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/dist_info.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/easy_install.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/editable_wheel.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/egg_info.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/install.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/install_egg_info.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/install_lib.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/install_scripts.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/launcher manifest.xml create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/py36compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/register.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/rotate.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/saveopts.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/sdist.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/setopt.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/test.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/upload.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/command/upload_docs.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/expand.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/pyprojecttoml.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/config/setupcfg.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/dep_util.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/depends.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/discovery.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/dist.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/errors.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/extension.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/extern/__init__.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/setuptools/glob.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/gui-32.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/gui-64.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/gui-arm64.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/gui.exe create mode 100644 gestao_raul/Lib/site-packages/setuptools/installer.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/launch.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/logging.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/monkey.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/msvc.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/namespaces.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/package_index.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/py34compat.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/sandbox.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/script (dev).tmpl create mode 100644 gestao_raul/Lib/site-packages/setuptools/script.tmpl create mode 100644 gestao_raul/Lib/site-packages/setuptools/unicode_utils.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/version.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/wheel.py create mode 100644 gestao_raul/Lib/site-packages/setuptools/windows_support.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse-0.5.2.dist-info/INSTALLER create mode 100644 gestao_raul/Lib/site-packages/sqlparse-0.5.2.dist-info/METADATA create mode 100644 gestao_raul/Lib/site-packages/sqlparse-0.5.2.dist-info/RECORD create mode 100644 gestao_raul/Lib/site-packages/sqlparse-0.5.2.dist-info/WHEEL create mode 100644 gestao_raul/Lib/site-packages/sqlparse-0.5.2.dist-info/entry_points.txt create mode 100644 gestao_raul/Lib/site-packages/sqlparse-0.5.2.dist-info/licenses/AUTHORS create mode 100644 gestao_raul/Lib/site-packages/sqlparse-0.5.2.dist-info/licenses/LICENSE create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__init__.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__main__.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/__main__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/cli.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/exceptions.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/formatter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/keywords.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/lexer.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/sql.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/tokens.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/__pycache__/utils.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/cli.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/__init__.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/__pycache__/filter_stack.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/__pycache__/grouping.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/__pycache__/statement_splitter.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/filter_stack.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/grouping.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/engine/statement_splitter.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/exceptions.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__init__.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__pycache__/aligned_indent.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__pycache__/others.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__pycache__/output.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__pycache__/reindent.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__pycache__/right_margin.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/__pycache__/tokens.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/aligned_indent.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/others.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/output.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/reindent.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/right_margin.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/filters/tokens.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/formatter.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/keywords.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/lexer.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/sql.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/tokens.py create mode 100644 gestao_raul/Lib/site-packages/sqlparse/utils.py create mode 100644 gestao_raul/Lib/site-packages/typing_extensions-4.12.2.dist-info/INSTALLER create mode 100644 gestao_raul/Lib/site-packages/typing_extensions-4.12.2.dist-info/LICENSE create mode 100644 gestao_raul/Lib/site-packages/typing_extensions-4.12.2.dist-info/METADATA create mode 100644 gestao_raul/Lib/site-packages/typing_extensions-4.12.2.dist-info/RECORD create mode 100644 gestao_raul/Lib/site-packages/typing_extensions-4.12.2.dist-info/WHEEL create mode 100644 gestao_raul/Lib/site-packages/typing_extensions.py create mode 100644 gestao_raul/Lib/site-packages/tzdata-2024.2.dist-info/INSTALLER create mode 100644 gestao_raul/Lib/site-packages/tzdata-2024.2.dist-info/LICENSE create mode 100644 gestao_raul/Lib/site-packages/tzdata-2024.2.dist-info/LICENSE_APACHE create mode 100644 gestao_raul/Lib/site-packages/tzdata-2024.2.dist-info/METADATA create mode 100644 gestao_raul/Lib/site-packages/tzdata-2024.2.dist-info/RECORD create mode 100644 gestao_raul/Lib/site-packages/tzdata-2024.2.dist-info/WHEEL create mode 100644 gestao_raul/Lib/site-packages/tzdata-2024.2.dist-info/top_level.txt create mode 100644 gestao_raul/Lib/site-packages/tzdata/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Abidjan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Accra create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Addis_Ababa create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Algiers create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Asmara create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Asmera create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Bamako create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Bangui create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Banjul create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Bissau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Blantyre create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Brazzaville create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Bujumbura create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Cairo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Casablanca create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Ceuta create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Conakry create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Dakar create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Dar_es_Salaam create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Djibouti create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Douala create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/El_Aaiun create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Freetown create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Gaborone create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Harare create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Johannesburg create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Juba create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Kampala create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Khartoum create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Kigali create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Kinshasa create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Lagos create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Libreville create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Lome create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Luanda create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Lubumbashi create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Lusaka create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Malabo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Maputo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Maseru create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Mbabane create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Mogadishu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Monrovia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Nairobi create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Ndjamena create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Niamey create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Nouakchott create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Ouagadougou create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Porto-Novo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Sao_Tome create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Timbuktu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Tripoli create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Tunis create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/Windhoek create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Africa/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Adak create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Anchorage create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Anguilla create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Antigua create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Araguaina create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Buenos_Aires create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Catamarca create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/ComodRivadavia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Cordoba create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Jujuy create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/La_Rioja create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Mendoza create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Rio_Gallegos create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Salta create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Juan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/San_Luis create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Tucuman create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/Ushuaia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Argentina/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Aruba create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Asuncion create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Atikokan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Atka create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Bahia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Bahia_Banderas create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Barbados create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Belem create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Belize create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Blanc-Sablon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Boa_Vista create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Bogota create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Boise create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Buenos_Aires create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Cambridge_Bay create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Campo_Grande create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Cancun create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Caracas create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Catamarca create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Cayenne create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Cayman create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Chicago create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Chihuahua create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Ciudad_Juarez create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Coral_Harbour create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Cordoba create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Costa_Rica create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Creston create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Cuiaba create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Curacao create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Danmarkshavn create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Dawson create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Dawson_Creek create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Denver create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Detroit create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Dominica create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Edmonton create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Eirunepe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/El_Salvador create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Ensenada create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Fort_Nelson create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Fort_Wayne create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Fortaleza create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Glace_Bay create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Godthab create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Goose_Bay create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Grand_Turk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Grenada create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Guadeloupe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Guatemala create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Guayaquil create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Guyana create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Halifax create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Havana create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Hermosillo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Indianapolis create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Knox create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Marengo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Petersburg create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Tell_City create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vevay create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Vincennes create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/Winamac create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indiana/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Indianapolis create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Inuvik create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Iqaluit create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Jamaica create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Jujuy create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Juneau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Louisville create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/Monticello create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Kentucky/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Knox_IN create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Kralendijk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/La_Paz create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Lima create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Los_Angeles create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Louisville create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Lower_Princes create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Maceio create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Managua create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Manaus create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Marigot create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Martinique create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Matamoros create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Mazatlan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Mendoza create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Menominee create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Merida create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Metlakatla create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Mexico_City create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Miquelon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Moncton create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Monterrey create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Montevideo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Montreal create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Montserrat create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Nassau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/New_York create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Nipigon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Nome create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Noronha create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Beulah create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/Center create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/New_Salem create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/North_Dakota/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Nuuk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Ojinaga create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Panama create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Pangnirtung create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Paramaribo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Phoenix create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Port-au-Prince create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Port_of_Spain create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Porto_Acre create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Porto_Velho create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Puerto_Rico create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Punta_Arenas create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Rainy_River create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Rankin_Inlet create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Recife create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Regina create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Resolute create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Rio_Branco create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Rosario create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Santa_Isabel create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Santarem create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Santiago create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Santo_Domingo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Sao_Paulo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Scoresbysund create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Shiprock create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Sitka create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/St_Barthelemy create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/St_Johns create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/St_Kitts create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/St_Lucia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/St_Thomas create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/St_Vincent create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Swift_Current create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Tegucigalpa create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Thule create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Thunder_Bay create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Tijuana create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Toronto create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Tortola create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Vancouver create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Virgin create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Whitehorse create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Winnipeg create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Yakutat create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/Yellowknife create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/America/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Casey create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Davis create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/DumontDUrville create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Macquarie create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Mawson create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/McMurdo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Palmer create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Rothera create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/South_Pole create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Syowa create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Troll create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/Vostok create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Antarctica/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Arctic/Longyearbyen create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Arctic/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Arctic/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Aden create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Almaty create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Amman create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Anadyr create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Aqtobe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Ashgabat create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Ashkhabad create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Atyrau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Baghdad create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Bahrain create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Baku create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Bangkok create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Barnaul create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Beirut create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Bishkek create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Brunei create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Calcutta create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Chita create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Choibalsan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Chongqing create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Chungking create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Colombo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Dacca create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Damascus create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Dhaka create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Dili create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Dubai create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Dushanbe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Famagusta create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Gaza create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Harbin create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Hebron create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Ho_Chi_Minh create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Hong_Kong create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Hovd create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Irkutsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Istanbul create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Jakarta create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Jayapura create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Jerusalem create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kabul create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kamchatka create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Karachi create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kashgar create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kathmandu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Katmandu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Khandyga create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kolkata create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Krasnoyarsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kuala_Lumpur create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kuching create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Kuwait create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Macao create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Macau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Magadan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Makassar create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Manila create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Muscat create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Nicosia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Novokuznetsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Novosibirsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Omsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Oral create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Phnom_Penh create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Pontianak create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Pyongyang create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Qatar create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Qostanay create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Qyzylorda create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Rangoon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Riyadh create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Saigon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Sakhalin create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Samarkand create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Seoul create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Shanghai create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Singapore create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Srednekolymsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Taipei create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Tashkent create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Tbilisi create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Tehran create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Tel_Aviv create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Thimbu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Thimphu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Tokyo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Tomsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Ujung_Pandang create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Ulaanbaatar create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Ulan_Bator create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Urumqi create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Ust-Nera create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Vientiane create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Vladivostok create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Yakutsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Yangon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Yekaterinburg create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/Yerevan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Asia/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Azores create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Bermuda create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Canary create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Cape_Verde create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faeroe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Faroe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Jan_Mayen create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Madeira create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Reykjavik create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/South_Georgia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/St_Helena create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/Stanley create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Atlantic/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/ACT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Adelaide create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Brisbane create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Broken_Hill create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Canberra create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Currie create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Darwin create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Eucla create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Hobart create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/LHI create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Lindeman create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Lord_Howe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Melbourne create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/NSW create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/North create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Perth create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Queensland create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/South create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Sydney create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Tasmania create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Victoria create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/West create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/Yancowinna create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Australia/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Brazil/Acre create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Brazil/DeNoronha create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Brazil/East create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Brazil/West create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Brazil/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Brazil/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/CET create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/CST6CDT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Atlantic create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Central create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Eastern create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Mountain create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Newfoundland create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Pacific create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Saskatchewan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/Yukon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Canada/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Chile/Continental create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Chile/EasterIsland create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Chile/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Chile/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Cuba create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/EET create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/EST create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/EST5EDT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Egypt create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Eire create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+0 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+1 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+10 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+11 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+12 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+2 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+3 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+4 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+5 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+6 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+7 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+8 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT+9 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-0 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-1 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-10 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-11 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-12 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-13 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-14 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-2 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-3 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-4 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-5 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-6 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-7 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-8 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT-9 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/GMT0 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/Greenwich create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/UCT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/UTC create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/Universal create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/Zulu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Etc/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Amsterdam create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Andorra create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Astrakhan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Athens create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Belfast create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Belgrade create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Berlin create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Bratislava create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Brussels create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Bucharest create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Budapest create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Busingen create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Chisinau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Copenhagen create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Dublin create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Gibraltar create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Guernsey create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Helsinki create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Isle_of_Man create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Istanbul create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Jersey create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Kaliningrad create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Kiev create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Kirov create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Kyiv create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Lisbon create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Ljubljana create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/London create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Luxembourg create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Madrid create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Malta create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Mariehamn create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Minsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Monaco create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Moscow create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Nicosia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Oslo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Paris create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Podgorica create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Prague create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Riga create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Rome create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Samara create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/San_Marino create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Sarajevo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Saratov create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Simferopol create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Skopje create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Sofia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Stockholm create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Tallinn create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Tirane create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Tiraspol create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Ulyanovsk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Uzhgorod create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Vaduz create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Vatican create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Vienna create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Vilnius create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Volgograd create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Warsaw create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Zagreb create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Zaporozhye create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/Zurich create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Europe/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Factory create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/GB create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/GB-Eire create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/GMT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/GMT+0 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/GMT-0 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/GMT0 create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Greenwich create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/HST create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Hongkong create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Iceland create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Antananarivo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Chagos create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Christmas create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Cocos create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Comoro create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Kerguelen create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Mahe create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Maldives create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Mauritius create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Mayotte create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/Reunion create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Indian/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Iran create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Israel create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Jamaica create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Japan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Kwajalein create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Libya create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/MET create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/MST create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/MST7MDT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaNorte create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Mexico/BajaSur create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Mexico/General create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Mexico/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Mexico/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/NZ create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/NZ-CHAT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Navajo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/PRC create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/PST8PDT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Apia create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Auckland create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Bougainville create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Chatham create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Chuuk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Easter create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Efate create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Enderbury create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Fakaofo create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Fiji create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Funafuti create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Galapagos create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Gambier create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Guadalcanal create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Guam create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Honolulu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Johnston create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Kanton create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Kiritimati create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Kosrae create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Kwajalein create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Majuro create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Marquesas create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Midway create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Nauru create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Niue create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Norfolk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Noumea create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Pago_Pago create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Palau create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Pitcairn create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Pohnpei create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Ponape create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Port_Moresby create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Rarotonga create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Saipan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Samoa create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Tahiti create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Tarawa create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Tongatapu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Truk create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Wake create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Wallis create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/Yap create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Pacific/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Poland create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Portugal create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/ROC create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/ROK create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Singapore create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Turkey create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/UCT create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Alaska create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Aleutian create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Arizona create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Central create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/East-Indiana create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Eastern create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Hawaii create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Indiana-Starke create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Michigan create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Mountain create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Pacific create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/Samoa create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/US/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/UTC create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Universal create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/W-SU create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/WET create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/Zulu create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/__init__.py create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/__pycache__/__init__.cpython-310.pyc create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/iso3166.tab create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/leapseconds create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/tzdata.zi create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/zone.tab create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/zone1970.tab create mode 100644 gestao_raul/Lib/site-packages/tzdata/zoneinfo/zonenow.tab create mode 100644 gestao_raul/Lib/site-packages/tzdata/zones create mode 100644 gestao_raul/Scripts/Activate.ps1 create mode 100644 gestao_raul/Scripts/activate create mode 100644 gestao_raul/Scripts/activate.bat create mode 100644 gestao_raul/Scripts/deactivate.bat create mode 100644 gestao_raul/Scripts/django-admin.exe create mode 100644 gestao_raul/Scripts/pip.exe create mode 100644 gestao_raul/Scripts/pip3.10.exe create mode 100644 gestao_raul/Scripts/pip3.exe create mode 100644 gestao_raul/Scripts/python.exe create mode 100644 gestao_raul/Scripts/pythonw.exe create mode 100644 gestao_raul/Scripts/sqlformat.exe create mode 100644 gestao_raul/pyvenv.cfg diff --git a/comandos.txt b/comandos.txt new file mode 100644 index 0000000..1f71b27 --- /dev/null +++ b/comandos.txt @@ -0,0 +1,7 @@ +$ mkdir djangotutorial +$ django-admin startproject mysite djangotutorial +$ python manage.py runserver +python manage.py startapp polls +python manage.py makemigrations +python manage.py migrate +python manage.py createsuperuser \ No newline at end of file diff --git a/gestaoRaul/__pycache__/manage.cpython-310.pyc b/gestaoRaul/__pycache__/manage.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe2b53695c7d9863ac1445bb9fea4710f1f70c12 GIT binary patch literal 839 zcmZuuO>Yx15VgIV54AJ`Ar*S_t;&HMxF8UsR847%Ag!8Ih$xa}*6zx!*RE`D+C(iv zl%K%?j@j5$Pv1Ok^r*$Hd)}$tA)_kp679>(fWwBW`lL>S<<+f*bKbDjIq%)uHQ7(upmpFX5m9D5ne*&{_%#`cXdSO7nMGQfp$M zqkC@$+q=EJ^}#lkW~`hwg*1VVxl=K2jdqoor3AHe8ECMSXP`9?l5z?ULdo^br)#}- zvm(}4jq7~X0(2(iA@mrA%VIXtPG+6#z({#6V?7t=Q!Vbyy4iHjx+?J#U!~mT<2ISQ z6M2?>LoSZ-*W-;RqXRFUADv1a?5JzAGA8n)xuVQLx$AROcQminIhj;x!If!15`Q0{ zMF_r)TbRUkMN;y+`GH)u>h4x#)MPA1GuEzE4aS7c7;_1DTuksU#_&RdBQm=Ii?a+* Y3oA-3pT(*A7C?%daV5>x0#2{~0Pg`kg2xr%>0lZ}AOl7q#{r0oS%5?eLokCTqu)w~B9JhG_~qto6%$&VT2vfU zo|;pVALEjrT$-DjS5h34o?2Xzm>*x1SegT62Z5N$i6yD&`9+zj#WC^mnR%Hd@$q^E XmA5!-a`RJ4b5iX<<`**o2^Izbx;7~v literal 0 HcmV?d00001 diff --git a/gestaoRaul/categories/__pycache__/admin.cpython-310.pyc b/gestaoRaul/categories/__pycache__/admin.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..069680224ed48d8dcb310b98dd19637ec7244157 GIT binary patch literal 204 zcmd1j<>g`kg2xr%=}sUT#6bp3K#l_t7YhK16owSW9EM!RC`Lwx6sBMXP3D(CQ3g%M zTdavGxtV!>noLoADOrhm>G^ue`FSNpnMp+;16DE=F#{LC2eZc;^V5n!@GYeS5N*0 zPfm6hcL!!Nk8i%rj2VskK=S=^pMUz-2m2CIFd?<4WDt;PC|SxFTmuHkKLEL6?>r4K zyoI>;Lnw%uJDk?_+*GR~U;50xFbXE5c1%V=$`GiVr5uAaL{2QBJDST@<)$f=-LSl! z;G?W^li)*A8dTaQvm&2%t+^_cM%Q2dH!R|wi-f3Tsf2KSAqd}T?+=A|>ZIOQj!~^- zr&}S3MXc5|p|5>G<8QJyzq9#Sc4t*%vuCASlU)&{HH%KPy z+9vgD!->t`(H@YAAY>6+=N2({gY8}(+XVhwkKPTi@dlK0(fMYR3x7fD35PJ|e`nEi AO8@`> literal 0 HcmV?d00001 diff --git a/gestaoRaul/categories/__pycache__/models.cpython-310.pyc b/gestaoRaul/categories/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45908ea7710e236b57215450a79d2ac580e5df4d GIT binary patch literal 612 zcmYjOv2NTj43#XO&vu+8Lq4F}EjM&5iXz1Y>C_w26a@?ef_h|}yUKPV*=R4w)~p%w z8T};zojPUh*rg@!(&Pw`dL*SsitP6Hb3yX+{!{&%&R^{8N=(iXseeHR1V}3ySxPD1 z35Y=53Q#Cl(RWoUh(CzQ=z;Eui3~~80b0LccUKfSN2LBG85E@iQAVg%F-VB+WH}<7 z0FeCvA55RM1*=Xmz2`smU5>MPp5tB$+H z&|us9sz%?NPCGN$M|{d~@zi9soy7EV9mZPw-f5k2-H1#guMeKTGkr|YCwWM<=03Cz zxz@xmSjL6cSA((JjAMq7y&d}QWQi6+w1kk&E{xl_F6FeMg03L6`Nxjg;}~y)SM2$2 xDhgT11GS0HCvnJNW!k!%!sl(N(R<$MCcQ(%^Kr};(%0KY-|%cb^A_Sz{R79LlRp3e literal 0 HcmV?d00001 diff --git a/gestaoRaul/categories/__pycache__/urls.cpython-310.pyc b/gestaoRaul/categories/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5007e8ef6d0b405df186631abfd936c173e0f87 GIT binary patch literal 299 zcmYk0&q~BF5XLi2Tg(3OJ$mT_h={0X4~hsSAYo^yyClt$q^^Qjk3NX6l&hzG1ur^L zK?m}i`N(|9=a$Qv;Cg(%9bUMkd$3TH#goPeJV1d#UR`wDE0hS~;C01C! z$^rTc53WVq?Aaq)Naa??`#t=K>S0a0kVKlTbfm%gHHEx0YD<@Go#wdF(inppC`9e+b{Qv*} literal 0 HcmV?d00001 diff --git a/gestaoRaul/categories/__pycache__/views.cpython-310.pyc b/gestaoRaul/categories/__pycache__/views.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9cf18c3477de57bdc0f2da9dfed6050d8b8bfad GIT binary patch literal 341 zcmYjM%}N6?5Kgk&R+bh$diJ)LeE<;=)^iVv2qhrPX4qD;8=Xlkik|dk`bxQa@)bOF zQVQ+B_s!2YnVGoRtPpG$UymKK|4qrUDNb$}bk1aikyi9_A*C?NWItk|OnxuQ(I2Z~ zBjXrhFo3O0`QB2TF=_^-ZC-rxpl`(w)%@eMZ9H@iS3uR$_ZHL2QpO3wYXI^afg`T` z*Y%}-AVAV^{Cr;bE?RTfv&Dm-kp4ifJgNU4_I6yLp+# pGxOXGovUc+(6_-8ro(sg?ua8Avk*_NdS`-#>-0y;nWkczZvpnmPbB~V literal 0 HcmV?d00001 diff --git a/gestaoRaul/categories/admin.py b/gestaoRaul/categories/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/gestaoRaul/categories/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/gestaoRaul/categories/apps.py b/gestaoRaul/categories/apps.py new file mode 100644 index 0000000..fc45e88 --- /dev/null +++ b/gestaoRaul/categories/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class CategoriesConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'categories' diff --git a/gestaoRaul/categories/migrations/0001_initial.py b/gestaoRaul/categories/migrations/0001_initial.py new file mode 100644 index 0000000..8cecf45 --- /dev/null +++ b/gestaoRaul/categories/migrations/0001_initial.py @@ -0,0 +1,21 @@ +# Generated by Django 5.1.4 on 2024-12-10 00:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Category', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ], + ), + ] diff --git a/gestaoRaul/categories/migrations/0002_rename_category_categories.py b/gestaoRaul/categories/migrations/0002_rename_category_categories.py new file mode 100644 index 0000000..d946acf --- /dev/null +++ b/gestaoRaul/categories/migrations/0002_rename_category_categories.py @@ -0,0 +1,17 @@ +# Generated by Django 5.1.4 on 2024-12-10 01:01 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('categories', '0001_initial'), + ] + + operations = [ + migrations.RenameModel( + old_name='Category', + new_name='Categories', + ), + ] diff --git a/gestaoRaul/categories/migrations/__init__.py b/gestaoRaul/categories/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/categories/migrations/__pycache__/0001_initial.cpython-310.pyc b/gestaoRaul/categories/migrations/__pycache__/0001_initial.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c6b5534ed40a88acb58208cfbed59212164f4539 GIT binary patch literal 633 zcmYjP!EV$r5Vf7`Zjxtl(>gzH3}EdRA#`6RF? z99SWM7g5EE7)PsdXn~Ve0vuu(ZN*Z+nEVtbkZk!x4pQhw@Hy^l1E0>Xl-z&kYeS3w|UXaB&mgB)3DxMIQSUR;sPc h349m^8fF-RcO-Y{m@4_?*=|SA>3cC3x*Un)=pP`Fs=fdK literal 0 HcmV?d00001 diff --git a/gestaoRaul/categories/migrations/__pycache__/0002_rename_category_categories.cpython-310.pyc b/gestaoRaul/categories/migrations/__pycache__/0002_rename_category_categories.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..64a2daba0fec7831172f35314c2244c2ec5a99ee GIT binary patch literal 553 zcmY*X%}T>S5Z<4prm;m&K7hAeO7$orLIqFlp(0`kEHOL8lq6fTDWzwpTi#5xjC;}=<4#dW4io!G6v_Ky@uNF~AJG^HU2XXaXB>AW(GJJLnc zj_HoKYymTV64#KbDg$kL!{P8mWMx)oaUOc3O=e~M7GVvZ@Ki2E85dx@5|#~`1bfC4 z4HUxoLKI3aazNY@;%O1*w%kS%=1@u~6Qrsb$}sy=u*tEKkQ-mkq1E|Lssqe7?(1=M z7Ts#7bhL!LR?(G876p{Gj#AKdtV9(r@)l1m+=+^IR~MnYQ&BbjL|d`i0vu>CUsW7? zc5vxKbRJ>cSvxMHj5g`kg2xr%>0lZ}AOl7q#{r0oS%5?eLokCTqu)w~B9JhG_!a1E6%$&VT2vfU zo|;pVALEjrT$-DjS5h34o?2Xzm>*x1SegT62Z5N$i6yD&`9+zj#WA^==|zbpnfZCe iG4b)4d6^~g@p=W7w>WHa^HWN5Qtd!i6*B<|76t&);Vr`e literal 0 HcmV?d00001 diff --git a/gestaoRaul/categories/models.py b/gestaoRaul/categories/models.py new file mode 100644 index 0000000..3588f5d --- /dev/null +++ b/gestaoRaul/categories/models.py @@ -0,0 +1,10 @@ +from django.db import models + +# Create your models here. +class Categories(models.Model): + id = models.AutoField(primary_key=True) + name = models.CharField(max_length=255) + + + def __str__(self) -> str: + return self.name \ No newline at end of file diff --git a/gestaoRaul/categories/templates/categories.html b/gestaoRaul/categories/templates/categories.html new file mode 100644 index 0000000..f1f3bc5 --- /dev/null +++ b/gestaoRaul/categories/templates/categories.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} + + + + +{% block 'title' %} +Categorias{% endblock %} + +{% block 'body' %} +Body Type Pay +{% endblock %} \ No newline at end of file diff --git a/gestaoRaul/categories/tests.py b/gestaoRaul/categories/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gestaoRaul/categories/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gestaoRaul/categories/urls.py b/gestaoRaul/categories/urls.py new file mode 100644 index 0000000..209d9e2 --- /dev/null +++ b/gestaoRaul/categories/urls.py @@ -0,0 +1,10 @@ + +from django.urls import path +from . import views + +urlpatterns = [ + path('', views.categories, name='categories'), + + + +] diff --git a/gestaoRaul/categories/views.py b/gestaoRaul/categories/views.py new file mode 100644 index 0000000..80ff42f --- /dev/null +++ b/gestaoRaul/categories/views.py @@ -0,0 +1,6 @@ +from django.shortcuts import render + + + +def categories(request): + return render(request, 'categories.html') \ No newline at end of file diff --git a/gestaoRaul/clients/__init__.py b/gestaoRaul/clients/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/clients/__pycache__/__init__.cpython-310.pyc b/gestaoRaul/clients/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8e355f510cd7154f712ea6c3f33bb56a21fb390d GIT binary patch literal 160 zcmd1j<>g`kf-M!{=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6w+*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fClXEh`((&<`d6^~g@p=W7w>WHa S^HWN5Qtd#77c&6~76t$or6;)n literal 0 HcmV?d00001 diff --git a/gestaoRaul/clients/__pycache__/admin.cpython-310.pyc b/gestaoRaul/clients/__pycache__/admin.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd98d29dc9913e7e77644ad4d5b148e67d0b0114 GIT binary patch literal 201 zcmd1j<>g`kf-M!{=}tiUF^Gc(44TX@fuanW zjJH@5Q*tx&{4|-O_)@YG^V0M6lJoOQiZYXmKnAR2C}IXuVB(j9vsFxJacWUV+0yn J46;Cg0RV_yGZFv* literal 0 HcmV?d00001 diff --git a/gestaoRaul/clients/__pycache__/apps.cpython-310.pyc b/gestaoRaul/clients/__pycache__/apps.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b059f3b2adcd8d5fcfca5e8f8c31b0cd945ccd24 GIT binary patch literal 441 zcmYjNJ5Izf5Vhkhg#9#VTO`^vIRHYiOAvHhfDlp?$uc`m6y(GqPQ<5W55X1aIgMK? zu0X|j6Nw#Z#`Af8^U<@}n4o;U+~*(oe!E~-d<+(-<`@kSpo)|ol!qE?+NJ#C$vaVxYWktSrnO&h6EKtoHjU)*Lg1>3Pz)O5!$l}{stO{ARrl)v2 zf=5y1I)aC&)F73KE{c5Fwfd@%3he&6N3X(>4LGkvDLJ=e&Jo-x=TA9*>Vz69hafZ2 zsg?_*;MtbLcePK_xNB_9?|FQZ-Wl1L^jWG_rZTzKoP7c5+5N&kt~xjCB=!sPJpgqi#P{Y@|G1> zU<2a@iH_ybdo#}Sj3;_^bwJQg->;@yl#owPmMuiGhudzV0|Hc$ie{9OV*&xNR{~7Z zS@6O#2H`nLqc1#1QtIMLgH*QgblD;#d$_H4l4KM}7DzS=fkN;`vj}kvD2BL)IKg;? zxc?WY$m2Jb4WNhDB`zMTQr67{Ub%8_%1W3yzmxN?AC$+~pc2nq$$Hw{BI|*?5v^)c zW@5~{ux^!d(X|rw-6UOc3Foz_BZu;Vbyt0K;%Bo+ Y{};0+!;P@lOf6KVIW)Ei!R0u{{sKF+60typMO=@+mK@p%P zz0NSh#b??>y}^U^x)iaYV4T7+oTSCy9#+v%#{d8T literal 0 HcmV?d00001 diff --git a/gestaoRaul/clients/__pycache__/views.cpython-310.pyc b/gestaoRaul/clients/__pycache__/views.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..652702ff5ee468b30c1a4aec40d1667692d5993c GIT binary patch literal 332 zcmYjM%}T>S5Z>LSO(_X@^c8Z+0~9HRdhS6Hp)5$qE@@?x)tQY&5ijb)^p*DN$ye~? zOv#}GGxN>g_wD+kmkgv&+)q;2@qEAJKYV(#iZg2a5)h=`nSg({Z1N%H!3`YSI>in(N z3w?(cP#>%dUSIoW==e&vv{m~Ds0TOV8-^pPe%adtR!^@n8#_#gtTLC7QQDMAyfBY- l-}(x79zrt&1b**ne3Cy4QyRqCRp-s%?2^BRDTQ3*=|6j*OMd_W literal 0 HcmV?d00001 diff --git a/gestaoRaul/clients/admin.py b/gestaoRaul/clients/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/gestaoRaul/clients/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/gestaoRaul/clients/apps.py b/gestaoRaul/clients/apps.py new file mode 100644 index 0000000..a3e937d --- /dev/null +++ b/gestaoRaul/clients/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ClientsConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'clients' diff --git a/gestaoRaul/clients/migrations/0001_initial.py b/gestaoRaul/clients/migrations/0001_initial.py new file mode 100644 index 0000000..be812c6 --- /dev/null +++ b/gestaoRaul/clients/migrations/0001_initial.py @@ -0,0 +1,23 @@ +# Generated by Django 5.1.4 on 2024-12-10 00:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Client', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ('active', models.BooleanField(default=True)), + ('contact', models.CharField(blank=True, max_length=255, null=True)), + ], + ), + ] diff --git a/gestaoRaul/clients/migrations/__init__.py b/gestaoRaul/clients/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/clients/migrations/__pycache__/0001_initial.cpython-310.pyc b/gestaoRaul/clients/migrations/__pycache__/0001_initial.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c8f6594c8c72a326470c49d15d570c3e506e46e0 GIT binary patch literal 726 zcmYjP!H&}~5Vf5&P11H*aX=j4ij>Q$ToFPGMayaTuz--FNS51iv+g=c*G_5FF#Nb5xS# z6iCj1=0QpFP!3j+FCmAk7$}4=*s>*q2yp^Kh_@6`f+)pk+M`h)qZp+y-UdrnhA`Q( zlI9~gKyvq7a{8auI~UEgl6C8tf)gY>S{qdfv*DL=;}R>45?XzcF04f*uWyiHMzJgL znQK{>?S+fPqE#OydWRsFqSLJ#E}FVUcNVz8T#NeB_!comr*+0m;z6`jQiDCq#xCaE zC+FOyoa2l-?d>t=SDn!N$WYa)MJjF#axH6+^+HK&a9_lYW=4uup8DyUzP)_$L(Mu@6zjBxLx7j2^NBdO+_}_9y%s-}JZ6 ovd|^45_Q=e!MyLUZ>bO7vfNpZF`J8@??(25`U1YvA$t(~1I`l13;+NC literal 0 HcmV?d00001 diff --git a/gestaoRaul/clients/migrations/__pycache__/__init__.cpython-310.pyc b/gestaoRaul/clients/migrations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8d620fc09af83329da5212e13d7bd48d782780fc GIT binary patch literal 171 zcmd1j<>g`kf-M!{=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6wy*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fClXEh`(z%)GMTsSu`FX`L@$s2? dnI-Y@dIgoYIBatBQ%ZAE?LhVvGXV(}1^^$;EL{Kq literal 0 HcmV?d00001 diff --git a/gestaoRaul/clients/models.py b/gestaoRaul/clients/models.py new file mode 100644 index 0000000..164d064 --- /dev/null +++ b/gestaoRaul/clients/models.py @@ -0,0 +1,8 @@ +from django.db import models + +# Create your models here. +class Client(models.Model): + id = models.AutoField(primary_key=True) + name = models.CharField(max_length=255) + active = models.BooleanField(default=True) + contact = models.CharField(max_length=255, null=True, blank=True) \ No newline at end of file diff --git a/gestaoRaul/clients/templates/clients.html b/gestaoRaul/clients/templates/clients.html new file mode 100644 index 0000000..97f1dd2 --- /dev/null +++ b/gestaoRaul/clients/templates/clients.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + + + + +{% block 'title' %} +Type Pay +{% endblock %} + +{% block 'body' %} +Body Type Pay +{% endblock %} \ No newline at end of file diff --git a/gestaoRaul/clients/tests.py b/gestaoRaul/clients/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gestaoRaul/clients/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gestaoRaul/clients/urls.py b/gestaoRaul/clients/urls.py new file mode 100644 index 0000000..3c1b828 --- /dev/null +++ b/gestaoRaul/clients/urls.py @@ -0,0 +1,10 @@ + +from django.urls import path, include +from . import views + +urlpatterns = [ + path('', views.clients, name='clients'), + + + +] diff --git a/gestaoRaul/clients/views.py b/gestaoRaul/clients/views.py new file mode 100644 index 0000000..b7fcd2b --- /dev/null +++ b/gestaoRaul/clients/views.py @@ -0,0 +1,6 @@ +from django.shortcuts import render + +# Create your views here. + +def clients(request): + return render(request, 'clients.html') \ No newline at end of file diff --git a/gestaoRaul/comandas/__init__.py b/gestaoRaul/comandas/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/comandas/__pycache__/__init__.cpython-310.pyc b/gestaoRaul/comandas/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6cc069d9fac9f153b06ba85aecd9e1abb7d16936 GIT binary patch literal 161 zcmd1j<>g`kg1r^t=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6wo*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fClk;;E^HLIvW8&j8^D;}~g`kg1r^t=}tiUF^Gc(44TX@fuanW zjJH@5Q*tx&{4|-O_)@YG^V0M6lJoOQiZYXmKnAR2C}IXuVB(jfvsFxJacWU(WwG_dw3lKtzB3Y*6Mnz5>;zWG5aEji5LvRsq zS#bqcjN2eO(mc=S`HekhH0lG{=kr~@rt`}uyB1P1A-Bf_2*@-PEM*L?00ZRjfLyUR zo(34+K-~K#7R1c$PpfKX%H=9w_{y#^N+#rXOrRiT2y~mJ9D_7OPAZ{0n3+PBDD76` z^#~tinVSUflft0VHaTDA)3z~}E2Yszi;g~zdoB{9l!X$)^@SjIt9?8a;<1&w>l~t5 z%2qc*l7?7rL_**DfZFe413#15Np@>hZL=q(8S7`1g!V zR+UYvmztB7-=N(ih#+JU+tlVUcZ2Rvo?8cgsAvC=-$nzfx#)EJk2AkJ>jj4}=D(+b BaC-m% literal 0 HcmV?d00001 diff --git a/gestaoRaul/comandas/__pycache__/models.cpython-310.pyc b/gestaoRaul/comandas/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..092504485513b2cec3cb8376ff5d74e5bca11771 GIT binary patch literal 1259 zcma)6%Wl&^6!rKKKjJ)^hJp}+ZnNnJAcR`d775y@qN$KZkw(+ZC`~(lFm_b3hHch- zLx0IzR{aFnz`f(NRDuPTe01((Ja_Ir&0gY5R26VZU&j>+w=bBXX* zF5LjDhev|!&H5;nKg<%I3O>FeRWsM~gzF`{l1nhdEM;&$S;~Q}n^0oqrVFJY67xlw zu{678TnGrp81&8+Pp<}!Ni{Cr0srkU0O&%L@Xt)ibXH!B2K_2vEai!0tcn~%PoN>uh-RMBCk<$RXDmrLzo+#l|p4)^vCsGC5$HTJX$P7lUx zbar$^gA#hra=xru`@EFnc_PiXs4q&Ev~%k%ek@i zbBG)G`DXZXat14k$+c8vHrdaniv;FhOlGnudB!wfs5Sq9bXqsLnAD2d$(P!PuZ8dy zU4X!fNtg6UOxmOm%tZgv3!Zlumy7}aQ!kNG3ZYG-2h>Zgr53QZ@F0qMacD>QAnl-P zul0K;3mw2-8n2*kAz-yI;|=6Eb~EGApsRamY$Eg#aCZ6;!WP0~1U#~S0zmzBL-bR$ zLcvSUN|=qt+g$m1eTVcj6XkiX=2M=QeM+i7-sIYv)=RGijDiHhLd3%VOoNa;RdNaLVeduFW&tDmVIm3MPh% zHbQX_>VlS#XVjtZk`6Auu~6K9<70VoDsQ6>QSP-#US9guWVK6Cjyfjg?}M7mZ+%_L czw@%(>UWP>oLP^P(dWf!6ofg<;e?CNFQ#KmVgLXD literal 0 HcmV?d00001 diff --git a/gestaoRaul/comandas/__pycache__/views.cpython-310.pyc b/gestaoRaul/comandas/__pycache__/views.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eaf95959c90493313b63925d92084046aa6c7533 GIT binary patch literal 335 zcmYjM%}N6?5Kgk&A4(TI`U-nl@G3==dhS6Hp#&ss!nTrZG?Q2q@uJ|f^p$e;Dc>8#1!9f>+7{V64*C@MP%Pf6);rZ}1^b5oCv5%0C2^>^{Ds@Gw=rtjz|Rr`J3_lxQH(o(T^lbc?#k oC;CzKoo`^}Lu^xoKqv3y-2q25L?Mr7&g*2&1^o_6q$!)0|Fil`qyPW_ literal 0 HcmV?d00001 diff --git a/gestaoRaul/comandas/admin.py b/gestaoRaul/comandas/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/gestaoRaul/comandas/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/gestaoRaul/comandas/apps.py b/gestaoRaul/comandas/apps.py new file mode 100644 index 0000000..28c99c7 --- /dev/null +++ b/gestaoRaul/comandas/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class ComandasConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'comandas' diff --git a/gestaoRaul/comandas/migrations/0001_initial.py b/gestaoRaul/comandas/migrations/0001_initial.py new file mode 100644 index 0000000..243b118 --- /dev/null +++ b/gestaoRaul/comandas/migrations/0001_initial.py @@ -0,0 +1,30 @@ +# Generated by Django 5.1.4 on 2024-12-10 01:19 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ('clients', '0001_initial'), + ('mesas', '0001_initial'), + ('typePay', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='Comanda', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('dt_open', models.DateTimeField(auto_now_add=True)), + ('dt_close', models.DateTimeField(blank=True, null=True)), + ('name', models.CharField(max_length=255)), + ('client', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='clients.client')), + ('mesa', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='mesas.mesa')), + ('type_pay', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='typePay.typepay')), + ], + ), + ] diff --git a/gestaoRaul/comandas/migrations/0002_productcomanda.py b/gestaoRaul/comandas/migrations/0002_productcomanda.py new file mode 100644 index 0000000..1e0d178 --- /dev/null +++ b/gestaoRaul/comandas/migrations/0002_productcomanda.py @@ -0,0 +1,25 @@ +# Generated by Django 5.1.4 on 2024-12-10 01:20 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('comandas', '0001_initial'), + ('products', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='ProductComanda', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('data_time', models.DateTimeField(auto_now_add=True)), + ('applicant', models.CharField(blank=True, max_length=255, null=True)), + ('comanda', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='comandas.comanda')), + ('product', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='products.product')), + ], + ), + ] diff --git a/gestaoRaul/comandas/migrations/__init__.py b/gestaoRaul/comandas/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/comandas/migrations/__pycache__/0001_initial.cpython-310.pyc b/gestaoRaul/comandas/migrations/__pycache__/0001_initial.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e2bf15a2b1e6e431fce0424a55fc4007e1b12a4 GIT binary patch literal 1094 zcmYjQOK%e~5MFyX*+-r&&<8@?IIKXca775UN?Q)J6(U7QQ6$UFxZ6$l5xg6fi29DnMPocC7k{3~y=Bl1#AmV(i zvHPQq$_~!_7Yb2E8B!oaGsI{=$j}nCNnOVg_QU}KHK;G?83h}47j^i4=bNrqyvv&V`-kz(1y(= z4asl~wvg?%a*u9Up7;4fh!up0iunmj1n&A>_W_yn+u6oL<^y8C|EWXsZUgs&x(wt*(Kuu%0XZpXSvXU zPGg>4C@Y=CF-o3@t7{#UU`6;B7K=12&Q-m7=c2uOZ&0niCA(-W*H9=oOBt3;6hhG= zQqd*0oFhED|x~$Nsu<7}GCh zOnHo9v&>?>Z!-3I#^V)Yuac>nATS9a(s3kmN%d8Yz7)I=N4m|VsZZQpOwfT2pjvwf zokWSKRJVW5WwrGVGAW`keTR9j!-S_{rYM|ZJ~eG@UF8h+PuTIt!$U06?x4TBx34@b z!K$%;8uB>?E5+YI|JCRt7AqfJinz!|d)auF=w29wA}@HxB%j5r{Rh1rS5?nPcRyux zziWc&T>nqQ#+g4w;TRTmsAW^qrEStBZSsU{k;jDovHm&NrLA9A+ZB-jPJ`;(1vhNu lGrUB(w|JSmGF_$b9hYkNLR&kpt8%;{`W3o;9oi)u=6_)THK70i literal 0 HcmV?d00001 diff --git a/gestaoRaul/comandas/migrations/__pycache__/0002_productcomanda.cpython-310.pyc b/gestaoRaul/comandas/migrations/__pycache__/0002_productcomanda.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c99ec0c210a409f66ab916c1febef497b816038 GIT binary patch literal 963 zcmZ8gOK;RL5Kf%OCfP@qf)GfYxWHakg(E_!C2cvNR;VpPiXvI=j+-V;?2v~_d!^#G zXMO{J$yZMO3m~;j9;;S(W$%15WBZ%W6FDAx8jii6U!os|ru}Zf{b3^5#97X90S)w2 z3v~P^Dank$$jrdhwGSE?U|wlpawD<68-WG-p*FLwagVk?Bg)I-s9;qrMXBse0#D0D z6T3f#2sUw+SGe%@mVkf`BqD*q&BSW%;C3WDloUGu-5LI{^x(t`6CO~mn71IHF${pA1QZl#T$!o7BXW3SgA%E8yl}^ zEaEC=X%oo{3H72X3mdts$)^tbUA`hQ9PMJ-FfZba6&Li3UnsZa1@4Y7xpIM3j8<{R zXSy1(x{_4LbIJge%kn&p7fe*ww|Ml-P}XtE#2G5ezR{G6s5(`qsMAypdU}`B70-EZ z;MJ}a6jkRHSEQ0^&=bC#u9(kz19MHmGOp~Cn5R(g&!)a?*(lzy#Q z+DAsfb1s03Ma;{BG%^hRg0qV6HP2mOZ)wWi!rFG5bJchoLq}M02VMV^6`kqr%7Vv{ z_=qCekT4NRMc`ODEq`nwHSo6%{jKdC<;k4)ZS_klUf>n&^5@8Z6Mja0%kZ41l?=D# zqRzOe%JAUe{f-|-ysVf!V09Xg`kg1r^t=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6w?*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fClk;;E^HLIvV{$XoixNvR^Ye;h h;^Q;(GE3s)^$IF)aoFVMrz literal 0 HcmV?d00001 diff --git a/gestaoRaul/comandas/models.py b/gestaoRaul/comandas/models.py new file mode 100644 index 0000000..2235073 --- /dev/null +++ b/gestaoRaul/comandas/models.py @@ -0,0 +1,23 @@ +from django.db import models + +from clients.models import Client +from products.models import Product +from mesas.models import Mesa +from typePay.models import TypePay + +# Create your models here. +class Comanda(models.Model): + id = models.AutoField(primary_key=True) + mesa = models.ForeignKey(Mesa, on_delete=models.CASCADE) + type_pay = models.ForeignKey(TypePay, on_delete=models.SET_NULL, null=True) + dt_open = models.DateTimeField(auto_now_add=True) + dt_close = models.DateTimeField(null=True, blank=True) + client = models.ForeignKey(Client, on_delete=models.SET_NULL, null=True, blank=True) + name = models.CharField(max_length=255) + +class ProductComanda(models.Model): + id = models.AutoField(primary_key=True) + comanda = models.ForeignKey(Comanda, on_delete=models.CASCADE) + data_time = models.DateTimeField(auto_now_add=True) + product = models.ForeignKey(Product, on_delete=models.CASCADE) + applicant = models.CharField(max_length=255, null=True, blank=True) \ No newline at end of file diff --git a/gestaoRaul/comandas/templates/comandas.html b/gestaoRaul/comandas/templates/comandas.html new file mode 100644 index 0000000..97f1dd2 --- /dev/null +++ b/gestaoRaul/comandas/templates/comandas.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + + + + +{% block 'title' %} +Type Pay +{% endblock %} + +{% block 'body' %} +Body Type Pay +{% endblock %} \ No newline at end of file diff --git a/gestaoRaul/comandas/tests.py b/gestaoRaul/comandas/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gestaoRaul/comandas/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gestaoRaul/comandas/urls.py b/gestaoRaul/comandas/urls.py new file mode 100644 index 0000000..c739f6d --- /dev/null +++ b/gestaoRaul/comandas/urls.py @@ -0,0 +1,10 @@ + +from django.urls import path +from . import views + +urlpatterns = [ + path('', views.comandas, name='comandas'), + + + +] diff --git a/gestaoRaul/comandas/views.py b/gestaoRaul/comandas/views.py new file mode 100644 index 0000000..e60abb5 --- /dev/null +++ b/gestaoRaul/comandas/views.py @@ -0,0 +1,6 @@ +from django.shortcuts import render + +# Create your views here. + +def comandas(request): + return render(request, 'comandas.html') \ No newline at end of file diff --git a/gestaoRaul/db.sqlite3 b/gestaoRaul/db.sqlite3 new file mode 100644 index 0000000000000000000000000000000000000000..cf2fb2f5162258bcbbfdaad66586bc25d7dfbad5 GIT binary patch literal 131072 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 I$Y)aj0&Ci7mjD0& literal 0 HcmV?d00001 diff --git a/gestaoRaul/gestaoRaul/__pycache__/urls.cpython-310.pyc b/gestaoRaul/gestaoRaul/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36d26e027fd2322d8f966c9a20baff3d9ea3d042 GIT binary patch literal 1209 zcmb7EU2oGc6iwRnD{a}}foH#Ukw&5+@lpW-HU^UrLW2pZs?>S0o2H86$aWa5ctQI$ z{H46|#7}@Ht{q3KkdVMt-IMFv<8zOF!^dOafpN0^n7r~F=evH`9eVW{eB~FIh%Z|1Sitm8V=BOYz7yX)Rf3vh>aNcYAyxCgjz@c^)I@euIH;xXVm z7ViPx*Es3T`sD6=C%A{dwj9U5IDdm;o-fm+6j-G^M@ueHLZ!m|9G4j?1Ygrwg}(n` zMbTv`vH~kbMJ_KB8_FFlOxz(M*hpsm;slZ`ln?c8`Wl8LwXdV z=Y$}fqm&g~s3}5A!5Lzk1uhC3tYw<~hc;hVpbOZk5dI3qt_~)XLtEF1GkS<}%;=Me z#*@H5&ajjZuAnfo!}>QBT&<|kLPDdsk@Fh3{zr|@53yWml7rw6MQ3@Ol_bp*Fv0An zOVfwk_;Y5AK_CT=N9WRm04=SR)7q~3I6`fBBhuy`8dLsR?N!E;2n=j?n&^PxodkjZ z1Ny)T+^T~KOY@*rdD`)+XS26m6OXn7xEQ32m5jFI1{#uWmr;o!?3>>@)>oT?zQdbn zJF>{e<1D4QCK*{&#|LoTa85MMxPkS`Fvf}|T%;7%_HG}{>f2yY^%e`bzKg}|j&%%- zRwBI;&|OY7+_6!#AtKMqpGVX>+Dj~UpO(WfrZ%KI>R&S-z%9koa9?Wh0qH$wk~=eNwm}DRrwF0pW#TnJO*KTQQzIhg!S_Bx;A z+G8%E)_7fk@%h@7Do^iXN64_7gl8pq-kk9r8R2>F)B9onoR3Z}E(XK?h<`rsU7nrX zJpJE*%z^jHl&;$e9nPZ)&I3gko@}*bMSMcmAX^%_LI=!BSu`Pyg%W15hdw;qA^lBk zGtP~>|M2l>a_PXj$r`lBNe_!8+f8%BxyJ5qb)z{(R?Y8gl;@=>y!ETd- K2ao7un$kbFT(oom literal 0 HcmV?d00001 diff --git a/gestaoRaul/gestaoRaul/asgi.py b/gestaoRaul/gestaoRaul/asgi.py new file mode 100644 index 0000000..7423bed --- /dev/null +++ b/gestaoRaul/gestaoRaul/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for gestaoRaul project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.1/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gestaoRaul.settings') + +application = get_asgi_application() diff --git a/gestaoRaul/gestaoRaul/settings.py b/gestaoRaul/gestaoRaul/settings.py new file mode 100644 index 0000000..5e0df23 --- /dev/null +++ b/gestaoRaul/gestaoRaul/settings.py @@ -0,0 +1,135 @@ +""" +Django settings for gestaoRaul project. + +Generated by 'django-admin startproject' using Django 5.1.4. + +For more information on this file, see +https://docs.djangoproject.com/en/5.1/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/5.1/ref/settings/ +""" + +import os +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/5.1/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-mqcnrs5!hc6bj$�@@9d8^2@x#w&$qhk3vlr5_)3znd9h6&d8' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'products', + 'mesas', + 'typePay', + 'clients', + 'comandas', + 'categories', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'gestaoRaul.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [os.path.join(BASE_DIR, 'templates'),], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'gestaoRaul.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/5.1/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/5.1/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/5.1/topics/i18n/ + +LANGUAGE_CODE = 'pt-BR' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/5.1/howto/static-files/ + +STATIC_URL = 'static/' +STATICFILES_DIRS = (os.path.join(BASE_DIR, 'templates/static'),) +STATIC_ROOT = os.path.join(BASE_DIR, 'static') + +MEDIA_ROOT = os.path.join(BASE_DIR, 'media') +MEDIA_URL = '/media/' + +# Default primary key field type +# https://docs.djangoproject.com/en/5.1/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/gestaoRaul/gestaoRaul/urls.py b/gestaoRaul/gestaoRaul/urls.py new file mode 100644 index 0000000..22cab16 --- /dev/null +++ b/gestaoRaul/gestaoRaul/urls.py @@ -0,0 +1,30 @@ +""" +URL configuration for gestaoRaul project. + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/5.1/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path, include + +urlpatterns = [ + path('admin/', admin.site.urls), + path('products/', include('products.urls')), + path('mesas/', include('mesas.urls')), + path('typePay/', include('typePay.urls')), + path('clients/', include('clients.urls')), + path('comandas/', include('comandas.urls')), + path('categories/', include('categories.urls')), + + +] diff --git a/gestaoRaul/gestaoRaul/wsgi.py b/gestaoRaul/gestaoRaul/wsgi.py new file mode 100644 index 0000000..fa0a3c7 --- /dev/null +++ b/gestaoRaul/gestaoRaul/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for gestaoRaul project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/5.1/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gestaoRaul.settings') + +application = get_wsgi_application() diff --git a/gestaoRaul/manage.py b/gestaoRaul/manage.py new file mode 100644 index 0000000..836745e --- /dev/null +++ b/gestaoRaul/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gestaoRaul.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/gestaoRaul/mesas/__init__.py b/gestaoRaul/mesas/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/mesas/__pycache__/__init__.cpython-310.pyc b/gestaoRaul/mesas/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..86747e54abfef71527fe11ffe3d6b53dccf1e700 GIT binary patch literal 158 zcmd1j<>g`kf~ghZ=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6w!*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fCb5n~Gi(}&BGxIV_;^XxSDsOSv Tg`kf~ghZ=}tiUF^Gc(44TX@fuanW zjJH@5Q*tx&{4|-O_)@YG^V0M6lJoOQiZYXmKnAR2C}IXuVB(jZvsFxJacWUjuP|BxPnQi9)^is8^ zkqQOmvQr4D_r+@3LDpz_+B7!1u#2|PW#h73yGB`AqsBJAp|E>HrmD&% y)oU$Kh!*Ge5F!@xh`gSlnvYI4pE#qHIT9SQvG@a-6KuTz literal 0 HcmV?d00001 diff --git a/gestaoRaul/mesas/__pycache__/models.cpython-310.pyc b/gestaoRaul/mesas/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff8112c888725f31e66b6b90b395797e92e6aee1 GIT binary patch literal 573 zcmY*X!A{&T5VhkZn}i_s0{^g={eTL!+k)t6IRF(>6v;9>?rs(*20LllGhFvW_#4i? zq8|1axWG86)MYG>-|=9DIqVO>{^IqiqlTe0RgH=O$$mt;2#76 zV2=ctq^sb86%4`)GLE+R4H;7x*BYd46INRX#6f&_CJqlmOImLY=kiSHy+OzSVOE_;tEjf1?=h#H2JkB}4>x3FICh#KZx31Nv zl~mw@3S4@;6lS2I-{umf=c282LSijTu)v_!H{+3AdC)QXa`rZV$%ebyKC8U7Mi~?Gzowg2!XF zk7Y*1NHgy6t`XxvA0p<{_xL`$Jk@uEk@Obb81z+moIDOA=^kk`;USvI9qOB0?!9$3 ZYBw*bUix4shv)f5su^>b!-=eaegUr=N(cY| literal 0 HcmV?d00001 diff --git a/gestaoRaul/mesas/__pycache__/views.cpython-310.pyc b/gestaoRaul/mesas/__pycache__/views.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..890fb2c4c6a06c6f08dded0df1284646f458739f GIT binary patch literal 326 zcmYjM!Ab)$5S?UqTUlE0=r8PLKR~1i_1uFZLJi2W30oz*(M)1dL=gR%{!*@<`~^>) zS$gP$nRzcWnU}cvyadAi=Uw+j^_RslB#BE3JfoyR3k$ti3jtc{><89T=QmIlf7FGY zNE2@cZG0X zi^ikc8XKIta&7F*5KwhA)wl=WM0?=ZOvjb#_0epxett{EsCgB#Ln-`}%BsrJseWpP k&egbaKD05Q=a-J{(fTM&sF6-CdZ(i`3;q=5lx8r?_lJW?H~;_u literal 0 HcmV?d00001 diff --git a/gestaoRaul/mesas/admin.py b/gestaoRaul/mesas/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/gestaoRaul/mesas/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/gestaoRaul/mesas/apps.py b/gestaoRaul/mesas/apps.py new file mode 100644 index 0000000..b742cd6 --- /dev/null +++ b/gestaoRaul/mesas/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class MesasConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'mesas' diff --git a/gestaoRaul/mesas/migrations/0001_initial.py b/gestaoRaul/mesas/migrations/0001_initial.py new file mode 100644 index 0000000..8eb72d2 --- /dev/null +++ b/gestaoRaul/mesas/migrations/0001_initial.py @@ -0,0 +1,23 @@ +# Generated by Django 5.1.4 on 2024-12-10 00:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='Mesa', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=100)), + ('location', models.CharField(blank=True, max_length=255, null=True)), + ('active', models.BooleanField(default=False)), + ], + ), + ] diff --git a/gestaoRaul/mesas/migrations/__init__.py b/gestaoRaul/mesas/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/mesas/migrations/__pycache__/0001_initial.cpython-310.pyc b/gestaoRaul/mesas/migrations/__pycache__/0001_initial.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c30501676247e5131b5513ec05336d72ba243f00 GIT binary patch literal 728 zcmYjP&5qMR44#>!ZIb>_aX?()h?L8!ToFPGMa!ux#E+1oO3}1-v*}Kf?o0xdD_kq_ z8obh+kT~@f5MuG9MZ1p1@;A2Q&-PTqVZ=y&e*cgu!PqYcZi`Rgl#Y2s3K($33ZC#n zB!aV73pco|E4?5w-41oqYeaPXnC6Dt8-!Xfk^*l|K(i#S9S(cgJ=GoYJ@qKD3(`7qjv zj3<4#L*&Lboc(9@&iXSn(uy3;h;DzQ^Fr!vdWl;b8q~Q|`4_Z)DGS^K@ryb2BtNGL z%dEbzfvT2md;4qW^lWFLWO=Fkgea>~%68?l&Oah0_5fG1QFSbI==|MPjtb0qJg`BU zx)Nz>qco*CHOkq8G`(u1I(m9}nb$g`kf~ghZ=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6wq*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fCb5n~Gi(_&#(~A;IGV}9_W8&j8 e^D;}~ +{% endblock %} + +{% block 'title' %} +RRB&C - Mesas +{% endblock %} + +{% block 'body' %} + + +
+
{{nome}} 1
+
Card 2
+
Card 3
+
Card 4
+
Card 5
+
Card 6
+
Card 7
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
Card 8
+
Card 9
+
Card 10
+
+ + + +{% endblock %} \ No newline at end of file diff --git a/gestaoRaul/mesas/tests.py b/gestaoRaul/mesas/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gestaoRaul/mesas/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gestaoRaul/mesas/urls.py b/gestaoRaul/mesas/urls.py new file mode 100644 index 0000000..5b3cfff --- /dev/null +++ b/gestaoRaul/mesas/urls.py @@ -0,0 +1,10 @@ + +from django.urls import path +from . import views + +urlpatterns = [ + path('', views.mesas, name='mesas'), + + + +] diff --git a/gestaoRaul/mesas/views.py b/gestaoRaul/mesas/views.py new file mode 100644 index 0000000..6721bad --- /dev/null +++ b/gestaoRaul/mesas/views.py @@ -0,0 +1,6 @@ +from django.shortcuts import render + +# Create your views here. + +def mesas(request): + return render(request, 'mesas.html') \ No newline at end of file diff --git a/gestaoRaul/products/__init__.py b/gestaoRaul/products/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/products/__pycache__/__init__.cpython-310.pyc b/gestaoRaul/products/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f8daedd16696180e030437103c448829a8a762bb GIT binary patch literal 161 zcmd1j<>g`kf}Q2z=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6wo*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fC3yShnN|S-|@$s2?nI-Y@dIgoY UIBar(qB*H{Ak&MPfCLKz07>sCKmY&$ literal 0 HcmV?d00001 diff --git a/gestaoRaul/products/__pycache__/admin.cpython-310.pyc b/gestaoRaul/products/__pycache__/admin.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f25bb6d55e8435d7c7a49f6b5ff3c09f7355dd3a GIT binary patch literal 202 zcmd1j<>g`kf}Q2z=}tiUF^Gc(44TX@fuanW zjJH@5Q*tx&{4|-O_)@YG^V0M6lJoOQiZYXmKnAR2C}IXuVB(jfvsFxJacWUDlqLh^!FK2sRNmsS$ps4Kq}nk8 LO)Uo5Aiw|s$2K#W literal 0 HcmV?d00001 diff --git a/gestaoRaul/products/__pycache__/apps.cpython-310.pyc b/gestaoRaul/products/__pycache__/apps.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b71dae5032aa81a5f0d159e6b441c85ac434e975 GIT binary patch literal 444 zcmYjNOHRWu5FN)U3jMG^-6FBgCI>(WwG_dwLLh_`MY2rCjf$K&#EB}{!YQ}`N8l>n zvf>J?7`H)mq2bIRPyUro1 zrEGO0Bx#7{MkMsT52*bgp8)-yM8eM$j!@p-_ zvZ`!SJ=dJH{08kFK?EU-*rqm*xf^tU^4vP`Lp}R{{5Bd;%|)l%f1LT literal 0 HcmV?d00001 diff --git a/gestaoRaul/products/__pycache__/models.cpython-310.pyc b/gestaoRaul/products/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e5aad63a0483e8160591c4780b118cd56217752 GIT binary patch literal 902 zcmYjP&2H2%5VrHTf7$IXyu)7h0T4p8Tgm}ZAzFkKtz@N{X_~DQFOCCU#Eo8i zU*WQ^z=?6PpmpTQH~u`HUo{>N8Li(xKIRjTv0qNvT>&XCY1cCnz<^6u@`Q7TJ?WKx z;&b+zfe*n0g8=z5`0ghmgqLg@ZODdAxs6H%C~HE)d1^3My1+Vf6}CO=p_Tvh7dsy`lO9Wi*ZbH0t3?b2<_9&A=w?k2oG;O zh++H?Bu6lzF!yZlomS9f=87U5t#nbQdM)m7y#b2EMO~)%LSmJh+o@-Rs*%!$*D|f{ zHm-UbDjXxCy#_^InA%PNGkQmgl}s~qsSi{os0wJ1lpf$s+DKy~ji%96#_5TF%VD?Y zwCjk(H@0LHD8C@fph`>kLQtc;`N{MV@qbR|&lVqQ)b-*EN~0EMDr-utOufjlHmMSt zoNe)Y2UlIf^`h&{Y_+yMA!?(Am^iO4qlkaq+ZJZFer+zt37NE&+7ZX@%*~vu zaJ^5W&te|)34QzYKlEDmVj9^2EYm7iGq`RuOAfX^X^LlE0lT2Ww{Ff`vmHmSL)v+> T{pVf1UbybIosC)SJ@x+r80qd! literal 0 HcmV?d00001 diff --git a/gestaoRaul/products/__pycache__/urls.cpython-310.pyc b/gestaoRaul/products/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..83134cfb12019506343fb35b8b30fb8ac27be46a GIT binary patch literal 313 zcmYk0%}T^D5XUoZ`hj)D*XU&r9v6`XJ$q0@D21hThVCv&Q2z_aU$40ULJ>6j-RpkZy6VBc6Y%*fuMwj26WOSATYsHrCK%;1OZBt z`wTP8-_ik^9E*EVmq*?cbrR&%`E4k6W3OhUBg8I*>}f{_7epv0YjEzpH3w`egO1PrP3cej}7 zC$xZiXI=36-Z!zceL&sPR_$M)j_#B{aC&Cd@2_@;)%GLh=hlFQ@STZ-F@x*2oTQ(|BWm1@<=sY_wA6s}(q49vMAnMn1-2kE!M;iDg(OA}>^9BmlD_ z(z@HLO<;$1@tqE=q67@gzycPVfsIbu&{5D$Jutz6#uYnd;1c%11OLh-)Fjj-tqHA4 z+a}zC73jcfg}a2?q+P45*9om)CtXe5w41KM2HeqBaRWB5bj)?wA{KX*f3V2@SaXTO z5@R6~EP{vI+uP5$#5^1!pMRe&1Ts+WJ1Jlim5L>>PtL8eOh%!c@^hRjzd)IUS#pWW z);G+6nD%(8E6hnZd0F}w71%zGxgw*PuJ zm2Iz~?$_z};iO;xGyMez`G_u2{(pT{$*Opj?~+R`J<-g`kf}Q2z=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6w?*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fC3yShnN|S-|xtZxji6xo&dBrjD f@tJv str: + return self.name \ No newline at end of file diff --git a/gestaoRaul/products/templates/products.html b/gestaoRaul/products/templates/products.html new file mode 100644 index 0000000..97f1dd2 --- /dev/null +++ b/gestaoRaul/products/templates/products.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + + + + +{% block 'title' %} +Type Pay +{% endblock %} + +{% block 'body' %} +Body Type Pay +{% endblock %} \ No newline at end of file diff --git a/gestaoRaul/products/tests.py b/gestaoRaul/products/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gestaoRaul/products/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gestaoRaul/products/urls.py b/gestaoRaul/products/urls.py new file mode 100644 index 0000000..824f3c5 --- /dev/null +++ b/gestaoRaul/products/urls.py @@ -0,0 +1,10 @@ + +from django.urls import path, include +from . import views + +urlpatterns = [ + path('', views.products, name='products'), + + + +] diff --git a/gestaoRaul/products/views.py b/gestaoRaul/products/views.py new file mode 100644 index 0000000..9cc4669 --- /dev/null +++ b/gestaoRaul/products/views.py @@ -0,0 +1,5 @@ +from django.shortcuts import render + + +def products(request): + return render(request, 'products.html') \ No newline at end of file diff --git a/gestaoRaul/templates/base.html b/gestaoRaul/templates/base.html new file mode 100644 index 0000000..2e8afb0 --- /dev/null +++ b/gestaoRaul/templates/base.html @@ -0,0 +1,17 @@ +{% load static %} + + + + + + + + {% block 'head' %}{% endblock %} + {% block 'title' %}{% endblock %} + +
aqui o menu
+ + {% block 'body' %} + {% endblock %} + + \ No newline at end of file diff --git a/gestaoRaul/templates/static/mesas/css/mesas.css b/gestaoRaul/templates/static/mesas/css/mesas.css new file mode 100644 index 0000000..0124740 --- /dev/null +++ b/gestaoRaul/templates/static/mesas/css/mesas.css @@ -0,0 +1,26 @@ +.grid-container { + display: grid; + grid-template-columns: repeat(3, 2fr); + gap: 20px; + max-width: 800px; /* Define a largura máxima do grid */ + margin: 0 auto; /* Centraliza o grid na página */ + } + +.card { + width: 120px; + height: 120px; + background-color: #f2f2f2; + border-radius: 15px; + box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); + text-align: center; + line-height: 120px; /* Centraliza o texto verticalmente */ + font-size: 20px; + font-weight: bold; + color: #333; + transition: transform 0.2s; + } + +.card:hover { + transform: scale(1.05); + box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3); + } \ No newline at end of file diff --git a/gestaoRaul/typePay/__init__.py b/gestaoRaul/typePay/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/typePay/__pycache__/__init__.cpython-310.pyc b/gestaoRaul/typePay/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..84430a00e7936c59293e9d20f2eb21f73963a949 GIT binary patch literal 160 zcmd1j<>g`kg5?$A=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6w+*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fCODYRe0}?A^;^Q;(GE3s)^$IF) VaoFVMrg`kg5?$A=}tiUF^Gc(44TX@fuanW zjJH@5Q*tx&{4|-O_)@YG^V0M6lJoOQiZYXmKnAR2C}IXuVB(j9vsFxJacWUROG}aP6S~Khu{W?D|yR` zE3jhRMxrCl^L(D)*rP|IK0*6@xz9iF{PxMVg_umx?I8jXpo$bUrIcI}2!Op4V3NME zG=T7i#JwM6k(j!@sWCHME?4=&SGJ8}GC{Xv1W8f~1aH%nL6C;PP$hJu+tx@U+Kt5P z0X&K_*9kl%g$Ai?a<K^S=KhorLBeL6>4j zWWpGmn6_dl<=1C-5F!%Nh^}k%n7KjsBhRe@Khv}Sr*EPG)?9SF`NoM~ob`f3GG>1x CgKu&G literal 0 HcmV?d00001 diff --git a/gestaoRaul/typePay/__pycache__/models.cpython-310.pyc b/gestaoRaul/typePay/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce1f65f1ffd05c9955eb05b34c7a44bbc2b87dc9 GIT binary patch literal 463 zcmYjN%}&EG3{LvDZfwAb2S8kU*#jViHVwgv3BeFjRVfN{)NQ2gNLsO;;R^4;mB+~y zao8(x0cS;Gmh60AY=5#{^m-kF_Vsp`e&G9Q$+me&2I%?_0}!B+WHhFfTo7=;eIeiq zx^SM|*ah!~ME)AUTN$j4gkdvx4=iq zz_cdyQe5$Rg1S3PHP5)J*@LLpKd6C!os6%T6nR?C#!+ZO#&Vts#!QDX9HWvJcNu%E zxNI`Y!A{d2R%LNM7ZQv!2h$$SxN4|p%if9F#j;KK9*&NaTP>7Mo`fum zq(YaxV2W4r4_{kYHZv#99s0{!+12emb$}rxUAj*~=F9xdOy;-i^?~5{c)9Ce`Tb1de-tdvIDNxFfuMzf7C>NzQfEfC5(EL}BsV!0 zSiZ>~+5#6hqONwlBWj5GsKVn8{zUQoL|Y$4T!eX~D>bKqK^eNN%ecgi8hYDIPJ5T} zf=dQmo=`I4k~{ocAUF7T;gb1Ze4U;jb+?|J@3y3a?Jn%YWM~M!>&XXY@12_TzP?W7 c{(6^AHRBwsV`FjBbdr4fim`$f9LnnZ2OUyN!vFvP literal 0 HcmV?d00001 diff --git a/gestaoRaul/typePay/__pycache__/views.cpython-310.pyc b/gestaoRaul/typePay/__pycache__/views.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b4005327574cf5b4038615149d9ad0321c46c4de GIT binary patch literal 332 zcmYjM-AcnS6h3LYRYnJ1`U<`21Bl3AUJp@37y&8Gp;OXk<|G>x@kV`^y;5$y@)f-D zWb|SmoZm0`zQoMuGhpmK9@}rOKXEuk!oz}tE;uPrLPICkLV!wC`UUGmW%p1{ewl@X z2vdu_LfeQqkBEKBvE-oW=HQ)$J`=u}tlkPYZ1J`ps*UTkjeeyFxy4tH_Y|dp>rr}(@ m)O~9z+8FB^@5sjY9_gd~Nt!Yd&aOJ6yvFPJHOe>@P-Or3q)XNS literal 0 HcmV?d00001 diff --git a/gestaoRaul/typePay/admin.py b/gestaoRaul/typePay/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/gestaoRaul/typePay/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/gestaoRaul/typePay/apps.py b/gestaoRaul/typePay/apps.py new file mode 100644 index 0000000..f25721d --- /dev/null +++ b/gestaoRaul/typePay/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class TypepayConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'typePay' diff --git a/gestaoRaul/typePay/migrations/0001_initial.py b/gestaoRaul/typePay/migrations/0001_initial.py new file mode 100644 index 0000000..33855a7 --- /dev/null +++ b/gestaoRaul/typePay/migrations/0001_initial.py @@ -0,0 +1,21 @@ +# Generated by Django 5.1.4 on 2024-12-10 00:52 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ] + + operations = [ + migrations.CreateModel( + name='TypePay', + fields=[ + ('id', models.AutoField(primary_key=True, serialize=False)), + ('name', models.CharField(max_length=255)), + ], + ), + ] diff --git a/gestaoRaul/typePay/migrations/__init__.py b/gestaoRaul/typePay/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestaoRaul/typePay/migrations/__pycache__/0001_initial.cpython-310.pyc b/gestaoRaul/typePay/migrations/__pycache__/0001_initial.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0afc45e011ebc5ffa207edfee9461e5adfac626 GIT binary patch literal 629 zcmYjP&1w`u5bo}ooxe>a2Z?VW%q6T>5s9wEQ-Z{ZFbp*9R_$cg`LlZ#om}H}!PoGG zJoHKMlvnVOSUtOvR8z%QT}9Pb)!pvzCyeCxkB`MK&e$L4JQSatV^Z^!3^3pot9iz2 zkqOS;G7#W>XW$`UdDmX%f&ZSRlN-uqsjx|17FzXX+ZY?vEnsC9F7!}Ba*j#OYcj|( z4lEPEGp}HokCRp4T41<}fP)W{jaUi@$d4g}Xv3GH5D;%f!LtMsYCg5`>Hn@5HoO=* ze5VF0N;n}#(@vMQ(u4ergN+U9QdQ*@TE9^>-rNy|loM_BO;*?x{bee2OqVuTmRNx~ zqwTpIz!l8s($7xa?87BjBPfjIR30kv+almGw# literal 0 HcmV?d00001 diff --git a/gestaoRaul/typePay/migrations/__pycache__/__init__.cpython-310.pyc b/gestaoRaul/typePay/migrations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f38973e81e3ce7f12609844c2dcecc98cdc2e36a GIT binary patch literal 171 zcmd1j<>g`kg5?$A=^*+sh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o6wy*(xTqIJKxa zraU#LBtOO_Ke;qFHLs*NCOx&dBr!j}D6upL$_@fCODYRe0}?A^ax>G55=%1k^NM5Q g<1_OzOXB183My}L*yQG?l;)(`f$S+}0un3?02b^lN&o-= literal 0 HcmV?d00001 diff --git a/gestaoRaul/typePay/models.py b/gestaoRaul/typePay/models.py new file mode 100644 index 0000000..ad10a35 --- /dev/null +++ b/gestaoRaul/typePay/models.py @@ -0,0 +1,6 @@ +from django.db import models + +# Create your models here. +class TypePay(models.Model): + id = models.AutoField(primary_key=True) + name = models.CharField(max_length=255) \ No newline at end of file diff --git a/gestaoRaul/typePay/templates/typePay.html b/gestaoRaul/typePay/templates/typePay.html new file mode 100644 index 0000000..97f1dd2 --- /dev/null +++ b/gestaoRaul/typePay/templates/typePay.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + + + + +{% block 'title' %} +Type Pay +{% endblock %} + +{% block 'body' %} +Body Type Pay +{% endblock %} \ No newline at end of file diff --git a/gestaoRaul/typePay/tests.py b/gestaoRaul/typePay/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gestaoRaul/typePay/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gestaoRaul/typePay/urls.py b/gestaoRaul/typePay/urls.py new file mode 100644 index 0000000..dc202e1 --- /dev/null +++ b/gestaoRaul/typePay/urls.py @@ -0,0 +1,10 @@ + +from django.urls import path +from . import views + +urlpatterns = [ + path('', views.typePay, name='typePay'), + + + +] diff --git a/gestaoRaul/typePay/views.py b/gestaoRaul/typePay/views.py new file mode 100644 index 0000000..97cecb0 --- /dev/null +++ b/gestaoRaul/typePay/views.py @@ -0,0 +1,6 @@ +from django.shortcuts import render + +# Create your views here. + +def typePay(request): + return render(request, 'typePay.html') \ No newline at end of file diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/AUTHORS b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/AUTHORS new file mode 100644 index 0000000..0ba20a2 --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/AUTHORS @@ -0,0 +1,1106 @@ +Django was originally created in late 2003 at World Online, the web division +of the Lawrence Journal-World newspaper in Lawrence, Kansas. + +Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS -- +people who have submitted patches, reported bugs, added translations, helped +answer newbie questions, and generally made Django that much better: + + Aaron Cannon + Aaron Linville + Aaron Swartz + Aaron T. Myers + Abeer Upadhyay + Abhijeet Viswa + Abhinav Patil + Abhinav Yadav + Abhishek Gautam + Abhyudai + Adam Allred + Adam Bogdał + Adam Donaghy + Adam Johnson + Adam Malinowski + Adam Vandenberg + Adam Zapletal + Ade Lee + Adiyat Mubarak + Adnan Umer + Arslan Noor + Adrian Holovaty + Adrian Torres + Adrien Lemaire + Afonso Fernández Nogueira + AgarFu + Ahmad Alhashemi + Ahmad Al-Ibrahim + Ahmed Eltawela + ajs + Akash Agrawal + Akash Kumar Sen + Akis Kesoglou + Aksel Ethem + Akshesh Doshi + alang@bright-green.com + Alasdair Nicol + Albert Defler + Albert Wang + Alcides Fonseca + Aldian Fazrihady + Alejandro García Ruiz de Oteiza + Aleksander Milinkevich + Aleksandra Sendecka + Aleksi Häkli + Alex Dutton + Alexander Lazarević + Alexander Myodov + Alexandr Tatarinov + Alex Aktsipetrov + Alex Becker + Alex Couper + Alex Dedul + Alex Gaynor + Alex Hill + Alex Ogier + Alex Robbins + Alexey Boriskin + Alexey Tsivunin + Ali Vakilzade + Aljaž Košir + Aljosa Mohorovic + Alokik Vijay + Amir Karimi + Amit Chakradeo + Amit Ramon + Amit Upadhyay + A. Murat Eren + Ana Belen Sarabia + Ana Krivokapic + Andi Albrecht + André Ericson + Andrei Kulakov + Andreas + Andreas Mock + Andreas Pelme + Andrés Torres Marroquín + Andrew Brehaut + Andrew Clark + Andrew Durdin + Andrew Godwin + Andrew Miller + Andrew Pinkham + Andrews Medina + Andrew Northall + Andriy Sokolovskiy + Andy Chosak + Andy Dustman + Andy Gayton + andy@jadedplanet.net + Anssi Kääriäinen + ant9000@netwise.it + Anthony Briggs + Anthony Wright + Antoine Chéneau + Anton Samarchyan + Antoni Aloy + Antonio Cavedoni + Antonis Christofides + Antti Haapala + Antti Kaihola + Anubhav Joshi + Anvesh Mishra + Anže Pečar + Aram Dulyan + arien + Armin Ronacher + Aron Podrigal + Arsalan Ghassemi + Artem Gnilov + Arthur + Arthur Jovart + Arthur Koziel + Arthur Moreira + Arthur Rio + Arvis Bickovskis + Arya Khaligh + Aryeh Leib Taurog + A S Alam + Asif Saif Uddin + atlithorn + Audrey Roy + av0000@mail.ru + Axel Haustant + Aymeric Augustin + Bahadır Kandemir + Baishampayan Ghose + Baptiste Mispelon + Barry Pederson + Bartolome Sanchez Salado + Barton Ip + Bartosz Grabski + Bashar Al-Abdulhadi + Bastian Kleineidam + Batiste Bieler + Batman + Batuhan Taskaya + Baurzhan Ismagulov + Ben Dean Kawamura + Ben Firshman + Ben Godfrey + Benjamin Wohlwend + Ben Khoo + Ben Lomax + Ben Slavin + Ben Sturmfels + Berker Peksag + Bernd Schlapsi + Bernhard Essl + berto + Bhuvnesh Sharma + Bill Fenner + Bjørn Stabell + Bo Marchman + Bogdan Mateescu + Bojan Mihelac + Bouke Haarsma + Božidar Benko + Brad Melin + Brandon Chinn + Brant Harris + Brendan Hayward + Brendan Quinn + Brenton Simpson + Brett Cannon + Brett Hoerner + Brian Beck + Brian Fabian Crain + Brian Harring + Brian Helba + Brian Ray + Brian Rosner + Bruce Kroeze + Bruno Alla + Bruno Renié + brut.alll@gmail.com + Bryan Chow + Bryan Veloso + bthomas + btoll@bestweb.net + C8E + Caio Ariede + Calvin Spealman + Cameron Curry + Cameron Knight (ckknight) + Can Burak Çilingir + Can Sarıgöl + Carl Meyer + Carles Pina i Estany + Carlos Eduardo de Paula + Carlos Matías de la Torre + Carlton Gibson + cedric@terramater.net + Chad Whitman + ChaosKCW + Charlie Leifer + charly.wilhelm@gmail.com + Chason Chaffin + Cheng Zhang + Chinmoy Chakraborty + Chris Adams + Chris Beaven + Chris Bennett + Chris Cahoon + Chris Chamberlin + Chris Jerdonek + Chris Jones + Chris Lamb + Chris Streeter + Christian Barcenas + Christian Metts + Christian Oudard + Christian Tanzer + Christoffer Sjöbergsson + Christophe Pettus + Christopher Adams + Christopher Babiak + Christopher Lenz + Christoph Mędrela + Chris Wagner + Chris Wesseling + Chris Wilson + Ciaran McCormick + Claude Paroz + Clint Ecker + colin@owlfish.com + Colin Wood + Collin Anderson + Collin Grady + Colton Hicks + Craig Blaszczyk + crankycoder@gmail.com + Curtis Maloney (FunkyBob) + dackze+django@gmail.com + Dagur Páll Ammendrup + Dane Springmeyer + Dan Fairs + Daniel Alves Barbosa de Oliveira Vaz + Daniel Duan + Daniele Procida + Daniel Fairhead + Daniel Greenfeld + dAniel hAhler + Daniel Jilg + Daniel Lindsley + Daniel Poelzleithner + Daniel Pyrathon + Daniel Roseman + Daniel Tao + Daniel Wiesmann + Danilo Bargen + Dan Johnson + Dan Palmer + Dan Poirier + Dan Stephenson + Dan Watson + dave@thebarproject.com + David Ascher + David Avsajanishvili + David Blewett + David Brenneman + David Cramer + David Danier + David Eklund + David Foster + David Gouldin + david@kazserve.org + David Krauth + David Larlet + David Reynolds + David Sanders + David Schein + David Tulig + David Winterbottom + David Wobrock + Davide Ceretti + Deep L. Sukhwani + Deepak Thukral + Denis Kuzmichyov + Dennis Schwertel + Derek Willis + Deric Crago + deric@monowerks.com + Deryck Hodge + Dimitris Glezos + Dirk Datzert + Dirk Eschler + Dmitri Fedortchenko + Dmitry Jemerov + dne@mayonnaise.net + Dolan Antenucci + Donald Harvey + Donald Stufft + Don Spaulding + Doug Beck + Doug Napoleone + dready + Durval Carvalho de Souza + dusk@woofle.net + Dustyn Gibson + Ed Morley + Egidijus Macijauskas + eibaan@gmail.com + elky + Emmanuelle Delescolle + Emil Stenström + enlight + Enrico + Eric Boersma + Eric Brandwein + Eric Floehr + Eric Florenzano + Eric Holscher + Eric Moritz + Eric Palakovich Carr + Erik Karulf + Erik Romijn + eriks@win.tue.nl + Erin Kelly + Erwin Junge + Esdras Beleza + Espen Grindhaug + Étienne Beaulé + Eugene Lazutkin + Evan Grim + Fabian Büchler + Fabian Braun + Fabrice Aneche + Faishal Manzar + Farhaan Bukhsh + favo@exoweb.net + fdr + Federico Capoano + Felipe Lee + Filip Noetzel + Filip Wasilewski + Finn Gruwier Larsen + Fiza Ashraf + Flávio Juvenal da Silva Junior + flavio.curella@gmail.com + Florian Apolloner + Florian Demmer + Florian Moussous + fnaimi66 + Fran Hrženjak + Francesco Panico + Francisco Albarran Cristobal + Francisco Couzo + François Freitag + Frank Tegtmeyer + Frank Wierzbicki + Frank Wiles + František Malina + Fraser Nevett + Gabriel Grant + Gabriel Hurley + gandalf@owca.info + Garry Lawrence + Garry Polley + Garth Kidd + Gary Wilson + Gasper Koren + Gasper Zejn + Gav O'Connor + Gavin Wahl + Ge Hanbin + geber@datacollect.com + Geert Vanderkelen + George Karpenkov + George Song + George Vilches + George Y. Kussumoto + Georg "Hugo" Bauer + Georgi Stanojevski + Gerardo Orozco + Gil Gonçalves + Girish Kumar + Girish Sontakke + Gisle Aas + Glenn Maynard + glin@seznam.cz + GomoX + Gonzalo Saavedra + Gopal Narayanan + Graham Carlyle + Grant Jenks + Greg Chapple + Greg Twohig + Gregor Allensworth + Gregor Müllegger + Grigory Fateyev + Grzegorz Ślusarek + Guilherme Mesquita Gondim + Guillaume Pannatier + Gustavo Picon + hambaloney + Hang Park + Hannes Ljungberg + Hannes Struß + Hao Dong + Harm Geerts + Hasan Ramezani + Hawkeye + Helen Sherwood-Taylor + Henrique Romano + Henry Dang + Hidde Bultsma + Himanshu Chauhan + hipertracker@gmail.com + Hiroki Kiyohara + Hisham Mahmood + Honza Král + Horst Gutmann + Hugo Osvaldo Barrera + HyukJin Jang + Hyun Mi Ae + Iacopo Spalletti + Ian A Wilson + Ian Clelland + Ian Holsman + Ian Lee + Ibon + Idan Gazit + Idan Melamed + Ifedapo Olarewaju + Igor Kolar + Illia Volochii + Ilya Bass + Ilya Semenov + Ingo Klöcker + I.S. van Oostveen + Iuri de Silvio + ivan.chelubeev@gmail.com + Ivan Sagalaev (Maniac) + Jaap Roes + Jack Moffitt + Jacob Burch + Jacob Green + Jacob Kaplan-Moss + Jacob Rief + Jacob Walls + Jakub Bagiński + Jakub Paczkowski + Jakub Wilk + Jakub Wiśniowski + james_027@yahoo.com + James Aylett + James Bennett + James Gillard + James Murty + James Tauber + James Timmins + James Turk + James Wheare + Jamie Matthews + Jannis Leidel + Janos Guljas + Jan Pazdziora + Jan Rademaker + Jarek Głowacki + Jarek Zgoda + Jarosław Wygoda + Jason Davies (Esaj) + Jason Huggins + Jason McBrayer + jason.sidabras@gmail.com + Jason Yan + Javier Mansilla + Jay Parlar + Jay Welborn + Jay Wineinger + J. Clifford Dyer + jcrasta@gmail.com + jdetaeye + Jeff Anderson + Jeff Balogh + Jeff Hui + Jeffrey Gelens + Jeff Triplett + Jeffrey Yancey + Jens Diemer + Jens Page + Jensen Cochran + Jeong-Min Lee + Jérémie Blaser + Jeremy Bowman + Jeremy Carbaugh + Jeremy Dunck + Jeremy Lainé + Jerin Peter George + Jesse Young + Jezeniel Zapanta + jhenry + Jim Dalton + Jimmy Song + Jiri Barton + Joachim Jablon + Joao Oliveira + Joao Pedro Silva + Joe Heck + Joe Jackson + Joel Bohman + Joel Heenan + Joel Watts + Joe Topjian + Johan C. Stöver + Johann Queuniet + Johannes Westphal + john@calixto.net + John D'Agostino + John D'Ambrosio + John Huddleston + John Moses + John Paulett + John Shaffer + Jökull Sólberg Auðunsson + Jon Dufresne + Jon Janzen + Jonas Haag + Jonas Lundberg + Jonathan Davis + Jonatas C. D. + Jonathan Buchanan + Jonathan Daugherty (cygnus) + Jonathan Feignberg + Jonathan Slenders + Jonny Park + Jordan Bae + Jordan Dimov + Jordi J. Tablada + Jorge Bastida + Jorge Gajon + José Tomás Tocino García + Josef Rousek + Joseph Kocherhans + Josh Smeaton + Joshua Cannon + Joshua Ginsberg + Jozko Skrablin + J. Pablo Fernandez + jpellerin@gmail.com + Juan Catalano + Juan Manuel Caicedo + Juan Pedro Fisanotti + Julia Elman + Julia Matsieva + Julian Bez + Julie Rymer + Julien Phalip + Junyoung Choi + junzhang.jn@gmail.com + Jure Cuhalev + Justin Bronn + Justine Tunney + Justin Lilly + Justin Michalicek + Justin Myles Holmes + Jyrki Pulliainen + Kacper Wolkiewicz + Kadesarin Sanjek + Kapil Bansal + Karderio + Karen Tracey + Karol Sikora + Kasun Herath + Katherine “Kati” Michel + Kathryn Killebrew + Katie Miller + Keith Bussell + Kenneth Love + Kent Hauser + Keryn Knight + Kevin Grinberg + Kevin Kubasik + Kevin McConnell + Kieran Holland + kilian + Kim Joon Hwan 김준환 + Kim Soung Ryoul 김성렬 + Klaas van Schelven + knox + konrad@gwu.edu + Kowito Charoenratchatabhan + Krišjānis Vaiders + krzysiek.pawlik@silvermedia.pl + Krzysztof Jagiello + Krzysztof Jurewicz + Krzysztof Kulewski + kurtiss@meetro.com + Lakin Wecker + Lars Yencken + Lau Bech Lauritzen + Laurent Luce + Laurent Rahuel + lcordier@point45.com + Leah Culver + Leandra Finger + Lee Reilly + Lee Sanghyuck + Lemuel Sta Ana + Leo "hylje" Honkanen + Leo Shklovskii + Leo Soto + lerouxb@gmail.com + Lex Berezhny + Liang Feng + Lily Foote + limodou + Lincoln Smith + Liu Yijie <007gzs@gmail.com> + Loek van Gent + Loïc Bistuer + Lowe Thiderman + Luan Pablo + Lucas Connors + Luciano Ramalho + Lucidiot + Ludvig Ericson + Luis C. Berrocal + Łukasz Langa + Łukasz Rekucki + Luke Granger-Brown + Luke Plant + Maciej Fijalkowski + Maciej Wiśniowski + Mads Jensen + Makoto Tsuyuki + Malcolm Tredinnick + Manav Agarwal + Manuel Saelices + Manuzhai + Marc Aymerich Gubern + Marc Egli + Marcel Telka + Marcelo Galigniana + Marc Fargas + Marc Garcia + Marcin Wróbel + Marc Remolt + Marc Seguí Coll + Marc Tamlyn + Marc-Aurèle Brothier + Marian Andre + Marijke Luttekes + Marijn Vriens + Mario Gonzalez + Mariusz Felisiak + Mark Biggers + Mark Evans + Mark Gensler + mark@junklight.com + Mark Lavin + Mark Sandstrom + Markus Amalthea Magnuson + Markus Holtermann + Marten Kenbeek + Marti Raudsepp + martin.glueck@gmail.com + Martin Green + Martin Kosír + Martin Mahner + Martin Maney + Martin von Gagern + Mart Sõmermaa + Marty Alchin + Masashi Shibata + masonsimon+django@gmail.com + Massimiliano Ravelli + Massimo Scamarcia + Mathieu Agopian + Matías Bordese + Matt Boersma + Matt Brewer + Matt Croydon + Matt Deacalion Stevens + Matt Dennenbaum + Matthew Flanagan + Matthew Schinckel + Matthew Somerville + Matthew Tretter + Matthew Wilkes + Matthias Kestenholz + Matthias Pronk + Matt Hoskins + Matt McClanahan + Matt Riggott + Matt Robenolt + Mattia Larentis + Mattia Procopio + Mattias Loverot + mattycakes@gmail.com + Max Burstein + Max Derkachev + Max Smolens + Maxime Lorant + Maxime Toussaint + Maxime Turcotte + Maximilian Merz + Maximillian Dornseif + mccutchen@gmail.com + Meghana Bhange + Meir Kriheli + Michael S. Brown + Michael Hall + Michael Josephson + Michael Lissner + Michael Manfre + michael.mcewan@gmail.com + Michael Placentra II + Michael Radziej + Michael Sanders + Michael Schwarz + Michael Sinov + Michael Thornhill + Michal Chruszcz + michal@plovarna.cz + Michał Modzelewski + Mihai Damian + Mihai Preda + Mikaël Barbero + Mike Axiak + Mike Grouchy + Mike Malone + Mike Richardson + Mike Wiacek + Mikhail Korobov + Mikko Hellsing + Mikołaj Siedlarek + milkomeda + Milton Waddams + mitakummaa@gmail.com + mmarshall + Moayad Mardini + Morgan Aubert + Moritz Sichert + Morten Bagai + msaelices + msundstr + Mushtaq Ali + Mykola Zamkovoi + Nadège Michel + Nagy Károly + Nasimul Haque + Nasir Hussain + Natalia Bidart + Nate Bragg + Nathan Gaberel + Neal Norwitz + Nebojša Dorđević + Ned Batchelder + Nena Kojadin + Niall Dalton + Niall Kelly + Nick Efford + Nick Lane + Nick Pope + Nick Presta + Nick Sandford + Nick Sarbicki + Niclas Olofsson + Nicola Larosa + Nicolas Lara + Nicolas Noé + Nikita Marchant + Nikita Sobolev + Nina Menezes + Niran Babalola + Nis Jørgensen + Nowell Strite + Nuno Mariz + Octavio Peri + oggie rob + oggy + Oguzhan Akan + Oliver Beattie + Oliver Rutherfurd + Olivier Le Thanh Duong + Olivier Sels + Olivier Tabone + Orestis Markou + Orne Brocaar + Oscar Ramirez + Ossama M. Khayat + Owen Griffiths + Ömer Faruk Abacı + Pablo Martín + Panos Laganakos + Paolo Melchiorre + Pascal Hartig + Pascal Varet + Patrik Sletmo + Paul Bissex + Paul Collier + Paul Collins + Paul Donohue + Paul Lanier + Paul McLanahan + Paul McMillan + Paulo Poiati + Paulo Scardine + Paul Smith + Pavel Kulikov + pavithran s + Pavlo Kapyshin + permonik@mesias.brnonet.cz + Petar Marić + Pete Crosier + peter@mymart.com + Peter Sheats + Peter van Kampen + Peter Zsoldos + Pete Shinners + Petr Marhoun + Petter Strandmark + pgross@thoughtworks.com + phaedo + phil.h.smith@gmail.com + Philip Lindborg + Philippe Raoult + phil@produxion.net + Piotr Jakimiak + Piotr Lewandowski + plisk + polpak@yahoo.com + pradeep.gowda@gmail.com + Prashant Pandey + Preston Holmes + Preston Timmons + Priyank Panchal + Priyansh Saxena + Przemysław Buczkowski + Przemysław Suliga + Qi Zhao + Rachel Tobin + Rachel Willmer + Radek Švarz + Rafael Giebisch + Raffaele Salmaso + Rahmat Faisal + Rajesh Dhawan + Ramez Ashraf + Ramil Yanbulatov + Ramin Farajpour Cami + Ramiro Morales + Ramon Saraiva + Ram Rachum + Randy Barlow + Raphaël Barrois + Raphael Michel + Raúl Cumplido + Rebecca Smith + Remco Wendt + Renaud Parent + Renbi Yu + Reza Mohammadi + rhettg@gmail.com + Ricardo Javier Cárdenes Medina + ricardojbarrios@gmail.com + Riccardo Di Virgilio + Riccardo Magliocchetti + Richard Davies + Richard House + Rick Wagner + Rigel Di Scala + Robert Coup + Robert Myers + Roberto Aguilar + Robert Rock Howard + Robert Wittams + Rob Golding-Day + Rob Hudson + Rob Nguyen + Robin Munn + Rodrigo Pinheiro Marques de Araújo + Rohith P R + Romain Garrigues + Ronnie van den Crommenacker + Ronny Haryanto + Ross Poulton + Roxane Bellot + Rozza + Rudolph Froger + Rudy Mutter + Rune Rønde Laursen + Russell Cloran + Russell Keith-Magee + Russ Webber + Ryan Hall + Ryan Heard + ryankanno + Ryan Kelly + Ryan Niemeyer + Ryan Petrello + Ryan Rubin + Ryno Mathee + Sachin Jat + Sage M. Abdullah + Sam Newman + Sander Dijkhuis + Sanket Saurav + Sanyam Khurana + Sarah Abderemane + Sarah Boyce + Sarthak Mehrish + schwank@gmail.com + Scot Hacker + Scott Barr + Scott Cranfill + Scott Fitsimones + Scott Pashley + scott@staplefish.com + Sean Brant + Sebastian Hillig + Sebastian Spiegel + Segyo Myung + Selwin Ong + Sengtha Chay + Senko Rašić + serbaut@gmail.com + Sergei Maertens + Sergey Fedoseev + Sergey Kolosov + Seth Hill + Shafiya Adzhani + Shai Berger + Shannon -jj Behrens + Shawn Milochik + Shreya Bamne + Silvan Spross + Simeon Visser + Simon Blanchard + Simon Charette + Simon Greenhill + Simon Litchfield + Simon Meers + Simon Williams + Simon Willison + Sjoerd Job Postmus + Slawek Mikula + sloonz + smurf@smurf.noris.de + sopel + Sreehari K V + Sridhar Marella + Srinivas Reddy Thatiparthy + Stanislas Guerra + Stanislaus Madueke + Stanislav Karpov + starrynight + Stefan R. Filipek + Stefane Fermgier + Stefano Rivera + Stéphane Raimbault + Stephan Jaekel + Stephen Burrows + Steven L. Smith (fvox13) + Steven Noorbergen (Xaroth) + Stuart Langridge + Subhav Gautam + Sujay S Kumar + Sune Kirkeby + Sung-Jin Hong + SuperJared + Susan Tan + Sutrisno Efendi + Swaroop C H + Szilveszter Farkas + Taavi Teska + Tai Lee + Takashi Matsuo + Tareque Hossain + Taylor Mitchell + tell-k + Terry Huang + thebjorn + Thejaswi Puthraya + Thijs van Dien + Thom Wiggers + Thomas Chaumeny + Thomas Güttler + Thomas Kerpe + Thomas Sorrel + Thomas Steinacher + Thomas Stromberg + Thomas Tanner + tibimicu@gmx.net + Ties Jan Hefting + Tim Allen + Tim Givois + Tim Graham + Tim Heap + Tim McCurrach + Tim Saylor + Toan Vuong + Tobias Kunze + Tobias McNulty + tobias@neuyork.de + Todd O'Bryan + Tom Carrick + Tom Christie + Tom Forbes + Tom Insam + Tom Tobin + Tom Wojcik + Tomáš Ehrlich + Tomáš Kopeček + Tome Cvitan + Tomek Paczkowski + Tomer Chachamu + Tommy Beadle + Tore Lundqvist + torne-django@wolfpuppy.org.uk + Travis Cline + Travis Pinney + Travis Swicegood + Travis Terry + Trevor Caira + Trey Long + tstromberg@google.com + tt@gurgle.no + Tyler Tarabula + Tyson Clugg + Tyson Tate + Unai Zalakain + Valentina Mukhamedzhanova + valtron + Vasiliy Stavenko + Vasil Vangelovski + Vibhu Agarwal + Victor Andrée + viestards.lists@gmail.com + Viktor Danyliuk + Viktor Grabov + Ville Säävuori + Vinay Karanam + Vinay Sajip + Vincent Foley + Vinny Do + Vitaly Babiy + Vitaliy Yelnik + Vladimir Kuzma + Vlado + Vsevolod Solovyov + Vytis Banaitis + wam-djangobug@wamber.net + Wang Chun + Warren Smith + Waylan Limberg + Wiktor Kołodziej + Wiley Kestner + Wiliam Alves de Souza + Will Ayd + William Schwartz + Will Hardy + Will Zhao + Wilson Miner + Wim Glenn + wojtek + Wu Haotian + Xavier Francisco + Xia Kai + Yann Fouillat + Yann Malet + Yash Jhunjhunwala + Yasushi Masuda + ye7cakf02@sneakemail.com + ymasuda@ethercube.com + Yoong Kang Lim + Yury V. Zaytsev + Yusuke Miyazaki + Yves Weissig + yyyyyyyan + Zac Hatfield-Dodds + Zachary Voase + Zach Liu + Zach Thompson + Zain Memon + Zain Patel + Zak Johnson + Žan Anderle + Zbigniew Siciarz + zegor + Zeynel Özdemir + Zlatko Mašek + zriv + + +A big THANK YOU goes to: + + Rob Curley and Ralph Gage for letting us open-source Django. + + Frank Wiles for making excellent arguments for open-sourcing, and for + his sage sysadmin advice. + + Ian Bicking for convincing Adrian to ditch code generation. + + Mark Pilgrim for "Dive Into Python" (https://diveintopython3.net/). + + Guido van Rossum for creating Python. diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/INSTALLER b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE new file mode 100644 index 0000000..5f4f225 --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) Django Software Foundation and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of Django nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE.python b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE.python new file mode 100644 index 0000000..9f995bf --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/LICENSE.python @@ -0,0 +1,288 @@ +Django is licensed under the three-clause BSD license; see the file +LICENSE for details. + +Django includes code from the Python standard library, which is licensed under +the Python license, a permissive open source license. The copyright and license +is included below for compliance with Python's terms. + +---------------------------------------------------------------------- + +Copyright (c) 2001-present Python Software Foundation; All Rights Reserved + +A. HISTORY OF THE SOFTWARE +========================== + +Python was created in the early 1990s by Guido van Rossum at Stichting +Mathematisch Centrum (CWI, see https://www.cwi.nl) in the Netherlands +as a successor of a language called ABC. Guido remains Python's +principal author, although it includes many contributions from others. + +In 1995, Guido continued his work on Python at the Corporation for +National Research Initiatives (CNRI, see https://www.cnri.reston.va.us) +in Reston, Virginia where he released several versions of the +software. + +In May 2000, Guido and the Python core development team moved to +BeOpen.com to form the BeOpen PythonLabs team. In October of the same +year, the PythonLabs team moved to Digital Creations, which became +Zope Corporation. In 2001, the Python Software Foundation (PSF, see +https://www.python.org/psf/) was formed, a non-profit organization +created specifically to own Python-related Intellectual Property. +Zope Corporation was a sponsoring member of the PSF. + +All Python releases are Open Source (see https://opensource.org for +the Open Source Definition). Historically, most, but not all, Python +releases have also been GPL-compatible; the table below summarizes +the various releases. + + Release Derived Year Owner GPL- + from compatible? (1) + + 0.9.0 thru 1.2 1991-1995 CWI yes + 1.3 thru 1.5.2 1.2 1995-1999 CNRI yes + 1.6 1.5.2 2000 CNRI no + 2.0 1.6 2000 BeOpen.com no + 1.6.1 1.6 2001 CNRI yes (2) + 2.1 2.0+1.6.1 2001 PSF no + 2.0.1 2.0+1.6.1 2001 PSF yes + 2.1.1 2.1+2.0.1 2001 PSF yes + 2.1.2 2.1.1 2002 PSF yes + 2.1.3 2.1.2 2002 PSF yes + 2.2 and above 2.1.1 2001-now PSF yes + +Footnotes: + +(1) GPL-compatible doesn't mean that we're distributing Python under + the GPL. All Python licenses, unlike the GPL, let you distribute + a modified version without making your changes open source. The + GPL-compatible licenses make it possible to combine Python with + other software that is released under the GPL; the others don't. + +(2) According to Richard Stallman, 1.6.1 is not GPL-compatible, + because its license has a choice of law clause. According to + CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1 + is "not incompatible" with the GPL. + +Thanks to the many outside volunteers who have worked under Guido's +direction to make these releases possible. + + +B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON +=============================================================== + +Python software and documentation are licensed under the +Python Software Foundation License Version 2. + +Starting with Python 3.8.6, examples, recipes, and other code in +the documentation are dual licensed under the PSF License Version 2 +and the Zero-Clause BSD license. + +Some software incorporated into Python is under different licenses. +The licenses are listed with code falling under that license. + + +PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2 +-------------------------------------------- + +1. This LICENSE AGREEMENT is between the Python Software Foundation +("PSF"), and the Individual or Organization ("Licensee") accessing and +otherwise using this software ("Python") in source or binary form and +its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, PSF hereby +grants Licensee a nonexclusive, royalty-free, world-wide license to reproduce, +analyze, test, perform and/or display publicly, prepare derivative works, +distribute, and otherwise use Python alone or in any derivative version, +provided, however, that PSF's License Agreement and PSF's notice of copyright, +i.e., "Copyright (c) 2001-2024 Python Software Foundation; All Rights Reserved" +are retained in Python alone or in any derivative version prepared by Licensee. + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python. + +4. PSF is making Python available to Licensee on an "AS IS" +basis. PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. Nothing in this License Agreement shall be deemed to create any +relationship of agency, partnership, or joint venture between PSF and +Licensee. This License Agreement does not grant permission to use PSF +trademarks or trade name in a trademark sense to endorse or promote +products or services of Licensee, or any third party. + +8. By copying, installing or otherwise using Python, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0 +------------------------------------------- + +BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1 + +1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an +office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the +Individual or Organization ("Licensee") accessing and otherwise using +this software in source or binary form and its associated +documentation ("the Software"). + +2. Subject to the terms and conditions of this BeOpen Python License +Agreement, BeOpen hereby grants Licensee a non-exclusive, +royalty-free, world-wide license to reproduce, analyze, test, perform +and/or display publicly, prepare derivative works, distribute, and +otherwise use the Software alone or in any derivative version, +provided, however, that the BeOpen Python License is retained in the +Software, alone or in any derivative version prepared by Licensee. + +3. BeOpen is making the Software available to Licensee on an "AS IS" +basis. BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE +SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS +AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY +DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +5. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +6. This License Agreement shall be governed by and interpreted in all +respects by the law of the State of California, excluding conflict of +law provisions. Nothing in this License Agreement shall be deemed to +create any relationship of agency, partnership, or joint venture +between BeOpen and Licensee. This License Agreement does not grant +permission to use BeOpen trademarks or trade names in a trademark +sense to endorse or promote products or services of Licensee, or any +third party. As an exception, the "BeOpen Python" logos available at +http://www.pythonlabs.com/logos.html may be used according to the +permissions granted on that web page. + +7. By copying, installing or otherwise using the software, Licensee +agrees to be bound by the terms and conditions of this License +Agreement. + + +CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1 +--------------------------------------- + +1. This LICENSE AGREEMENT is between the Corporation for National +Research Initiatives, having an office at 1895 Preston White Drive, +Reston, VA 20191 ("CNRI"), and the Individual or Organization +("Licensee") accessing and otherwise using Python 1.6.1 software in +source or binary form and its associated documentation. + +2. Subject to the terms and conditions of this License Agreement, CNRI +hereby grants Licensee a nonexclusive, royalty-free, world-wide +license to reproduce, analyze, test, perform and/or display publicly, +prepare derivative works, distribute, and otherwise use Python 1.6.1 +alone or in any derivative version, provided, however, that CNRI's +License Agreement and CNRI's notice of copyright, i.e., "Copyright (c) +1995-2001 Corporation for National Research Initiatives; All Rights +Reserved" are retained in Python 1.6.1 alone or in any derivative +version prepared by Licensee. Alternately, in lieu of CNRI's License +Agreement, Licensee may substitute the following text (omitting the +quotes): "Python 1.6.1 is made available subject to the terms and +conditions in CNRI's License Agreement. This Agreement together with +Python 1.6.1 may be located on the internet using the following +unique, persistent identifier (known as a handle): 1895.22/1013. This +Agreement may also be obtained from a proxy server on the internet +using the following URL: http://hdl.handle.net/1895.22/1013". + +3. In the event Licensee prepares a derivative work that is based on +or incorporates Python 1.6.1 or any part thereof, and wants to make +the derivative work available to others as provided herein, then +Licensee hereby agrees to include in any such work a brief summary of +the changes made to Python 1.6.1. + +4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS" +basis. CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR +IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND +DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS +FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT +INFRINGE ANY THIRD PARTY RIGHTS. + +5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON +1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS +A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1, +OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF. + +6. This License Agreement will automatically terminate upon a material +breach of its terms and conditions. + +7. This License Agreement shall be governed by the federal +intellectual property law of the United States, including without +limitation the federal copyright law, and, to the extent such +U.S. federal law does not apply, by the law of the Commonwealth of +Virginia, excluding Virginia's conflict of law provisions. +Notwithstanding the foregoing, with regard to derivative works based +on Python 1.6.1 that incorporate non-separable material that was +previously distributed under the GNU General Public License (GPL), the +law of the Commonwealth of Virginia shall govern this License +Agreement only as to issues arising under or with respect to +Paragraphs 4, 5, and 7 of this License Agreement. Nothing in this +License Agreement shall be deemed to create any relationship of +agency, partnership, or joint venture between CNRI and Licensee. This +License Agreement does not grant permission to use CNRI trademarks or +trade name in a trademark sense to endorse or promote products or +services of Licensee, or any third party. + +8. By clicking on the "ACCEPT" button where indicated, or by copying, +installing or otherwise using Python 1.6.1, Licensee agrees to be +bound by the terms and conditions of this License Agreement. + + ACCEPT + + +CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2 +-------------------------------------------------- + +Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam, +The Netherlands. All rights reserved. + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Stichting Mathematisch +Centrum or CWI not be used in advertising or publicity pertaining to +distribution of the software without specific, written prior +permission. + +STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO +THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND +FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE +FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT +OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +ZERO-CLAUSE BSD LICENSE FOR CODE IN THE PYTHON DOCUMENTATION +---------------------------------------------------------------------- + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/METADATA b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/METADATA new file mode 100644 index 0000000..8b2cbb4 --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/METADATA @@ -0,0 +1,101 @@ +Metadata-Version: 2.1 +Name: Django +Version: 5.1.4 +Summary: A high-level Python web framework that encourages rapid development and clean, pragmatic design. +Author-email: Django Software Foundation +License: BSD-3-Clause +Project-URL: Homepage, https://www.djangoproject.com/ +Project-URL: Documentation, https://docs.djangoproject.com/ +Project-URL: Release notes, https://docs.djangoproject.com/en/stable/releases/ +Project-URL: Funding, https://www.djangoproject.com/fundraising/ +Project-URL: Source, https://github.com/django/django +Project-URL: Tracker, https://code.djangoproject.com/ +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Framework :: Django +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Programming Language :: Python :: 3.13 +Classifier: Topic :: Internet :: WWW/HTTP +Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content +Classifier: Topic :: Internet :: WWW/HTTP :: WSGI +Classifier: Topic :: Software Development :: Libraries :: Application Frameworks +Classifier: Topic :: Software Development :: Libraries :: Python Modules +Requires-Python: >=3.10 +Description-Content-Type: text/x-rst +License-File: LICENSE +License-File: LICENSE.python +License-File: AUTHORS +Requires-Dist: asgiref<4,>=3.8.1 +Requires-Dist: sqlparse>=0.3.1 +Requires-Dist: tzdata; sys_platform == "win32" +Provides-Extra: argon2 +Requires-Dist: argon2-cffi>=19.1.0; extra == "argon2" +Provides-Extra: bcrypt +Requires-Dist: bcrypt; extra == "bcrypt" + +====== +Django +====== + +Django is a high-level Python web framework that encourages rapid development +and clean, pragmatic design. Thanks for checking it out. + +All documentation is in the "``docs``" directory and online at +https://docs.djangoproject.com/en/stable/. If you're just getting started, +here's how we recommend you read the docs: + +* First, read ``docs/intro/install.txt`` for instructions on installing Django. + +* Next, work through the tutorials in order (``docs/intro/tutorial01.txt``, + ``docs/intro/tutorial02.txt``, etc.). + +* If you want to set up an actual deployment server, read + ``docs/howto/deployment/index.txt`` for instructions. + +* You'll probably want to read through the topical guides (in ``docs/topics``) + next; from there you can jump to the HOWTOs (in ``docs/howto``) for specific + problems, and check out the reference (``docs/ref``) for gory details. + +* See ``docs/README`` for instructions on building an HTML version of the docs. + +Docs are updated rigorously. If you find any problems in the docs, or think +they should be clarified in any way, please take 30 seconds to fill out a +ticket here: https://code.djangoproject.com/newticket + +To get more help: + +* Join the ``#django`` channel on ``irc.libera.chat``. Lots of helpful people + hang out there. `Webchat is available `_. + +* Join the django-users mailing list, or read the archives, at + https://groups.google.com/group/django-users. + +* Join the `Django Discord community `_. + +* Join the community on the `Django Forum `_. + +To contribute to Django: + +* Check out https://docs.djangoproject.com/en/dev/internals/contributing/ for + information about getting involved. + +To run Django's test suite: + +* Follow the instructions in the "Unit tests" section of + ``docs/internals/contributing/writing-code/unit-tests.txt``, published online at + https://docs.djangoproject.com/en/dev/internals/contributing/writing-code/unit-tests/#running-the-unit-tests + +Supporting the Development of Django +==================================== + +Django's development depends on your contributions. + +If you depend on Django, remember to support the Django Software Foundation: https://www.djangoproject.com/fundraising/ diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/RECORD b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/RECORD new file mode 100644 index 0000000..93632fb --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/RECORD @@ -0,0 +1,4540 @@ +../../Scripts/django-admin.exe,sha256=3yxNCINck0_LN00Aohja-cGyNBTirvySHt41Jf-S5HA,108468 +Django-5.1.4.dist-info/AUTHORS,sha256=PRqRG0Fm9_wNJAoFDQo51gEVArm104sUEQB5GRGBSxw,43110 +Django-5.1.4.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +Django-5.1.4.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeuQbXlLxUbKYSn5UKGM0JHipmk,1552 +Django-5.1.4.dist-info/LICENSE.python,sha256=ktIAtrhtqXpPighr74DsWGJ6aCryy_ks3CvX6ekGLlE,14261 +Django-5.1.4.dist-info/METADATA,sha256=3ncFfKogmIzQS6ntokf-X0bIta6zFv69XX3XnSidlAg,4218 +Django-5.1.4.dist-info/RECORD,, +Django-5.1.4.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +Django-5.1.4.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92 +Django-5.1.4.dist-info/entry_points.txt,sha256=hi1U04jQDqr9xaV6Gklnqh-d69jiCZdS73E0l_671L4,82 +Django-5.1.4.dist-info/top_level.txt,sha256=V_goijg9tfO20ox_7os6CcnPvmBavbxu46LpJiNLwjA,7 +django/__init__.py,sha256=iqYpigt8VA3UAufWgjUounVu0J838XIrUxKIJ6LDAdk,799 +django/__main__.py,sha256=XO-CRvbZFCKtIvAT6Jvbn32dWnv2pnNszRVS-1nKX0I,212 +django/__pycache__/__init__.cpython-310.pyc,, +django/__pycache__/__main__.cpython-310.pyc,, +django/__pycache__/shortcuts.cpython-310.pyc,, +django/apps/__init__.py,sha256=8WZTI_JnNuP4tyfuimH3_pKQYbDAy2haq-xkQT1UXkc,90 +django/apps/__pycache__/__init__.cpython-310.pyc,, +django/apps/__pycache__/config.cpython-310.pyc,, +django/apps/__pycache__/registry.cpython-310.pyc,, +django/apps/config.py,sha256=1Zhxt4OrwRnOmsT_B_BurImz3oi8330TJG0rRRJ58bQ,11482 +django/apps/registry.py,sha256=rdexON5JuhKAMWAZv4k2DH0fRSKdPZoi6_tTjOUgFRA,17693 +django/conf/__init__.py,sha256=z-39ierCs_8FYomobh9PWESoZI5RJ-TgzEuew8B9kJM,9809 +django/conf/__pycache__/__init__.cpython-310.pyc,, +django/conf/__pycache__/global_settings.cpython-310.pyc,, +django/conf/app_template/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/app_template/admin.py-tpl,sha256=suMo4x8I3JBxAFBVIdE-5qnqZ6JAZV0FESABHOSc-vg,63 +django/conf/app_template/apps.py-tpl,sha256=jrRjsh9lSkUvV4NnKdlAhLDtvydwBNjite0w2J9WPtI,171 +django/conf/app_template/migrations/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/app_template/models.py-tpl,sha256=Vjc0p2XbAPgE6HyTF6vll98A4eDhA5AvaQqsc4kQ9AQ,57 +django/conf/app_template/tests.py-tpl,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60 +django/conf/app_template/views.py-tpl,sha256=xc1IQHrsij7j33TUbo-_oewy3vs03pw_etpBWaMYJl0,63 +django/conf/global_settings.py,sha256=UaMjYpMCgVGN3h2uxsLYnxk5t7hXfvq5650ctiy-BWM,22889 +django/conf/locale/__init__.py,sha256=QHDK8QIAcRjGMtWL8QVgYA_6psetuZuWBJkPwumTeI8,13864 +django/conf/locale/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/af/LC_MESSAGES/django.mo,sha256=xpMB1OGspYCduAEidr_EPfAJon5f1JrF_WCQFokkoBo,27068 +django/conf/locale/af/LC_MESSAGES/django.po,sha256=sQd5MkwXD8R2o28JFbnp4pIwqvz_thflWmBo9a_4QjY,29915 +django/conf/locale/ar/LC_MESSAGES/django.mo,sha256=qBaEPhfJxd2mK1uPH7J06hPI3_leRPsWkVgcKtJSAvQ,35688 +django/conf/locale/ar/LC_MESSAGES/django.po,sha256=MQeB4q0H-uDLurniJP5b2SBOTETAUl9k9NHxtaw0nnU,38892 +django/conf/locale/ar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ar/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ar/formats.py,sha256=EI9DAiGt1avNY-a6luMnAqKISKGHXHiKE4QLRx7wGHU,696 +django/conf/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=QosXYYYvQjGu13pLrC9LIVwUQXVwdJpIYn7RB9QCJY8,33960 +django/conf/locale/ar_DZ/LC_MESSAGES/django.po,sha256=2iT_sY4XedSSiHagu03OgpYXWNJVaKDwKUfxgEN4k3k,37626 +django/conf/locale/ar_DZ/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ar_DZ/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ar_DZ/formats.py,sha256=T84q3oMKng-L7_xymPqYwpzs78LvvfHy2drfSRj8XjE,901 +django/conf/locale/ast/LC_MESSAGES/django.mo,sha256=XSStt50HP-49AJ8wFcnbn55SLncJCsS2lx_4UwK-h-8,15579 +django/conf/locale/ast/LC_MESSAGES/django.po,sha256=7qZUb5JjfrWLqtXPRjpNOMNycbcsEYpNO-oYmazLTk4,23675 +django/conf/locale/az/LC_MESSAGES/django.mo,sha256=EJI2hYCCFFJb0YhaS7b5LrHOG6TGT_lJSOYQ2K7VAbY,28595 +django/conf/locale/az/LC_MESSAGES/django.po,sha256=44nzF7PPC0Ax1QI-PSpwvAGyyKQBwoLyZKJlPfJ9vfw,30893 +django/conf/locale/az/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/az/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/az/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/az/formats.py,sha256=JQoS2AYHKJxiH6TJas1MoeYgTeUv5XcNtYUHF7ulDmw,1087 +django/conf/locale/be/LC_MESSAGES/django.mo,sha256=rcdijOhkdSXs8BoQZN5jQDB-pkWYlgWF3m5VfJjCssI,37554 +django/conf/locale/be/LC_MESSAGES/django.po,sha256=7h7Z5qvjhD3BYgmbF1G7-Z2I70t1figiFlvMAz6twA4,40172 +django/conf/locale/bg/LC_MESSAGES/django.mo,sha256=x22bBhceDhNZXSoXiTKnc7w_HvtmW3EfWrZgsomUv6A,34729 +django/conf/locale/bg/LC_MESSAGES/django.po,sha256=xTU8GIhvPPuU7K4G8lZq8FXFsWiloT2u-118KtxkxBc,37283 +django/conf/locale/bg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/bg/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/bg/formats.py,sha256=LC7P_5yjdGgsxLQ_GDtC8H2bz9NTxUze_CAtzlm37TA,705 +django/conf/locale/bn/LC_MESSAGES/django.mo,sha256=sB0RIFrGS11Z8dx5829oOFw55vuO4vty3W4oVzIEe8Q,16660 +django/conf/locale/bn/LC_MESSAGES/django.po,sha256=rF9vML3LDOqXkmK6R_VF3tQaFEoZI7besJAPx5qHNM0,26877 +django/conf/locale/bn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/bn/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/bn/formats.py,sha256=jynhZ9XNNuxTXeF7f2FrJYYZuFwlLY58fGfQ6gVs7s8,964 +django/conf/locale/br/LC_MESSAGES/django.mo,sha256=Xow2-sd55CZJsvfF8axtxXNRe27EDwxKixCGelVQ4aU,14009 +django/conf/locale/br/LC_MESSAGES/django.po,sha256=ODCUDdEDAvsOVOAr49YiWT2YQaBZmc-38brdgYWc8Bs,24293 +django/conf/locale/bs/LC_MESSAGES/django.mo,sha256=Xa5QAbsHIdLkyG4nhLCD4UHdCngrw5Oh120abCNdWlA,10824 +django/conf/locale/bs/LC_MESSAGES/django.po,sha256=IB-2VvrQKUivAMLMpQo1LGRAxw3kj-7kB6ckPai0fug,22070 +django/conf/locale/bs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/bs/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/bs/formats.py,sha256=760m-h4OHpij6p_BAD2dr3nsWaTb6oR1Y5culX9Gxqw,705 +django/conf/locale/ca/LC_MESSAGES/django.mo,sha256=v6lEJTUbXyEUBsctIdNFOg-Ck5MVFbuz-JgjqkUe32c,27707 +django/conf/locale/ca/LC_MESSAGES/django.po,sha256=16M-EtYLbfKnquh-IPRjWxTdHAqtisDc46Dzo5n-ZMc,30320 +django/conf/locale/ca/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ca/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ca/formats.py,sha256=s7N6Ns3yIqr_KDhatnUvfjbPhUbrhvemB5HtCeodGZo,940 +django/conf/locale/ckb/LC_MESSAGES/django.mo,sha256=-Wk2cPQA7s-zQQKuzxnrQ18w-9LnAOfT3Ji5htLgbqI,34015 +django/conf/locale/ckb/LC_MESSAGES/django.po,sha256=OlbnQh93KtkGZ0yQKi8_r-BQQceL5EvAiB30f3Z84Vw,36195 +django/conf/locale/ckb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ckb/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ckb/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ckb/formats.py,sha256=EbmQC-dyQl8EqVQOVGwy1Ra5-P1n-J3UF4K55p3VzOM,728 +django/conf/locale/cs/LC_MESSAGES/django.mo,sha256=7_tvOmbJAdC-A1yk1503fdzjBxpwA9QJmfRcyPsmTBw,30186 +django/conf/locale/cs/LC_MESSAGES/django.po,sha256=wDPx3mYbrjmdTJEjNJM9odEpMT3j-xSkHqx1FARKMF0,33138 +django/conf/locale/cs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/cs/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/cs/formats.py,sha256=3MA70CW0wfr0AIYvYqE0ACmX79tNOx-ZdlR6Aetp9e8,1539 +django/conf/locale/cy/LC_MESSAGES/django.mo,sha256=s7mf895rsoiqrPrXpyWg2k85rN8umYB2aTExWMTux7s,18319 +django/conf/locale/cy/LC_MESSAGES/django.po,sha256=S-1PVWWVgYmugHoYUlmTFAzKCpI81n9MIAhkETbpUoo,25758 +django/conf/locale/cy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/cy/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/cy/formats.py,sha256=NY1pYPfpu7XjLMCCuJk5ggdpLcufV1h101ojyxfPUrY,1355 +django/conf/locale/da/LC_MESSAGES/django.mo,sha256=V5XqSSfkF19P9QbNWPVlF-x3_3di8YohxNlbCRyyeG4,27799 +django/conf/locale/da/LC_MESSAGES/django.po,sha256=8Wkt220nr-BgTKMXzFK_y4o6v8wrz4mof_sI30vJlVs,30236 +django/conf/locale/da/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/da/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/da/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/da/formats.py,sha256=-y3033Fo7COyY0NbxeJVYGFybrnLbgXtRf1yBGlouys,876 +django/conf/locale/de/LC_MESSAGES/django.mo,sha256=-J6VqvJeSF8tk4rjb1aI5MSWwyV372EPzwI3O18vecE,29167 +django/conf/locale/de/LC_MESSAGES/django.po,sha256=RZMqmCY1nUVapY7ryTBN3vFNlEsuhw8mQC7b5M6IV9c,31680 +django/conf/locale/de/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/de/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/de/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/de/formats.py,sha256=fysX8z5TkbPUWAngoy_sMeFGWp2iaNU6ftkBz8cqplg,996 +django/conf/locale/de_CH/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/de_CH/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/de_CH/formats.py,sha256=22UDF62ESuU0Jp_iNUqAj-Bhq4_-frpji0-ynBdHXYk,1377 +django/conf/locale/dsb/LC_MESSAGES/django.mo,sha256=bk6Zro_bOi3XJbPqJmSQm9CmN03uBxzbplR_GvviOD4,30724 +django/conf/locale/dsb/LC_MESSAGES/django.po,sha256=7t1URhKYbg8wl7Z_SXbkuuRkZtNvtPSTnijIFiAAxUA,33248 +django/conf/locale/el/LC_MESSAGES/django.mo,sha256=P5lTOPFcl9x6_j69ZN3hM_mQbhW7Fbbx02RtTNJwfS0,33648 +django/conf/locale/el/LC_MESSAGES/django.po,sha256=rZCComPQcSSr8ZDLPgtz958uBeBZsmV_gEP-sW88kRA,37123 +django/conf/locale/el/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/el/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/el/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/el/formats.py,sha256=RON2aqQaQK3DYVF_wGlBQJDHrhANxypcUW_udYKI-ro,1241 +django/conf/locale/en/LC_MESSAGES/django.mo,sha256=mVpSj1AoAdDdW3zPZIg5ZDsDbkSUQUMACg_BbWHGFig,356 +django/conf/locale/en/LC_MESSAGES/django.po,sha256=5rdKpzn7YKtjU3sGEHcCGPD9j0c907Xo9k_noqnTglo,30401 +django/conf/locale/en/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/en/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/en/formats.py,sha256=VTQUhaZ_WFhS5rQj0PxbnoMySK0nzUSqrd6Gx-DtXxI,2438 +django/conf/locale/en_AU/LC_MESSAGES/django.mo,sha256=SntsKx21R2zdjj0D73BkOXGTDnoN5unsLMJ3y06nONM,25633 +django/conf/locale/en_AU/LC_MESSAGES/django.po,sha256=6Qh4Z6REzhUdG5KwNPNK9xgLlgq3VbAJuoSXyd_eHdE,28270 +django/conf/locale/en_AU/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/en_AU/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/en_AU/formats.py,sha256=BoI5UviKGZ4TccqLmxpcdMf0Yk1YiEhY_iLQUddjvi0,1650 +django/conf/locale/en_CA/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en_CA/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/en_CA/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/en_CA/formats.py,sha256=joB2Dy7XYhlii_PBJfuzHNLbOPmRXW2JjYkmxFr6KxI,1166 +django/conf/locale/en_GB/LC_MESSAGES/django.mo,sha256=jSIe44HYGfzQlPtUZ8tWK2vCYM9GqCKs-CxLURn4e1o,12108 +django/conf/locale/en_GB/LC_MESSAGES/django.po,sha256=PTXvOpkxgZFRoyiqftEAuMrFcYRLfLDd6w0K8crN8j4,22140 +django/conf/locale/en_GB/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/en_GB/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/en_GB/formats.py,sha256=cJN8YNthkIOHCIMnwiTaSZ6RCwgSHkjWYMcfw8VFScE,1650 +django/conf/locale/en_IE/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/en_IE/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/en_IE/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/en_IE/formats.py,sha256=aKEIT96Y6tzbGHFu3qsFzFc4Qw_uzhNjB69GpmP6qX8,1484 +django/conf/locale/eo/LC_MESSAGES/django.mo,sha256=TPgHTDrh1amnOQjA7sY-lQvicdFewMutOfoptV3OKkU,27676 +django/conf/locale/eo/LC_MESSAGES/django.po,sha256=IPo-3crOWkp5dDQPDAFSzgCbf9OHjWB1zE3mklhTexk,30235 +django/conf/locale/eo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/eo/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/eo/formats.py,sha256=zIEAk-SiLX0cvQVmRc3LpmV69jwRrejMMdC7vtVsSh0,1715 +django/conf/locale/es/LC_MESSAGES/django.mo,sha256=obYxux5pMwwbgMs6c_I5T-3CR7e_07d0h-JwmzwsKWU,29265 +django/conf/locale/es/LC_MESSAGES/django.po,sha256=77fpBrwtaZ3nvcXyLrf5k4Psq22dHuN0iR7OPn0MUTs,33344 +django/conf/locale/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/es/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/es/formats.py,sha256=7SusO1dPErY68h5g4lpxvPbsJYdrbTcr_0EX7uDKYNo,978 +django/conf/locale/es_AR/LC_MESSAGES/django.mo,sha256=Bopydg7VICPh0jmrCT7REwC6nBQJG_-42PlTIE5l1eA,29668 +django/conf/locale/es_AR/LC_MESSAGES/django.po,sha256=RHzG_jk2J-AkjkTfwN3Ai_Sq3nGbDk3XpLI9j3DjvLc,32071 +django/conf/locale/es_AR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/es_AR/formats.py,sha256=4qgOJoR2K5ZE-pA2-aYRwFW7AbK-M9F9u3zVwgebr2w,935 +django/conf/locale/es_CO/LC_MESSAGES/django.mo,sha256=ehUwvqz9InObH3fGnOLuBwivRTVMJriZmJzXcJHsfjc,18079 +django/conf/locale/es_CO/LC_MESSAGES/django.po,sha256=XRgn56QENxEixlyix3v4ZSTSjo4vn8fze8smkrv_gc4,25107 +django/conf/locale/es_CO/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/es_CO/formats.py,sha256=0uAbBvOkdJZKjvhrrd0htScdO7sTgbofOkkC8A35_a8,691 +django/conf/locale/es_MX/LC_MESSAGES/django.mo,sha256=UkpQJeGOs_JQRmpRiU6kQmmYGL_tizL4JQOWb9i35M4,18501 +django/conf/locale/es_MX/LC_MESSAGES/django.po,sha256=M0O6o1f3V-EIY9meS3fXP_c7t144rXWZuERF5XeG5Uo,25870 +django/conf/locale/es_MX/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/es_MX/formats.py,sha256=fBvyAqBcAXARptSE3hxwzFYNx3lEE8QrhNrCWuuGNlA,768 +django/conf/locale/es_NI/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/es_NI/formats.py,sha256=UiOadPoMrNt0iTp8jZVq65xR_4LkOwp-fjvFb8MyNVg,711 +django/conf/locale/es_PR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/es_PR/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/es_PR/formats.py,sha256=VVTlwyekX80zCKlg1P4jhaAdKNpN5I64pW_xgrhpyVs,675 +django/conf/locale/es_VE/LC_MESSAGES/django.mo,sha256=h-h1D_Kr-LI_DyUJuIG4Zbu1HcLWTM1s5X515EYLXO8,18840 +django/conf/locale/es_VE/LC_MESSAGES/django.po,sha256=Xj38imu4Yw-Mugwge5CqAqWlcnRWnAKpVBPuL06Twjs,25494 +django/conf/locale/et/LC_MESSAGES/django.mo,sha256=G4JFXVc99Y4GDRrqMb6LRH4Iprg_EmEYMZFW6zSwKBk,27273 +django/conf/locale/et/LC_MESSAGES/django.po,sha256=Hi-kAoqksNbFYkGda0_kphd34Oy9Ti78-oPBiYpV1lg,30056 +django/conf/locale/et/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/et/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/et/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/et/formats.py,sha256=DyFSZVuGSYGoImrRI2FodeM51OtvIcCkKzkI0KvYTQw,707 +django/conf/locale/eu/LC_MESSAGES/django.mo,sha256=EdncCA6Qp76DsqkyEYygaZFrnKRYzJ6LEucQqIjCsSM,21725 +django/conf/locale/eu/LC_MESSAGES/django.po,sha256=6T-yCAeg_8ntlqD_KJyjbqY0qgKPTwi3J46j0J6Ld1I,27752 +django/conf/locale/eu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/eu/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/eu/formats.py,sha256=-PuRA6eHeXP8R3YV0aIEQRbk2LveaZk-_kjHlBT-Drg,749 +django/conf/locale/fa/LC_MESSAGES/django.mo,sha256=i9wWfM-zV76dkEoItqgfDniZ8qI66htM3cw48bBnvNg,31655 +django/conf/locale/fa/LC_MESSAGES/django.po,sha256=yry0L0s1KLG-NZ5T6rAAiQ1j7vhc3vXG24Knzn141eo,35114 +django/conf/locale/fa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/fa/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/fa/formats.py,sha256=v0dLaIh6-CWCAQHkmX0PaIlA499gTeRcJEi7lVJzw9o,722 +django/conf/locale/fi/LC_MESSAGES/django.mo,sha256=_Co3hzTYSaAMnKp8sNnxlX73AtEfjdUaqK46fiV7LdA,27865 +django/conf/locale/fi/LC_MESSAGES/django.po,sha256=_vBbAfxE0j-qD8PKwyxalip51sRZpA1NRpDnQwsyzXY,30420 +django/conf/locale/fi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/fi/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/fi/formats.py,sha256=CO_wD5ZBHwAVgjxArXktLCD7M-PPhtHbayX_bBKqhlA,1213 +django/conf/locale/fr/LC_MESSAGES/django.mo,sha256=7VGI5GSSsL83Z7rrN5r5BcRGKVcN0sTLe4cXygpzr5w,30291 +django/conf/locale/fr/LC_MESSAGES/django.po,sha256=ubj47GdaMGdh5ureglmUxmouEWF_jI9aSXz-0j3KMPI,32907 +django/conf/locale/fr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/fr/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/fr/formats.py,sha256=0uO3NMUAc2rRZOtr9SMJgFHTNNhr8t2xrGruVBRHTmw,938 +django/conf/locale/fr_BE/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fr_BE/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/fr_BE/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/fr_BE/formats.py,sha256=DB7W-i5BYeRjMRGWMWmm5oK4FNOTy4H4LL_xx6Ztk00,1154 +django/conf/locale/fr_CA/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fr_CA/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/fr_CA/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/fr_CA/formats.py,sha256=uSZ4s7XJmcutcbx51DVRu2Sh9ZkOhlTU1RHI37NQqQs,1171 +django/conf/locale/fr_CH/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fr_CH/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/fr_CH/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/fr_CH/formats.py,sha256=DB7W-i5BYeRjMRGWMWmm5oK4FNOTy4H4LL_xx6Ztk00,1154 +django/conf/locale/fy/LC_MESSAGES/django.mo,sha256=9P7zoJtaYHfXly8d6zBoqkxLM98dO8uI6nmWtsGu-lM,2286 +django/conf/locale/fy/LC_MESSAGES/django.po,sha256=jveK-2MjopbqC9jWcrYbttIb4DUmFyW1_-0tYaD6R0I,19684 +django/conf/locale/fy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/fy/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/fy/formats.py,sha256=mJXj1dHUnO883PYWPwuI07CNbjmnfBTQVRXZMg2hmOk,658 +django/conf/locale/ga/LC_MESSAGES/django.mo,sha256=AE9Vz07y6hXsV3gP-E3uboUU1nWLREpQYUBhKXI0UZY,31429 +django/conf/locale/ga/LC_MESSAGES/django.po,sha256=3biGJaUwzLN_q9b1Pe3_lpQ4-zlT8qEGhCGIU1bMzGo,34517 +django/conf/locale/ga/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ga/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ga/formats.py,sha256=Qh7R3UMfWzt7QIdMZqxY0o4OMpVsqlchHK7Z0QnDWds,682 +django/conf/locale/gd/LC_MESSAGES/django.mo,sha256=2VKzI7Nqd2NjABVQGdcduWHjj0h2b3UBGQub7xaTVPs,30752 +django/conf/locale/gd/LC_MESSAGES/django.po,sha256=3PfuhhmosuarfPjvM2TVf2kHhZaw5_G8oIM2VWTc3gI,33347 +django/conf/locale/gd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/gd/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/gd/formats.py,sha256=7doL7JIoCqA_o-lpCwM3jDHMpptA3BbSgeLRqdZk8Lc,715 +django/conf/locale/gl/LC_MESSAGES/django.mo,sha256=UJY2CZtRqTkiPz5CgV1y1qPbcxZ6tPZvYtAWhwCNGgQ,28464 +django/conf/locale/gl/LC_MESSAGES/django.po,sha256=ZT-YXU4N4Z6qYkUPm84IXPqLznbOsOEE-PQJN9FCzIc,30925 +django/conf/locale/gl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/gl/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/gl/formats.py,sha256=ygSFv-YTS8htG_LW0awegkkOarPRTZNPbUck5sxkAwI,757 +django/conf/locale/he/LC_MESSAGES/django.mo,sha256=pAzuekmiofxdO7eLRThdsoghuHLWhzaeIrrNy0s6eCQ,32301 +django/conf/locale/he/LC_MESSAGES/django.po,sha256=JHeqYJDlX7s9sAkx1voy68XF_w21sopMLypB3I_ioqs,35086 +django/conf/locale/he/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/he/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/he/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/he/formats.py,sha256=M-tu-LmTZd_oYPNH6CZEsdxJN526RUOfnLHlQxRL0N0,712 +django/conf/locale/hi/LC_MESSAGES/django.mo,sha256=8pV5j5q8VbrxdVkcS0qwhVx6DmXRRXPKfRsm3nWhI2g,19712 +django/conf/locale/hi/LC_MESSAGES/django.po,sha256=DPV-I1aXgIiZB7zHdEgAHShZFyb9zlNmMXlyjH5ug0I,29221 +django/conf/locale/hi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/hi/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/hi/formats.py,sha256=JArVM9dMluSP-cwpZydSVXHB5Vs9QKyR9c-bftI9hds,684 +django/conf/locale/hr/LC_MESSAGES/django.mo,sha256=HP4PCb-i1yYsl5eqCamg5s3qBxZpS_aXDDKZ4Hlbbcc,19457 +django/conf/locale/hr/LC_MESSAGES/django.po,sha256=qeVJgKiAv5dKR2msD2iokSOApZozB3Gp0xqzC09jnvs,26329 +django/conf/locale/hr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/hr/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/hr/formats.py,sha256=F4mIdDoaOYJ_lPmsJ_6bQo4Zj8pOSVwuldm92zRy4Fo,1723 +django/conf/locale/hsb/LC_MESSAGES/django.mo,sha256=5MHc26OtRFQ2dUfzDiB-wSqIkS42A9sCe2I_Z_dbR10,30380 +django/conf/locale/hsb/LC_MESSAGES/django.po,sha256=GqEREqt7jWVckUK57SH6VSrz9WjCOlQcAY7lm9FZnAI,32876 +django/conf/locale/hu/LC_MESSAGES/django.mo,sha256=6rkADx1TKbehAEauc_lga5Yo43l26UAG83jrlHmUEiE,29197 +django/conf/locale/hu/LC_MESSAGES/django.po,sha256=kpqAkbZlMHbIY4hfPj230Rssvp8v7OrTpm7FTxbfbwY,31802 +django/conf/locale/hu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/hu/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/hu/formats.py,sha256=xAD7mNsC5wFA2_KGRbBMPKwj884pq0jCKmXhEenGAEk,1001 +django/conf/locale/hy/LC_MESSAGES/django.mo,sha256=KfmTnB-3ZUKDHeNgLiego2Af0WZoHTuNKss3zE-_XOE,22207 +django/conf/locale/hy/LC_MESSAGES/django.po,sha256=kNKlJ5NqZmeTnnxdqhmU3kXiqT9t8MgAFgxM2V09AIc,28833 +django/conf/locale/ia/LC_MESSAGES/django.mo,sha256=JcrpersrDAoJXrD3AnPYBCQyGJ-6kUzH_Q8StbqmMeE,21428 +django/conf/locale/ia/LC_MESSAGES/django.po,sha256=LG0juYDjf3KkscDxwjY3ac6H1u5BBwGHljW3QWvr1nc,26859 +django/conf/locale/id/LC_MESSAGES/django.mo,sha256=yvfilgl_Bt8BXM4bFbQACjS1Nx4vbkcJk3juYpocu7M,27405 +django/conf/locale/id/LC_MESSAGES/django.po,sha256=bLzDlWUNQPsloIlto2GVuStzGJtjiUuDZ3ky3U-R47Q,29999 +django/conf/locale/id/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/id/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/id/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/id/formats.py,sha256=kYyOxWHN3Jyif3rFxLFyBUjTzFUwmuaLrkw5JvGbEz8,1644 +django/conf/locale/ig/LC_MESSAGES/django.mo,sha256=tAZG5GKhEbrUCJtLrUxzmrROe1RxOhep8w-RR7DaDYo,27188 +django/conf/locale/ig/LC_MESSAGES/django.po,sha256=DB_I4JXKMY4M7PdAeIsdqnLSFpq6ImkGPCuY82rNBpY,28931 +django/conf/locale/ig/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ig/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ig/formats.py,sha256=P3IsxhF5rNFZ5nCWUSyJfFLb0V1QdX_Xn-tYdrcll5Q,1119 +django/conf/locale/io/LC_MESSAGES/django.mo,sha256=uI78C7Qkytf3g1A6kVWiri_CbS55jReO2XmRfLTeNs0,14317 +django/conf/locale/io/LC_MESSAGES/django.po,sha256=FyN4ZTfNPV5TagM8NEhRts8y_FhehIPPouh_MfslnWY,23124 +django/conf/locale/is/LC_MESSAGES/django.mo,sha256=1pFU-dTPg2zs87L0ZqFFGS9q-f-XrzTOlhKujlyNL2E,24273 +django/conf/locale/is/LC_MESSAGES/django.po,sha256=76cQ_9DLg1jR53hiKSc1tLUMeKn8qTdPwpHwutEK014,28607 +django/conf/locale/is/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/is/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/is/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/is/formats.py,sha256=scsNfP4vVacxWIoN03qc2Fa3R8Uh5Izr1MqBicrAl3A,688 +django/conf/locale/it/LC_MESSAGES/django.mo,sha256=39GKwsSkjlL1h4vVysTWMuo4hq2UGQEC-kqJcaVW54A,28587 +django/conf/locale/it/LC_MESSAGES/django.po,sha256=t973TArDuAfpRpPgSTyc-bU6CPti2xkST9O2tVb8vFc,31670 +django/conf/locale/it/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/it/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/it/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/it/formats.py,sha256=KzkSb3KXBwfM3gk2FezyR-W8_RYKpnlFeFuIi5zl-S0,1774 +django/conf/locale/ja/LC_MESSAGES/django.mo,sha256=2Ye0yCvw0i_rJuhaPU4PmXMytkvUPh0eFAr2mcj3QAo,30945 +django/conf/locale/ja/LC_MESSAGES/django.po,sha256=E3n4fgr5Hje_J0OfnatKyGHkduYHigwuywmLRwynZHo,33466 +django/conf/locale/ja/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ja/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ja/formats.py,sha256=COUuaXo5zCSNzEwJ0smjbm9Qj28YNBcGxm8qFCJv4sE,729 +django/conf/locale/ka/LC_MESSAGES/django.mo,sha256=4e8at-KNaxYJKIJd8r6iPrYhEdnaJ1qtPw-QHPMh-Sc,24759 +django/conf/locale/ka/LC_MESSAGES/django.po,sha256=pIgaLU6hXgVQ2WJp1DTFoubI7zHOUkkKMddwV3PTdt8,32088 +django/conf/locale/ka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ka/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ka/formats.py,sha256=elTGOjS-mxuoSCAKOm8Wz2aLfh4pWvNyClUFcrYq9ng,1861 +django/conf/locale/kab/LC_MESSAGES/django.mo,sha256=x5Kyq2Uf3XNlQP06--4lT8Q1MacA096hZbyMJRrHYIc,7139 +django/conf/locale/kab/LC_MESSAGES/django.po,sha256=DsFL3IzidcAnPoAWIfIbGJ6Teop1yKPBRALeLYrdiFA,20221 +django/conf/locale/kk/LC_MESSAGES/django.mo,sha256=krjcDvA5bu591zcP76bWp2mD2FL1VUl7wutaZjgD668,13148 +django/conf/locale/kk/LC_MESSAGES/django.po,sha256=RgM4kzn46ZjkSDHMAsyOoUg7GdxGiZ-vaEOdf7k0c5A,23933 +django/conf/locale/km/LC_MESSAGES/django.mo,sha256=kEvhZlH7lkY1DUIHTHhFVQzOMAPd_-QMItXTYX0j1xY,7223 +django/conf/locale/km/LC_MESSAGES/django.po,sha256=QgRxEiJMopO14drcmeSG6XEXQpiAyfQN0Ot6eH4gca8,21999 +django/conf/locale/km/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/km/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/km/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/km/formats.py,sha256=0UMLrZz1aI2sdRPkJ0YzX99co2IV6tldP7pEvGEPdP0,750 +django/conf/locale/kn/LC_MESSAGES/django.mo,sha256=fQ7AD5tUiV_PZFBxUjNPQN79dWBJKqfoYwRdrOaQjU4,17515 +django/conf/locale/kn/LC_MESSAGES/django.po,sha256=fS4Z7L4NGVQ6ipZ7lMHAqAopTBP0KkOc-eBK0IYdbBE,28133 +django/conf/locale/kn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/kn/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/kn/formats.py,sha256=X5j9VHIW2XRdeTzDFEyS8tG05OBFzP2R7sEGUQa_INg,680 +django/conf/locale/ko/LC_MESSAGES/django.mo,sha256=21a6D_pZTeyP9B7n19gLYBPuweAdWawAZFPYzVrUaRY,29175 +django/conf/locale/ko/LC_MESSAGES/django.po,sha256=_0oYJJD8RcPEkuyQ48xCuH60EINzVdCopTzIysYJIiM,32054 +django/conf/locale/ko/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ko/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ko/formats.py,sha256=qn36EjiO4Bu12D_6qitjMDkBfy4M0LgFE-FhK8bPOto,2061 +django/conf/locale/ky/LC_MESSAGES/django.mo,sha256=IBVfwPwaZmaoljMRBGww_wWGMJqbF_IOHHnH2j-yJw8,31395 +django/conf/locale/ky/LC_MESSAGES/django.po,sha256=5ACTPMMbXuPJbU7Rfzs0yZHh3xy483pqo5DwSBQp4s4,33332 +django/conf/locale/ky/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ky/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ky/formats.py,sha256=QCq7vxAD5fe9VhcjRhG6C3N28jNvdzKR-c-EvDSJ1Pg,1178 +django/conf/locale/lb/LC_MESSAGES/django.mo,sha256=tQSJLQUeD5iUt-eA2EsHuyYqsCSYFtbGdryATxisZsc,8008 +django/conf/locale/lb/LC_MESSAGES/django.po,sha256=GkKPLO3zfGTNync-xoYTf0vZ2GUSAotAjfPSP01SDMU,20622 +django/conf/locale/lt/LC_MESSAGES/django.mo,sha256=cdUzK5RYW-61Upf8Sd8ydAg9wXg21pJaIRWFSKPv17c,21421 +django/conf/locale/lt/LC_MESSAGES/django.po,sha256=Lvpe_xlbxSa5vWEossxBCKryDVT7Lwz0EnuL1kSO6OY,28455 +django/conf/locale/lt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/lt/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/lt/formats.py,sha256=C9ScR3gYswT1dQXFedUUnYe6DQPVGAS_nLxs0h2E3dE,1637 +django/conf/locale/lv/LC_MESSAGES/django.mo,sha256=EYHx-u3LwFcMCO9oHR1IAhAfm5axFLatAqe7CMNaszo,29213 +django/conf/locale/lv/LC_MESSAGES/django.po,sha256=920CMyfWRaJVTO6hJjiAJN33GTRcymBga7FjlqrcZhI,32015 +django/conf/locale/lv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/lv/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/lv/formats.py,sha256=k8owdq0U7-x6yl8ll1W5VjRoKdp8a1G2enH04G5_nvU,1713 +django/conf/locale/mk/LC_MESSAGES/django.mo,sha256=uQKmcys0rOsRynEa812XDAaeiNTeBMkqhR4LZ_cfdAk,22737 +django/conf/locale/mk/LC_MESSAGES/django.po,sha256=4K11QRb493wD-FM6-ruCxks9_vl_jB59V1c1rx-TdKg,29863 +django/conf/locale/mk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/mk/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/mk/formats.py,sha256=xwnJsXLXGogOqpP18u6GozjehpWAwwKmXbELolYV_k4,1451 +django/conf/locale/ml/LC_MESSAGES/django.mo,sha256=MGvV0e3LGUFdVIA-h__BuY8Ckom2dAhSFvAtZ8FiAXU,30808 +django/conf/locale/ml/LC_MESSAGES/django.po,sha256=iLllS6vlCpBNZfy9Xd_2Cuwi_1-Vz9fW4G1lUNOuZ6k,37271 +django/conf/locale/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ml/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ml/formats.py,sha256=ZR7tMdJF0U6K1H95cTqrFH4gop6ZuSQ7vD2h0yKq6mo,1597 +django/conf/locale/mn/LC_MESSAGES/django.mo,sha256=T8B76Nv_h6nCsTENPSAag_oGc67uj-fMy0jfHyQ7WLI,33282 +django/conf/locale/mn/LC_MESSAGES/django.po,sha256=uaXe-9Y8KcNBAij69nU0Id1ABE6q_pyNRhqigKGlzZY,35852 +django/conf/locale/mn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/mn/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/mn/formats.py,sha256=fsexJU9_UTig2PS_o11hcEmrbPBS8voI4ojuAVPOd_U,676 +django/conf/locale/mr/LC_MESSAGES/django.mo,sha256=wDaS4FOhKcxM7mhzwItieazQ_qBp97ZaKhTZgETDXt0,27608 +django/conf/locale/mr/LC_MESSAGES/django.po,sha256=6eBOK9ZgqrvD1pdIa3NtXojHx-qw_WJLxtNdCkEelrg,34449 +django/conf/locale/ms/LC_MESSAGES/django.mo,sha256=U4_kzfbYF7u78DesFRSReOIeVbOnq8hi_pReFfHfyUQ,27066 +django/conf/locale/ms/LC_MESSAGES/django.po,sha256=49pG3cykGjVfC9N8WPyskz-m7r6KmQiq5i8MR6eOi54,28985 +django/conf/locale/ms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ms/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ms/formats.py,sha256=YtOBs6s4j4SOmfB3cpp2ekcxVFoVGgUN8mThoSueCt0,1522 +django/conf/locale/my/LC_MESSAGES/django.mo,sha256=SjYOewwnVim3-GrANk2RNanOjo6Hy2omw0qnpkMzTlM,2589 +django/conf/locale/my/LC_MESSAGES/django.po,sha256=b_QSKXc3lS2Xzb45yVYVg307uZNaAnA0eoXX2ZmNiT0,19684 +django/conf/locale/nb/LC_MESSAGES/django.mo,sha256=qX1Z1F3YXVavlrECVkHXek9tsvJEXbWNrogdjjY3jCg,27007 +django/conf/locale/nb/LC_MESSAGES/django.po,sha256=QQ_adZsyp2BfzcJS-LXnZL0EMmUZLbnHsBB1pRRfV-8,29500 +django/conf/locale/nb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/nb/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/nb/formats.py,sha256=y1QLE-SG00eHwje0lkAToHtz4t621Rz_HQRyBWCgK8c,1552 +django/conf/locale/ne/LC_MESSAGES/django.mo,sha256=BcK8z38SNWDXXWVWUmOyHEzwk2xHEeaW2t7JwrxehKM,27248 +django/conf/locale/ne/LC_MESSAGES/django.po,sha256=_Kj_i2zMb7JLU7EN7Z7JcUn89YgonJf6agSFCjXa49w,33369 +django/conf/locale/nl/LC_MESSAGES/django.mo,sha256=1nQqA4PEgduFpzunMFi0pFVn2qmDPtI76umGzOlgoMU,28191 +django/conf/locale/nl/LC_MESSAGES/django.po,sha256=j5ZwYFj2voEYEybwkH5tPEYkn99g6xnCNH1Ej288yVw,31031 +django/conf/locale/nl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/nl/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/nl/formats.py,sha256=cKaaOvRdeauORjvuZ1xyVcVsl36J3Zk4FSE-lnx2Xwg,3927 +django/conf/locale/nn/LC_MESSAGES/django.mo,sha256=Ccj8kjvjTefC8H6TuDCOdSrTmtkYXkmRR2V42HBMYo4,26850 +django/conf/locale/nn/LC_MESSAGES/django.po,sha256=oaVJTl0NgZ92XJv9DHdsXVaKAc81ky_R3CA6HljTH-8,29100 +django/conf/locale/nn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/nn/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/nn/formats.py,sha256=y1QLE-SG00eHwje0lkAToHtz4t621Rz_HQRyBWCgK8c,1552 +django/conf/locale/os/LC_MESSAGES/django.mo,sha256=LBpf_dyfBnvGOvthpn5-oJuFiSNHrgiVHBzJBR-FxOw,17994 +django/conf/locale/os/LC_MESSAGES/django.po,sha256=WYlAnNYwGFnH76Elnnth6YP2TWA-fEtvV5UinnNj7AA,26278 +django/conf/locale/pa/LC_MESSAGES/django.mo,sha256=H1hCnQzcq0EiSEaayT6t9H-WgONO5V4Cf7l25H2930M,11253 +django/conf/locale/pa/LC_MESSAGES/django.po,sha256=26ifUdCX9fOiXfWvgMkOXlsvS6h6nNskZcIBoASJec4,23013 +django/conf/locale/pl/LC_MESSAGES/django.mo,sha256=8vp8b354Fc7VM1YuOJlOZLf4befel3MDCK-NybFMBtA,30667 +django/conf/locale/pl/LC_MESSAGES/django.po,sha256=v4-ZzdKIL3nYVUxTszG9up4pK1dkxaUiIjFrksu3DAo,34616 +django/conf/locale/pl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/pl/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/pl/formats.py,sha256=KREhPtHuzKS_ZsAqXs5LqYPGhn6O-jLd4WZQ-39BA8I,1032 +django/conf/locale/pt/LC_MESSAGES/django.mo,sha256=nlj_L7Z2FkXs1w6wCGGseuZ_U-IecnlfYRtG5jPkGrs,20657 +django/conf/locale/pt/LC_MESSAGES/django.po,sha256=ETTedbjU2J4FLi2QDHNN8C7zlAsvLWNUlYzkEV1WB6s,26224 +django/conf/locale/pt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/pt/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/pt/formats.py,sha256=RQ9MuIwUPhiY2u-1hFU2abs9Wqv1qZE2AUAfYVK-NU8,1520 +django/conf/locale/pt_BR/LC_MESSAGES/django.mo,sha256=4mM2UEHa1sbwQjlHbxhpGRafRyWyQs56zJ8d3nzNMD4,29218 +django/conf/locale/pt_BR/LC_MESSAGES/django.po,sha256=SvnvurlGJ2QutJGKbGmdAQ55QllPuDqAyDjF0ZYadSA,33298 +django/conf/locale/pt_BR/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/pt_BR/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/pt_BR/formats.py,sha256=J1IKV7cS2YMJ5_qlT9h1dDYUX9tLFvqA95l_GpZTLUY,1285 +django/conf/locale/ro/LC_MESSAGES/django.mo,sha256=9RSlC_3Ipn_Vm31ALaGHsrOA1IKmKJ5sN2m6iy5Hk60,21493 +django/conf/locale/ro/LC_MESSAGES/django.po,sha256=XoGlHKEnGlno_sbUTnbkg9nGkRfPIpxv7Wfm3hHGu9w,28099 +django/conf/locale/ro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ro/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ro/formats.py,sha256=e_dp0zyfFfoydrGyn6Kk3DnQIj7RTRuvRc6rQ6tSxzA,928 +django/conf/locale/ru/LC_MESSAGES/django.mo,sha256=Y9QMees4Kj3WQDoAtCcugQh2Ky1_ZoaU-vSyTckDxnk,38774 +django/conf/locale/ru/LC_MESSAGES/django.po,sha256=zWmJpjWwpKPnoCjIEKOjclbxBjWf6dwgwoJdnTEx0Jc,42141 +django/conf/locale/ru/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ru/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ru/formats.py,sha256=lTfYbecdSmHCxebog_2bd0N32iD3nEq_f5buh9il-nI,1098 +django/conf/locale/sk/LC_MESSAGES/django.mo,sha256=2UgS2LCSCPEhJV4R2LQXxGw1LvAZMvi6B1ITaVD_x_U,29965 +django/conf/locale/sk/LC_MESSAGES/django.po,sha256=vt-A2Ayh5r-a49x3lLxe8FU7tm-S2YQHRk-N15smi9k,32799 +django/conf/locale/sk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/sk/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/sk/formats.py,sha256=bWj0FNpYfOAgi9J-L4VuiN6C_jsgPsKNdLYd9gTnFs0,1051 +django/conf/locale/sl/LC_MESSAGES/django.mo,sha256=1mzO4ZC9IYwbKM7iavLJfb2bYaLaC1UVmm4T37Xil7g,23147 +django/conf/locale/sl/LC_MESSAGES/django.po,sha256=EDR734fFO7UM_F-4Q-psEHc-VF2po7fl6n5akKdWYyY,29440 +django/conf/locale/sl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/sl/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/sl/formats.py,sha256=Nq4IfEUnlGebMZeRvB2l9aps-5G5b4y1kQ_3MiJTfe8,1642 +django/conf/locale/sq/LC_MESSAGES/django.mo,sha256=resBCLeu82Vp4LMPj8HJCOFKPxXqpmDJtZq9orfGh34,28679 +django/conf/locale/sq/LC_MESSAGES/django.po,sha256=kO8LFug9I9JdqNDta9pybyN659LMJTlA0vxFkUHN7Io,31128 +django/conf/locale/sq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/sq/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/sq/formats.py,sha256=SA_jCSNwI8-p79skHoLxrPLZnkyq1PVadwT6gMt7n_M,688 +django/conf/locale/sr/LC_MESSAGES/django.mo,sha256=bqJfj3QMTIUFiMxYWBUBGXdjZFLrz1HXMoEINi_Z04I,35035 +django/conf/locale/sr/LC_MESSAGES/django.po,sha256=NGxxpRU-9gqj2I0yPzRuE3alMaUAgOhD_pteaLIhB6A,37561 +django/conf/locale/sr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/sr/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/sr/formats.py,sha256=F3_gYopOXINcllaPFzTqZrZ2oZ1ye3xzR0NQtlqXYp0,1729 +django/conf/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=GHilyEVbIGQt6ItMgQJVk-m6TF8tgHI4rtidYmOwUGI,28715 +django/conf/locale/sr_Latn/LC_MESSAGES/django.po,sha256=FegpyTDYtB-kPG8d8EmK_lK3C7PSxhc2p9xLAZadO74,41466 +django/conf/locale/sr_Latn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/sr_Latn/formats.py,sha256=BDZm-ajQgCIxQ8mCcckEH32IoCN9233TvAOXkg4mc38,1728 +django/conf/locale/sv/LC_MESSAGES/django.mo,sha256=sLEVlvxPVNVms8Tfmhxs84Ltbx7ryDZtwU54SGJXKRc,28006 +django/conf/locale/sv/LC_MESSAGES/django.po,sha256=Emb4MrDT_fsFdZRhixZztQVgYb5Wl-YpsR8bC9yY3hs,30872 +django/conf/locale/sv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/sv/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/sv/formats.py,sha256=9o8ZtaSq1UOa5y6Du3rQsLAAl5ZOEdVY1OVVMbj02RA,1311 +django/conf/locale/sw/LC_MESSAGES/django.mo,sha256=aUmIVLANgSCTK5Lq8QZPEKWjZWnsnBvm_-ZUcih3J6g,13534 +django/conf/locale/sw/LC_MESSAGES/django.po,sha256=GOE6greXZoLhpccsfPZjE6lR3G4vpK230EnIOdjsgPk,22698 +django/conf/locale/ta/LC_MESSAGES/django.mo,sha256=WeM8tElbcmL11P_D60y5oHKtDxUNWZM9UNgXe1CsRQ4,7094 +django/conf/locale/ta/LC_MESSAGES/django.po,sha256=kgHTFqysEMj1hqktLr-bnL1NRM715zTpiwhelqC232s,22329 +django/conf/locale/ta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ta/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ta/formats.py,sha256=vmjfiM54oJJxqcdgZJUNNQN7oMS-XLVBYJ4lWBb5ctY,682 +django/conf/locale/te/LC_MESSAGES/django.mo,sha256=Sk45kPC4capgRdW5ImOKYEVxiBjHXsosNyhVIDtHLBc,13259 +django/conf/locale/te/LC_MESSAGES/django.po,sha256=IQxpGTpsKUtBGN1P-KdGwvE7ojNCqKqPXEvYD3qT5A4,25378 +django/conf/locale/te/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/te/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/te/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/te/formats.py,sha256=-HOoZgmnME4--4CuXzcnhXqNma0Wh7Ninof3RCCGZkU,680 +django/conf/locale/tg/LC_MESSAGES/django.mo,sha256=ePzS2pD84CTkHBaiaMyXBxiizxfFBjHdsGH7hCt5p_4,28497 +django/conf/locale/tg/LC_MESSAGES/django.po,sha256=oSKu3YT3griCrDLPqptZmHcuviI99wvlfX6I6nLJnDk,33351 +django/conf/locale/tg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/tg/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/tg/formats.py,sha256=TG5TGfLNy4JSjl-QAWk46gIEb0ijdBpqPrDtwfJzshw,1160 +django/conf/locale/th/LC_MESSAGES/django.mo,sha256=SJeeJWbdF-Lae5BendxlyMKqx5zdDmh3GCQa8ER5FyY,18629 +django/conf/locale/th/LC_MESSAGES/django.po,sha256=K4ITjzHLq6DyTxgMAfu3CoGxrTd3aG2J6-ZxQj2KG1U,27507 +django/conf/locale/th/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/th/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/th/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/th/formats.py,sha256=SmCUD-zVgI1QE2HwqkFtAO87rJ-FoCjw1s-2-cfl1h0,1072 +django/conf/locale/tk/LC_MESSAGES/django.mo,sha256=qtFLB9rBkpUDv5LtNAZqkkCKtquMySyg3dzQ8x_Nb-Y,27792 +django/conf/locale/tk/LC_MESSAGES/django.po,sha256=dEjcfeYmvjKbAPFVCmrlh7rVOU90MgiYpoo1cHfPj2E,30232 +django/conf/locale/tk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/tk/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/tk/formats.py,sha256=TG5TGfLNy4JSjl-QAWk46gIEb0ijdBpqPrDtwfJzshw,1160 +django/conf/locale/tr/LC_MESSAGES/django.mo,sha256=38GDWb1p0LnWAwXC5CaRYrMgBDgB1O68Jrzer-2Z6Ko,28842 +django/conf/locale/tr/LC_MESSAGES/django.po,sha256=6dCHOghUd4tr14G3ylLQRLkjOZcmY8RDjfSuL6FMq8A,31433 +django/conf/locale/tr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/tr/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/tr/formats.py,sha256=yJg-7hmevD1gvj9iBRMCiYGgd5DxKZcL7T_C3K3ztME,1019 +django/conf/locale/tt/LC_MESSAGES/django.mo,sha256=r554DvdPjD_S8hBRjW8ehccEjEk8h7czQsp46FZZ_Do,14500 +django/conf/locale/tt/LC_MESSAGES/django.po,sha256=W8QgEAH7yXNmjWoF-UeqyVAu5jEMHZ5MXE60e5sawJc,24793 +django/conf/locale/udm/LC_MESSAGES/django.mo,sha256=cIf0i3TjY-yORRAcSev3mIsdGYT49jioTHZtTLYAEyc,12822 +django/conf/locale/udm/LC_MESSAGES/django.po,sha256=n9Az_8M8O5y16yE3iWmK20R9F9VoKBh3jR3iKwMgFlY,23113 +django/conf/locale/ug/LC_MESSAGES/django.mo,sha256=iaFelEuogA9O-dWIUlp_Zjpq33zMNaFCsOpuZT26LfM,35467 +django/conf/locale/ug/LC_MESSAGES/django.po,sha256=Zd3j_J7Su7VTe6TGd8ghDBD2bxX1NLKfA2wsrHPvS2w,37731 +django/conf/locale/ug/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/ug/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/ug/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/ug/formats.py,sha256=qoSAkaWqJ7FW2OTGaZs_CfiMN9PxAVxHecZfwNCzdUo,454 +django/conf/locale/uk/LC_MESSAGES/django.mo,sha256=WD7WRpvZXYTPDagVTbqdpVJSVM4zP8xAmJXKs30tP4I,29855 +django/conf/locale/uk/LC_MESSAGES/django.po,sha256=QeMUwkqdBdnpYt1c2kkAh65HWLMKcHsgfAV1Ca-C_6w,36185 +django/conf/locale/uk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/uk/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/uk/formats.py,sha256=ZmeYmL0eooFwQgmE054V36RQ469ZTfAv6k8SUJrDYQ8,1241 +django/conf/locale/ur/LC_MESSAGES/django.mo,sha256=M6R2DYFRBvcVRAsgVxVOLvH3e8v14b2mJs650UlUb2I,12291 +django/conf/locale/ur/LC_MESSAGES/django.po,sha256=Lr0DXaPqWtCFAxn10BQ0vlvZIMNRvCg_QJQxAC01eWk,23479 +django/conf/locale/uz/LC_MESSAGES/django.mo,sha256=CJSRoHJANkNevG-6QM-TL5VJ9UgS63dWPHeGHan9Ano,26443 +django/conf/locale/uz/LC_MESSAGES/django.po,sha256=u6En3LJg7x7VKsCNff3haprDlsizPxBukfWomKXaMak,29725 +django/conf/locale/uz/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/uz/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/uz/formats.py,sha256=cdmqOUBVnPSyi2k9AkOGl27s89PymFePG2gtnYzYbiw,1176 +django/conf/locale/vi/LC_MESSAGES/django.mo,sha256=TMsBzDnf9kZndozqVUnEKtKxfH2N1ajLdrm8hJ4HkYI,17396 +django/conf/locale/vi/LC_MESSAGES/django.po,sha256=tL2rvgunvaN_yqpPSBYAKImFDaFaeqbnpEw_egI11Lo,25342 +django/conf/locale/vi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/vi/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/vi/formats.py,sha256=_xIugkqLnjN9dzIhefMpsJXaTPldr4blKSGS-c3swg0,762 +django/conf/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=pc4Tj52sDX136DQQsxtNKQ2pqCnmLZdZlVlTtyfz124,26944 +django/conf/locale/zh_Hans/LC_MESSAGES/django.po,sha256=qzXCLkD580Q8MzmbBFtTzaMecalBsMrZFzJiNJrD_sk,30141 +django/conf/locale/zh_Hans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/zh_Hans/formats.py,sha256=iMb9Taj6xQQA3l_NWCC7wUlQuh4YfNUgs2mHcQ6XUEo,1598 +django/conf/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=IdUhxMJtFZAzsKuTKsG_ehCT9xMss31d-KoVf7GkWQg,26802 +django/conf/locale/zh_Hant/LC_MESSAGES/django.po,sha256=yZ1jlfTF9Do5TayisoXES41toj-m_Nb4jauJm73NITg,29034 +django/conf/locale/zh_Hant/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc,, +django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc,, +django/conf/locale/zh_Hant/formats.py,sha256=iMb9Taj6xQQA3l_NWCC7wUlQuh4YfNUgs2mHcQ6XUEo,1598 +django/conf/project_template/manage.py-tpl,sha256=JDuGG02670bELmn3XLUSxHFZ8VFhqZTT_oN9VbT5Acc,674 +django/conf/project_template/project_name/__init__.py-tpl,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/conf/project_template/project_name/asgi.py-tpl,sha256=q_6Jo5tLy6ba-S7pLs3YTK7byxSBmU0oYylYJlNvwHI,428 +django/conf/project_template/project_name/settings.py-tpl,sha256=JskIPIEWPSX2p7_rlsPr60JDjmFC0bVEeMChmq--0OY,3342 +django/conf/project_template/project_name/urls.py-tpl,sha256=5en0vlo3TdXdQquXZVNENrmX2DZJxje156HqcRbySKU,789 +django/conf/project_template/project_name/wsgi.py-tpl,sha256=OCfjjCsdEeXPkJgFIrMml_FURt7msovNUPnjzb401fs,428 +django/conf/urls/__init__.py,sha256=qmpaRi5Gn2uaY9h3g9RNu0z3LDEpEeNL9JlfSLed9s0,292 +django/conf/urls/__pycache__/__init__.cpython-310.pyc,, +django/conf/urls/__pycache__/i18n.cpython-310.pyc,, +django/conf/urls/__pycache__/static.cpython-310.pyc,, +django/conf/urls/i18n.py,sha256=M_lO6q_92QrrPoTY9oui95BQgJfPla9edRNuN5Vc4GM,1166 +django/conf/urls/static.py,sha256=gZOYaiIf3SxQ75N69GyVm9C0OmQv1r1IDrUJ0E7zMe0,908 +django/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/__pycache__/__init__.cpython-310.pyc,, +django/contrib/admin/__init__.py,sha256=i0TwjHWq6qfZJ0e9pVWAZXxVHZ-eOPewGjtdwHljbOM,1203 +django/contrib/admin/__pycache__/__init__.cpython-310.pyc,, +django/contrib/admin/__pycache__/actions.cpython-310.pyc,, +django/contrib/admin/__pycache__/apps.cpython-310.pyc,, +django/contrib/admin/__pycache__/checks.cpython-310.pyc,, +django/contrib/admin/__pycache__/decorators.cpython-310.pyc,, +django/contrib/admin/__pycache__/exceptions.cpython-310.pyc,, +django/contrib/admin/__pycache__/filters.cpython-310.pyc,, +django/contrib/admin/__pycache__/forms.cpython-310.pyc,, +django/contrib/admin/__pycache__/helpers.cpython-310.pyc,, +django/contrib/admin/__pycache__/models.cpython-310.pyc,, +django/contrib/admin/__pycache__/options.cpython-310.pyc,, +django/contrib/admin/__pycache__/sites.cpython-310.pyc,, +django/contrib/admin/__pycache__/tests.cpython-310.pyc,, +django/contrib/admin/__pycache__/utils.cpython-310.pyc,, +django/contrib/admin/__pycache__/widgets.cpython-310.pyc,, +django/contrib/admin/actions.py,sha256=Rdz8-2cPMklSQoPuPBrhWY0MzgllGS6jHVDR0Mq2U48,3171 +django/contrib/admin/apps.py,sha256=BOiulA4tsb3wuAUtLGTGjrbywpSXX0dLo2pUCGV8URw,840 +django/contrib/admin/checks.py,sha256=KkyUfKtosw8cRETN3RSvPO2NOPgdEUjOt1ilnFMYvBM,50474 +django/contrib/admin/decorators.py,sha256=dki7GLFKOPT-mB5rxsYX12rox18BywroxmrzjG_VJXM,3481 +django/contrib/admin/exceptions.py,sha256=VJhzurallXV322hhZklmvp3OmDIZZQpbEOuE-CX7938,507 +django/contrib/admin/filters.py,sha256=xWca0wsA_fGlkgV9mAXA3RipmXvj8EKaumU4f_Kyk9s,27668 +django/contrib/admin/forms.py,sha256=0UCJstmmBfp_c_0AqlALJQYy9bxXo9fqoQQICQONGEo,1023 +django/contrib/admin/helpers.py,sha256=MBXCdcywfCWHUSymxYBNW8VyJ7u_lzpmz8ZISayYMR0,18622 +django/contrib/admin/locale/af/LC_MESSAGES/django.mo,sha256=pYiZtE4_lsLZTy0g4XzY3wx8DCNiDZXfRkSpGrDHyd4,17407 +django/contrib/admin/locale/af/LC_MESSAGES/django.po,sha256=yIx87yG_CHe1cWnimDcKnalK65_qaPqe3AAuDCpMjso,18838 +django/contrib/admin/locale/af/LC_MESSAGES/djangojs.mo,sha256=mvjNbeoFfpyc8aHeOi3-X7QGeY6o29IZPXMZT7BnOGU,5773 +django/contrib/admin/locale/af/LC_MESSAGES/djangojs.po,sha256=KdjKyHdgLPDj09K4IgTJ_KWU47ZlNSnuPklRZDT1bHo,6546 +django/contrib/admin/locale/am/LC_MESSAGES/django.mo,sha256=UOwMxYH1r5AEBpu-P9zxHazk3kwI4CtsPosGIYtl6Hs,8309 +django/contrib/admin/locale/am/LC_MESSAGES/django.po,sha256=NmsIZoBEQwyBIqbKjkwCJ2_iMHnMKB87atoT0iuNXrw,14651 +django/contrib/admin/locale/ar/LC_MESSAGES/django.mo,sha256=tzGQ8jSJc406IBBwtAErlXVqaA10glxB8krZtWp1Rq4,19890 +django/contrib/admin/locale/ar/LC_MESSAGES/django.po,sha256=RBJbiYNDy57K592OKghugZFYiHpTvxUoEQ_B26-5i8A,21339 +django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo,sha256=xoI2xNKgspuuJe1UCUB9H6Kyp3AGhj5aeo_WEg5e23A,6545 +django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po,sha256=jwehFDFk3lMIEH43AEU_JyHOm84Seo-OLd5FmGBbaxo,7281 +django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=ipELNNGQYb_nHTEQbUFED8IT26L9c2UXsELf4wk0q6k,19947 +django/contrib/admin/locale/ar_DZ/LC_MESSAGES/django.po,sha256=2mGF2NfofR8WgSJPShF5CrMjECXj0dGFcFaZ2lriulc,21378 +django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.mo,sha256=L3N1U9OFXYZ8OfrvKHLbVvXa40biIDdmon0ZV8BOIvY,6423 +django/contrib/admin/locale/ar_DZ/LC_MESSAGES/djangojs.po,sha256=Atzp95E2dFtSHZHHna0pBCqU_2V7partODX675OBkQs,7206 +django/contrib/admin/locale/ast/LC_MESSAGES/django.mo,sha256=3uffu2zPbQ1rExUsG_ambggq854Vy8HbullkCYdazA4,2476 +django/contrib/admin/locale/ast/LC_MESSAGES/django.po,sha256=wCWFh9viYUhTGOX0mW3fpN2z0kdE6b7IaA-A5zzb3Yo,11676 +django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.mo,sha256=kiG-lzQidkXER5s_6POO1G91mcAv9VAkAXI25jdYBLE,2137 +django/contrib/admin/locale/ast/LC_MESSAGES/djangojs.po,sha256=s4s6aHocTlzGcFi0p7cFGTi3K8AgoPvFCv7-Hji6At0,4085 +django/contrib/admin/locale/az/LC_MESSAGES/django.mo,sha256=iuElxhnD6K_xzp4WhuYrM6-EREY6WBWHntASQFOhFQ8,18963 +django/contrib/admin/locale/az/LC_MESSAGES/django.po,sha256=GiPWzcWbxWjfzDA4F_ed2j1Uce2Ktri8ZXm7ecF9jbk,20383 +django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo,sha256=sre90ULGTqwvLUyrrTJrj3kEPwlbP-VDg-fqT_02fsE,5225 +django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po,sha256=-o9woCOf9ikbIptd9uTej6G-TtTQPKRSuK86N0Ta0yU,5968 +django/contrib/admin/locale/be/LC_MESSAGES/django.mo,sha256=ndFEwhHu8GP4EZQoJNSqH-oWNLWdEYcbleaFYCU74nI,23275 +django/contrib/admin/locale/be/LC_MESSAGES/django.po,sha256=QAwFZJpkz-Hm6vS5AHyQ8rxowt_LVhMAYC-cS78F9Qg,24597 +django/contrib/admin/locale/be/LC_MESSAGES/djangojs.mo,sha256=e1xbTtl47sBU5ZCUEf4fHN6E7rRkz_HIYCObX0lWDug,7703 +django/contrib/admin/locale/be/LC_MESSAGES/djangojs.po,sha256=DBSHPnSZm7AVqxg1fINkRQ89QVp_cdi4VhQ7Ynd1NWs,8466 +django/contrib/admin/locale/bg/LC_MESSAGES/django.mo,sha256=fNYcFUCFOnBEH_lR4t80bUN6IwkjS5tIs7xWRNxu80I,22994 +django/contrib/admin/locale/bg/LC_MESSAGES/django.po,sha256=1HZYpZgHwqJsPMwasK1O8zv7mDgX3t-2JTdtV_lzM_w,24461 +django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo,sha256=IRQMah9wBmq0g9RZ5hBH_dvQD4Q_pmNG4jJHxCGWwZI,7195 +django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po,sha256=zv5xU9wS1PCdsmmWaV8txSdY4JduEse7w4iWd3QkzsE,7900 +django/contrib/admin/locale/bn/LC_MESSAGES/django.mo,sha256=I3KUX53ePEC-8x_bwkR5spx3WbJRR8Xf67_2Xrr7Ccg,18585 +django/contrib/admin/locale/bn/LC_MESSAGES/django.po,sha256=UvKCBSa5MuxxZ7U5pRWXH6CEQ9WCJH2cQND0jjBmgpQ,22889 +django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo,sha256=t_OiMyPMsR2IdH65qfD9qvQfpWbwFueNuY72XSed2Io,2313 +django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po,sha256=iFwEJi4k3ULklCq9eQNUhKVblivQPJIoC_6lbyEkotY,4576 +django/contrib/admin/locale/br/LC_MESSAGES/django.mo,sha256=yCuMwrrEB_H44UsnKwY0E87sLpect_AMo0GdBjMZRPs,6489 +django/contrib/admin/locale/br/LC_MESSAGES/django.po,sha256=WMU_sN0ENWgyEbKOm8uVQfTQh9sabvKihtSdMt4XQBM,13717 +django/contrib/admin/locale/br/LC_MESSAGES/djangojs.mo,sha256=n7Yx2k9sAVSNtdY-2Ao6VFsnsx4aiExZ3TF_DnnrKU0,1658 +django/contrib/admin/locale/br/LC_MESSAGES/djangojs.po,sha256=gjg-VapbI9n_827CqNYhbtIQ8W9UcMmMObCsxCzReUU,4108 +django/contrib/admin/locale/bs/LC_MESSAGES/django.mo,sha256=44D550fxiO59Pczu5HZ6gvWEClsfmMuaxQWbA4lCW2M,8845 +django/contrib/admin/locale/bs/LC_MESSAGES/django.po,sha256=FrieR1JB4ssdWwYitJVpZO-odzPBKrW4ZsGK9LA595I,14317 +django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo,sha256=SupUK-RLDcqJkpLEsOVjgZOWBRKQMALZLRXGEnA623M,1183 +django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po,sha256=TOtcfw-Spn5Y8Yugv2OlPoaZ5DRwJjRIl-YKiyU092U,3831 +django/contrib/admin/locale/ca/LC_MESSAGES/django.mo,sha256=Wj8KdBSUuUtebE45FK3kvzl155GdTv4KgecoMxFi0_g,17535 +django/contrib/admin/locale/ca/LC_MESSAGES/django.po,sha256=5s5RIsOY5uL1oQQ5IrOhsOgAWWFZ25vTcYURO2dlR8g,19130 +django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo,sha256=HjPaPtF5TZGtRu1P40X2YIuRAoKndwurWE4nlZlc7sE,6075 +django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po,sha256=G7jxAwjnpvvlGinLWDx_awUBu6XwVrdIFqdxBDMVfJQ,6906 +django/contrib/admin/locale/ckb/LC_MESSAGES/django.mo,sha256=ZVy1U4xWrNSU7lUL2mfdqx9MMQODgbi5B5g7Cea_26M,23234 +django/contrib/admin/locale/ckb/LC_MESSAGES/django.po,sha256=TDGnHwoHvZbYmOvsQEU8rHAgzjp5dY1jAwyu3VGblbo,24560 +django/contrib/admin/locale/ckb/LC_MESSAGES/djangojs.mo,sha256=-Czkr04TLjKYmob6CyoJxuS3YcUs7z-I9Sgh6rOyOdc,7671 +django/contrib/admin/locale/ckb/LC_MESSAGES/djangojs.po,sha256=L1r7AcAvTOFO3_uzQ_9oRHEIYAcnDWd_oIIqX133mjU,8392 +django/contrib/admin/locale/cs/LC_MESSAGES/django.mo,sha256=w2IX5ZS8RaBtWWIvlPiAbcUDpmjiFD2ZGiqEkCzBSdc,19004 +django/contrib/admin/locale/cs/LC_MESSAGES/django.po,sha256=ijy86d9djUVhsRGT52tuLbrKRN3ETNQzo8bSxEdlmhs,20670 +django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo,sha256=ArA6qnVlUAsj7EugF0GM4XW494VpTEj3Uu__Qu9jIig,6596 +django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po,sha256=DKsC0k5i9t3i77uxR_h99MOip-fc3JPDIV9EriGr7qw,7587 +django/contrib/admin/locale/cy/LC_MESSAGES/django.mo,sha256=7ifUyqraN1n0hbyTVb_UjRIG1jdn1HcwehugHBiQvHs,12521 +django/contrib/admin/locale/cy/LC_MESSAGES/django.po,sha256=bS_gUoKklZwd3Vs0YlRTt24-k5ure5ObTu-b5nB5qCA,15918 +django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo,sha256=fOCA1fXEmJw_QaXEISLkuBhaMnEmP1ssP9lhqdCCC3c,3801 +django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po,sha256=OVcS-3tlMJS_T58qnZbWLGczHwFyAjbuWr35YwuxAVM,5082 +django/contrib/admin/locale/da/LC_MESSAGES/django.mo,sha256=UDegq2r-2A-LjbDNaiKxMhVAzZwoKyumfoJE-Y5rMPg,18085 +django/contrib/admin/locale/da/LC_MESSAGES/django.po,sha256=7UqmqCRnGeBRt-RnTa0UMjGVncSjWhddlOdYo0XS6iU,19498 +django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo,sha256=Y-_2QRAeQ3Mtl3stD2J4eHXdNyuzHcUcpIlvTEuDs6k,5984 +django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po,sha256=tiONUqX3jJnHZ1BbMIOzuQH-SMp2ESlA0RuGJSumy_U,6866 +django/contrib/admin/locale/de/LC_MESSAGES/django.mo,sha256=v2tKhZL-KDMv4UDzNuUgXDEIIoE787wFfpKHk0PUTHU,18731 +django/contrib/admin/locale/de/LC_MESSAGES/django.po,sha256=lNY-xVF6alq55oF3Jn6wj2WWb2j9HO52OUVVxxqDHOQ,20259 +django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo,sha256=kdve4d181AhGDekHiaxt79iyVWvahp3k9SN3H6Xx_9w,6130 +django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po,sha256=tb25boxPrggqnB7mB2M5iyZ6CEM87PBZNa_JzaOXFF4,6921 +django/contrib/admin/locale/dsb/LC_MESSAGES/django.mo,sha256=Gui7I3Hu5IIGSXXNUXFoaH6ovffmBiDqOSWnytGhZRM,19122 +django/contrib/admin/locale/dsb/LC_MESSAGES/django.po,sha256=Zt8PMJQeG4fJhMMqyroXMj-HNTPwSQ_f4eDjm4Q7QPQ,20379 +django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.mo,sha256=y9yhJ8ITu5uRDID0AX6dpqWLE5-0bqDuVmUBJ-JJ6H8,6609 +django/contrib/admin/locale/dsb/LC_MESSAGES/djangojs.po,sha256=ca5XVYaT4H4kK-LvvBL1fcpCxRbd1OrbSNk5DAZcfaM,7335 +django/contrib/admin/locale/el/LC_MESSAGES/django.mo,sha256=54kG_94nJigDgJpZM8Cy58G_AGLdS5csJFEjTTvJBfM,22968 +django/contrib/admin/locale/el/LC_MESSAGES/django.po,sha256=f2gUQtedb0sZCBxAoy3hP2rGXT9ysP5UTOlCBvu2NvI,24555 +django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo,sha256=cix1Bkj2hYO_ofRvtPDhJ9rBnTR6-cnKCFKpZrsxJ34,6509 +django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po,sha256=R05tMMuQEjVQpioy_ayQgFBlLM4WdwXthkMguW6ga24,7339 +django/contrib/admin/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/admin/locale/en/LC_MESSAGES/django.po,sha256=_LT1ydmUGadrxathYSS-mZOSmW1hdbKisiEhmTjU8Aw,25103 +django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po,sha256=XwjM4uE51Mw04zU5xdyW86VlEKYR25s3JxZIO6e8oEM,8920 +django/contrib/admin/locale/en_AU/LC_MESSAGES/django.mo,sha256=QEvxPxDqNUmq8NxN-8c_F6KMEcWWum3YzERlc3_S_DM,16191 +django/contrib/admin/locale/en_AU/LC_MESSAGES/django.po,sha256=BoVuGaPoGdQcF3zdgGRxrNKSq2XLHTvKfINCyU8t86Y,17548 +django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.mo,sha256=s0qPS8TjODtPo4miSznQfS6M8CQK9URDeMKeQsp7DK4,5001 +django/contrib/admin/locale/en_AU/LC_MESSAGES/djangojs.po,sha256=YecPU6VmUDDNNIzZVl2Wgd6lNRp3msJaW8FhdHMtEyc,5553 +django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo,sha256=pFkTMRDDj76WA91wtGPjUB7Pq2PN7IJEC54Tewobrlc,11159 +django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po,sha256=REUJMGLGRyDMkqh4kJdYXO9R0Y6CULFVumJ_P3a0nv0,15313 +django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo,sha256=hW325c2HlYIIdvNE308c935_IaDu7_qeP-NlwPnklhQ,3147 +django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po,sha256=Ol5j1-BLbtSIDgbcC0o7tg_uHImcjJQmkA4-kSmZY9o,4581 +django/contrib/admin/locale/eo/LC_MESSAGES/django.mo,sha256=zAeGKzSNit2LNNX97WXaARyzxKIasOmTutcTPqpRKAE,14194 +django/contrib/admin/locale/eo/LC_MESSAGES/django.po,sha256=LHoYvbenD9A05EkHtOk8raW7aKyyiqN50d6OHMxnAZY,17258 +django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.mo,sha256=hGXULxueBP24xSZ0StxfFCO0vwZZME7OEERxgnWBqcI,4595 +django/contrib/admin/locale/eo/LC_MESSAGES/djangojs.po,sha256=enHGjcvH_B0Z9K2Vk391qHAKT7QamqUcx8xPzYLQltA,5698 +django/contrib/admin/locale/es/LC_MESSAGES/django.mo,sha256=vKcsIAL0TDBolkBdzj0d8N60blUfGIHwTvN1r_tp3h4,19193 +django/contrib/admin/locale/es/LC_MESSAGES/django.po,sha256=5640-lfFYuO7ZsJ41VtaHdhvpqdPNtadbt88SK95xo4,21302 +django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo,sha256=GH3zJZEVfJc_REXoYwaCNzhL4EHJosWa7qDmeFRWbco,6347 +django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po,sha256=aqR-EZ2XUWNclkSxVa1xKFdaZpw7sQMORSMMINDRjlQ,7290 +django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo,sha256=4HvVQ4w8m006ltb78ysEVBHfkb8HYQ_fOjKSNjZACVo,19355 +django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po,sha256=SvEsxNt5fMCndJt7EM7wVPffLjZBM9I_6dtTtgFJB-E,20673 +django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo,sha256=2VDkQJCHtYndAr3kz53BhLwxqbDzkQhoDwNedrGtMEw,6647 +django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po,sha256=MRHZAsXyTEiYtlqmybyuJgwfdHtjNOu4EgcWdzzVF4M,7351 +django/contrib/admin/locale/es_CO/LC_MESSAGES/django.mo,sha256=0k8kSiwIawYCa-Lao0uetNPLUzd4m_me3tCAVBvgcSw,15156 +django/contrib/admin/locale/es_CO/LC_MESSAGES/django.po,sha256=4T_syIsVY-nyvn5gEAtfN-ejPrJSUpNT2dmzufxaBsE,17782 +django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.mo,sha256=PLS10KgX10kxyy7MUkiyLjqhMzRgkAFGPmzugx9AGfs,3895 +django/contrib/admin/locale/es_CO/LC_MESSAGES/djangojs.po,sha256=Y4bkC8vkJE6kqLbN8t56dR5670B06sB2fbtVzmQygK8,5176 +django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo,sha256=O8CbY83U4fTvvPPuONtlMx6jpA-qkrYxNTkLuMrWiRQ,11517 +django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po,sha256=8MSKNxhHMp0ksr5AUUAbs_H6MtMjIqkaFwmaJlBxELs,16307 +django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo,sha256=2w3CMJFBugP8xMOmXsDU82xUm8cWGRUGZQX5XjiTCpM,3380 +django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po,sha256=OP9cBsdCf3zZAXiKBMJPvY1AHwC_WE1k2vKlzVCtUec,4761 +django/contrib/admin/locale/es_VE/LC_MESSAGES/django.mo,sha256=himCORjsM-U3QMYoURSRbVv09i0P7-cfVh26aQgGnKg,16837 +django/contrib/admin/locale/es_VE/LC_MESSAGES/django.po,sha256=mlmaSYIHpa-Vp3f3NJfdt2RXB88CVZRoPEMfl-tccr0,18144 +django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.mo,sha256=Zy-Hj_Mr2FiMiGGrZyssN7GZJrbxRj3_yKQFZKR36Ro,4635 +django/contrib/admin/locale/es_VE/LC_MESSAGES/djangojs.po,sha256=RI8CIdewjL3bAivniMOl7lA9tD7caP4zEo2WK71cX7c,5151 +django/contrib/admin/locale/et/LC_MESSAGES/django.mo,sha256=b1dS8_M7Ehzk0nZlgxMVrVGP7WqKZaGP7P0hRvUIb3E,17574 +django/contrib/admin/locale/et/LC_MESSAGES/django.po,sha256=tN1MhM7VyCCQn7nX5qE5r23hyK28BxEctylyZlIpikY,19239 +django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo,sha256=VftLeDX1ngXgy3Rvztk21zNcPus9Vbr-Gp4MnChaRbM,5880 +django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po,sha256=yi-8VC9eCScS98u4CIDirsfG_a5-BDnO0XrI9Gm4lK8,6718 +django/contrib/admin/locale/eu/LC_MESSAGES/django.mo,sha256=CBk_9H8S8LlK8hfGQsEB7IgSms-BsURzAFrX9Zrsw4c,15009 +django/contrib/admin/locale/eu/LC_MESSAGES/django.po,sha256=9vnPgJRPcdSa4P5rguB5zqWQC1xAt4POzDw-mSD8UHs,17489 +django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo,sha256=vKtO_mbexiW-EO-L-G0PYruvc8N7GOF94HWQCkDnJNQ,4480 +django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po,sha256=BAWU-6kH8PLBxx_d9ZeeueB_lV5KFXjbRJXgKN43nQ4,5560 +django/contrib/admin/locale/fa/LC_MESSAGES/django.mo,sha256=Y01G4go-V_BZ1aR7u5Z9StnqL0BS5kvj2ZlSfffhToY,20889 +django/contrib/admin/locale/fa/LC_MESSAGES/django.po,sha256=1q914M9N6NfUgP72mIhTRMYukc1r-GpVV5Pt4qESTTM,23054 +django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo,sha256=MAje4ub3vWYhiKrVR_LvxAIqkvOlFpVcXQEBz3ezlPs,6050 +django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po,sha256=1nzEmRuswDmyCCMShGH2CYdjMY7tUuedfN4kDCEnTCM,6859 +django/contrib/admin/locale/fi/LC_MESSAGES/django.mo,sha256=o2bZycvUaAigyMRW2EOSkqJy2Xq0BfvGB2eEWV-h9jg,17289 +django/contrib/admin/locale/fi/LC_MESSAGES/django.po,sha256=dBux4oefCngbb6PCukB-U6XrpY5tym9B0CMIsWk2LIs,18990 +django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo,sha256=ZIJoZ4T-2iNfpdHiyqsKTqIC9lgGAPOCbQhk7Lh36N4,5822 +django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po,sha256=6suDw1Cj_AVqQocM67EN7ZZs6hWgvTa9TP80a7Y9xaM,6742 +django/contrib/admin/locale/fr/LC_MESSAGES/django.mo,sha256=yDGZobllSEwKmcxgbEdivBgJrxcpSgytRR4tdTGsblo,20013 +django/contrib/admin/locale/fr/LC_MESSAGES/django.po,sha256=IjnhRml2Cqxd1Z93vz5CM3GjspM4rIuv9LsjF1YQFQk,21340 +django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo,sha256=eSiwCTcZrv3jKlu_KVL9myvW6Yc6lSWx1CcA_T6qSng,6509 +django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po,sha256=lfTg4_vFyMbkCqTThaSn4f-D2S0sGNdW0PFWJgBz2ck,7226 +django/contrib/admin/locale/fy/LC_MESSAGES/django.mo,sha256=mWnHXGJUtiewo1F0bsuJCE_YBh7-Ak9gjTpwjOAv-HI,476 +django/contrib/admin/locale/fy/LC_MESSAGES/django.po,sha256=oSKEF_DInUC42Xzhw9HiTobJjE2fLNI1VE5_p6rqnCE,10499 +django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/admin/locale/fy/LC_MESSAGES/djangojs.po,sha256=efBDCcu43j4SRxN8duO5Yfe7NlpcM88kUPzz-qOkC04,2864 +django/contrib/admin/locale/ga/LC_MESSAGES/django.mo,sha256=2Qn62CmOwgNaeLnV6JE2dNVl9tSZaYGGx5NG8X6g6Z0,19428 +django/contrib/admin/locale/ga/LC_MESSAGES/django.po,sha256=00HFcdeQmjvrTyfUz4I8cFM_bYqF5bLX5pwFht-iPO0,20913 +django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo,sha256=Cdx01Gpcs6wYEnpSif1r4O9gKj-YL__IXfBaL-Wx0u0,6910 +django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po,sha256=7u1ncj7NVTb54Yak8wMFqCKHfjtb6EfFouhT2sbQlIg,7828 +django/contrib/admin/locale/gd/LC_MESSAGES/django.mo,sha256=HEqiGvjMp0NnfIS0Z-c1i8SicEtMPIg8LvNMh-SXiPg,18871 +django/contrib/admin/locale/gd/LC_MESSAGES/django.po,sha256=cZWnJyEoyGFLbk_M4-eddTJLKJ0dqTIlIj4w6YwcjJg,20139 +django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.mo,sha256=QA2_hxHGzt_y0U8sAGQaT27IvvyWrehLPKP2X1jAvEs,5904 +django/contrib/admin/locale/gd/LC_MESSAGES/djangojs.po,sha256=KyYGpFHq2E55dK005xzH0I2RD-C2kD6BlJi8bcMjtRA,6540 +django/contrib/admin/locale/gl/LC_MESSAGES/django.mo,sha256=0sPdq8aidlYj1CYL0on_rwwp80oN1Ex-vw2pehBon-M,18542 +django/contrib/admin/locale/gl/LC_MESSAGES/django.po,sha256=GFJrhH0aQZsLrUe4Dbzwi7BDtp7KRyklnnzZFr2-BqU,20074 +django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo,sha256=AePXV8VZToob6vNEsOqyuijJYv-QxRfBO7BrBUgLi_Q,6083 +django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po,sha256=eDMuV05SuQrACfcovaPb8Zsk8hP4g1GMx6507QNFAko,6868 +django/contrib/admin/locale/he/LC_MESSAGES/django.mo,sha256=DQnjAK201x7Zp_eoZiuq6GJZ7ML2WVeP5dXJNaeSEBs,19856 +django/contrib/admin/locale/he/LC_MESSAGES/django.po,sha256=-YnanZ_omTTjDkO8o-chGB6NSsKGLWmO7aWGnIUiJv8,21341 +django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo,sha256=E-ZlEnXIeJIkXWcthR9kgNJBzDp6gT7mKKDUpEVqM7k,6893 +django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po,sha256=1tenNpIJmcT5wTRNETkSO7cDlDlL1Mqpnb-klRlHw-s,7809 +django/contrib/admin/locale/hi/LC_MESSAGES/django.mo,sha256=yWjTYyrVxXxwBWgPsC7IJ9IxL_85v378To4PCEEcwuI,13811 +django/contrib/admin/locale/hi/LC_MESSAGES/django.po,sha256=FpKFToDAMsgc1aG6-CVpi5wAxhMQjkZxz_89kCiKmS4,19426 +django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo,sha256=yCUHDS17dQDKcAbqCg5q8ualaUgaa9qndORgM-tLCIw,4893 +django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po,sha256=U9rb5tPMICK50bRyTl40lvn-tvh6xL_6o7xIPkzfKi0,6378 +django/contrib/admin/locale/hr/LC_MESSAGES/django.mo,sha256=3TR3uFcd0pnkDi551WaB9IyKX1aOazH7USxqc0lA0KQ,14702 +django/contrib/admin/locale/hr/LC_MESSAGES/django.po,sha256=qcW7tvZoWZIR8l-nMRexGDD8VlrOD7l5Fah6-ecilMk,17378 +django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo,sha256=KR34lviGYh1esCkPE9xcDE1pQ_q-RxK1R2LPjnG553w,3360 +django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po,sha256=w7AqbYcLtu88R3KIKKKXyRt2gwBBBnr-ulxONWbw01I,4870 +django/contrib/admin/locale/hsb/LC_MESSAGES/django.mo,sha256=z9pekTc31Iln5uwmdJ1AfhF5t2gekcgGE58qjvYKT90,18894 +django/contrib/admin/locale/hsb/LC_MESSAGES/django.po,sha256=XmdQtzpmAhp74NBwh7iY22RLQX5Bu2B-mlWvZLvy_mw,20153 +django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.mo,sha256=4kIdcgSBZ5ldlS0LKZV8-gh45-AcRTMQc784VmoRmP8,6693 +django/contrib/admin/locale/hsb/LC_MESSAGES/djangojs.po,sha256=7Lx6Be_8i8g2GtqOfc1UKpKgwF2CFXfYG4PrjKV0t-0,7425 +django/contrib/admin/locale/hu/LC_MESSAGES/django.mo,sha256=fMea7oqZDrBAicpyubIq-JCPg_7QBws7N0PdyBwebOo,18629 +django/contrib/admin/locale/hu/LC_MESSAGES/django.po,sha256=eFRlDToCWD_BZVyRxW6L_xLIfItPmHQshxoOFC53iV0,20211 +django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo,sha256=tXeG5F6_Yh6qHmNUNrlgzavH1Wc8NZb3fj4oEW9qE_M,6034 +django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po,sha256=pvn7ae43zgVp3mpjXPI7_JCqvQLaHZZF7hTasP2uZx0,6854 +django/contrib/admin/locale/hy/LC_MESSAGES/django.mo,sha256=Dcx9cOsYBfbgQgoAQoLhn_cG1d2sKGV6dag4DwnUTaY,18274 +django/contrib/admin/locale/hy/LC_MESSAGES/django.po,sha256=CnQlRZ_DUILMIqVEgUTT2sufAseEKJHHjWsYr_LAqi8,20771 +django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.mo,sha256=ttfGmyEN0-3bM-WmfCge2lG8inubMPOzFXfZrfX9sfw,5636 +django/contrib/admin/locale/hy/LC_MESSAGES/djangojs.po,sha256=jf94wzUOMQaKSBR-77aijQXfdRAqiYSeAQopiT_8Obc,6046 +django/contrib/admin/locale/ia/LC_MESSAGES/django.mo,sha256=SRKlr8RqW8FQhzMsXdA9HNqttO3hc0xf4QdQJd4Dy8c,11278 +django/contrib/admin/locale/ia/LC_MESSAGES/django.po,sha256=pBQLQsMinRNh0UzIHBy3qEW0etUWMhFALu4-h-woFyE,15337 +django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.mo,sha256=28MiqUf-0-p3PIaongqgPQp2F3D54MLAujPslVACAls,3177 +django/contrib/admin/locale/ia/LC_MESSAGES/djangojs.po,sha256=CauoEc8Fiowa8k6K-f9N8fQDle40qsgtXdNPDHBiudQ,4567 +django/contrib/admin/locale/id/LC_MESSAGES/django.mo,sha256=mIBWsj9Dy85qvN7d08OhUU1lDsIRoxEDZEoGEua50qY,17877 +django/contrib/admin/locale/id/LC_MESSAGES/django.po,sha256=W4U2GvKuJ0LXHJhoGOGk2uXk1eDCg9LAzmubTKJyIjQ,19387 +django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo,sha256=aCPmIcwloBrlvfAf95HZfOgVs7XU9Bp064Sn08pQK1E,5275 +django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po,sha256=x_D6AQiyGC-AJL889Q51JkmlqiVHfyAwGdA3Ck9_Z7Q,6589 +django/contrib/admin/locale/io/LC_MESSAGES/django.mo,sha256=URiYZQZpROBedC-AkpVo0q3Tz78VfkmwN1W7j6jYpMo,12624 +django/contrib/admin/locale/io/LC_MESSAGES/django.po,sha256=y0WXY7v_9ff-ZbFasj33loG-xWlFO8ttvCB6YPyF7FQ,15562 +django/contrib/admin/locale/io/LC_MESSAGES/djangojs.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464 +django/contrib/admin/locale/io/LC_MESSAGES/djangojs.po,sha256=WLh40q6yDs-8ZG1hpz6kfMQDXuUzOZa7cqtEPDywxG4,2852 +django/contrib/admin/locale/is/LC_MESSAGES/django.mo,sha256=csD3bmz3iQgLLdSqCKOmY_d893147TvDumrpRVoRTY0,16804 +django/contrib/admin/locale/is/LC_MESSAGES/django.po,sha256=tXgb3ARXP5tPa5iEYwwiHscDGfjS5JgIV2BsUX8OnjE,18222 +django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo,sha256=Z3ujWoenX5yYTAUmHUSCvHcuV65nQmYKPv6Jo9ygx_c,5174 +django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po,sha256=YPf4XqfnpvrS9irAS8O4G0jgU5PCoQ9C-w3MoDipelk,5847 +django/contrib/admin/locale/it/LC_MESSAGES/django.mo,sha256=N_pVjbd3SkV4xtFMvwtlwRWo_ulGR83SzKcPD8wiFgY,18505 +django/contrib/admin/locale/it/LC_MESSAGES/django.po,sha256=hVYj4UvphkCqlFzH6NtyRAZgGewCKNjVnON0vHtxGKY,20338 +django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo,sha256=FWtyPVubufiaNKFxy4DQ0KbW93GUt-x1Mc8ZKhqokwg,5640 +django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po,sha256=VRqeY7gYmcP5oWVMgpHL_Br8cAkFXphFQStFpIbWOrc,6578 +django/contrib/admin/locale/ja/LC_MESSAGES/django.mo,sha256=Cvue4zVcYA-3T0l6jKFglMDhzqNeLuGKKdTZ-JsZM4o,19945 +django/contrib/admin/locale/ja/LC_MESSAGES/django.po,sha256=DpjilJj0IrkqRNsegdDCs9_VzokjHA8j8NIXrg6Th4U,21521 +django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo,sha256=XBOtJbkByhQEMUxvnqSr1XhBCe-DsII4Ke5pISJZAb8,6233 +django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po,sha256=SrJeh3-t73Z2gY7nVP01cgZE6H11pryDms1pqrQKjnw,6968 +django/contrib/admin/locale/ka/LC_MESSAGES/django.mo,sha256=M3FBRrXFFa87DlUi0HDD_n7a_0IYElQAOafJoIH_i60,20101 +django/contrib/admin/locale/ka/LC_MESSAGES/django.po,sha256=abkt7pw4Kc-Y74ZCpAk_VpFWIkr7trseCtQdM6IUYpQ,23527 +django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo,sha256=GlPU3qUavvU0FXPfvCl-8KboYhDOmMsKM-tv14NqOac,5516 +django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po,sha256=jDpB9c_edcLoFPHFIogOSPrFkssOjIdxtCA_lum8UCs,6762 +django/contrib/admin/locale/kab/LC_MESSAGES/django.mo,sha256=9QKEWgr8YQV17OJ14rMusgV8b79ZgOOsX4aIFMZrEto,3531 +django/contrib/admin/locale/kab/LC_MESSAGES/django.po,sha256=cSOG_HqsNE4tA5YYDd6txMFoUul8d5UKvk77ZhaqOK0,11711 +django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.mo,sha256=nqwZHJdtjHUSFDJmC0nPNyvWcAdcoRcN3f-4XPIItvs,1844 +django/contrib/admin/locale/kab/LC_MESSAGES/djangojs.po,sha256=tF3RH22p2E236Cv6lpIWQxtuPFeWOvJ-Ery3vBUv6co,3713 +django/contrib/admin/locale/kk/LC_MESSAGES/django.mo,sha256=f2WU3e7dOz0XXHFFe0gnCm1MAPCJ9sva2OUnWYTHOJg,12845 +django/contrib/admin/locale/kk/LC_MESSAGES/django.po,sha256=D1vF3nqANT46f17Gc2D2iGCKyysHAyEmv9nBei6NRA4,17837 +django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.mo,sha256=cBxp5pFJYUF2-zXxPVBIG06UNq6XAeZ72uRLwGeLbiE,2387 +django/contrib/admin/locale/kk/LC_MESSAGES/djangojs.po,sha256=Y30fcDpi31Fn7DU7JGqROAiZY76iumoiW9qGAgPCCbU,4459 +django/contrib/admin/locale/km/LC_MESSAGES/django.mo,sha256=eOe9EcFPzAWrTjbGUr-m6RAz2TryC-qHKbqRP337lPY,10403 +django/contrib/admin/locale/km/LC_MESSAGES/django.po,sha256=RSxy5vY2sgC43h-9sl6eomkFvxClvH_Ka4lFiwTvc2I,17103 +django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo,sha256=Ja8PIXmw6FMREHZhhBtGrr3nRKQF_rVjgLasGPnU95w,1334 +django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po,sha256=LH4h4toEgpVBb9yjw7d9JQ8sdU0WIZD-M025JNlLXAU,3846 +django/contrib/admin/locale/kn/LC_MESSAGES/django.mo,sha256=955iPq05ru6tm_iPFVMebxwvZMtEa5_7GaFG1mPt6HU,9203 +django/contrib/admin/locale/kn/LC_MESSAGES/django.po,sha256=-4YAm0MyhS-wp4RQmo0TzWvqYqmzHFNpIBtdQlg_8Dw,16059 +django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo,sha256=kJsCOGf62XOWTKcB9AF6Oc-GqHl2LFtz-qw0spjcU_w,1847 +django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po,sha256=zzl7QZ5DfdyNWrkIqYlpUcZiTdlZXx_ktahyXqM2-0Q,5022 +django/contrib/admin/locale/ko/LC_MESSAGES/django.mo,sha256=NJinUQM_vWvXlwT3ek6DL1uFT_gzHWowxKxn_RQVDDA,18815 +django/contrib/admin/locale/ko/LC_MESSAGES/django.po,sha256=AfDcJo95_pYon8nP0Y48pIQGAHcSxKWADk4IkJATaec,20899 +django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo,sha256=wZ2hHD7BJgl855rxKburyumBSS7ECkL3kqNv2col5mo,5985 +django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po,sha256=qvndtDKv_TIoeYuEErRb62oSaCeS2iFYkjyZ4m8YKHI,6899 +django/contrib/admin/locale/ky/LC_MESSAGES/django.mo,sha256=eg-TnIzJO4h3q_FS2a1LnCs7qOf5dpNJwvRD99ZZ0GQ,20129 +django/contrib/admin/locale/ky/LC_MESSAGES/django.po,sha256=dWxU3yUAKHUGKdVJbRLkS6fJEefPBk2XM0i2INcRPms,21335 +django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.mo,sha256=VuBYBwFwIHC27GFZiHY2_4AB0cME2R0Q3juczjOs3G0,5888 +django/contrib/admin/locale/ky/LC_MESSAGES/djangojs.po,sha256=uMk9CxL1wP45goq2093lYMza7LRuO4XbVo5RRWlsbaE,6432 +django/contrib/admin/locale/lb/LC_MESSAGES/django.mo,sha256=8GGM2sYG6GQTQwQFJ7lbg7w32SvqgSzNRZIUi9dIe6M,913 +django/contrib/admin/locale/lb/LC_MESSAGES/django.po,sha256=PZ3sL-HvghnlIdrdPovNJP6wDrdDMSYp_M1ok6dodrw,11078 +django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/admin/locale/lb/LC_MESSAGES/djangojs.po,sha256=fiMelo6K0_RITx8b9k26X1R86Ck2daQXm86FLJpzt20,2862 +django/contrib/admin/locale/lt/LC_MESSAGES/django.mo,sha256=SpaNUiaGtDlX5qngVj0dWdqNLSin8EOXXyBvRM9AnKg,17033 +django/contrib/admin/locale/lt/LC_MESSAGES/django.po,sha256=tHnRrSNG2ENVduP0sOffCIYQUn69O6zIev3Bb7PjKb0,18497 +django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo,sha256=vZtnYQupzdTjVHnWrtjkC2QKNpsca5yrpb4SDuFx0_0,5183 +django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po,sha256=dMjFClA0mh5g0aNFTyHC8nbYxwmFD0-j-7gCKD8NFnw,5864 +django/contrib/admin/locale/lv/LC_MESSAGES/django.mo,sha256=pzm-BGE4jnD7OPob0a6eI_gQYRAMtHJOqmnmJieJwuU,18547 +django/contrib/admin/locale/lv/LC_MESSAGES/django.po,sha256=9BAd3sT-aFEeUupwGWxIjT4YLoA2OC3lN2hqdXGayiM,20103 +django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo,sha256=TfQupQgc6UMUbj_6MoEEO87VmZTsh2McSDl_4Dsqgvo,6446 +django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po,sha256=cT0J4Bvh8UEdNq2HphcOwJBkgXwXNXl-xhwNt6GBcqg,7336 +django/contrib/admin/locale/mk/LC_MESSAGES/django.mo,sha256=xcKetKf7XcO-4vbWEIoI2c40gRE2twuiINaby6ypO7Q,17948 +django/contrib/admin/locale/mk/LC_MESSAGES/django.po,sha256=hx2peq-wztDHtiST_zZ58c7rjZ6jSvDDXhVOTmyUDzI,21063 +django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo,sha256=8BkWjadml2f1lDeH-IULdxsogXSK8NpVuu293GvcQc8,4719 +django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po,sha256=u9mVSzbIgA1uRgV_L8ZOZLelyknoKFvXH0HbBurezf8,6312 +django/contrib/admin/locale/ml/LC_MESSAGES/django.mo,sha256=4Y1KAip3NNsoRc9Zz3k0YFLzes3DNRFvAXWSTBivXDk,20830 +django/contrib/admin/locale/ml/LC_MESSAGES/django.po,sha256=jL9i3kmOnoKYDq2RiF90WCc55KeA8EBN9dmPHjuUfmo,24532 +django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo,sha256=COohY0mAHAOkv1eNzLkaGZy8mimXzcDK1EgRd3tTB_E,6200 +django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po,sha256=NvN0sF_w5tkc3bND4lBtCHsIDLkwqdEPo-8wi2MTQ14,7128 +django/contrib/admin/locale/mn/LC_MESSAGES/django.mo,sha256=6Jhz8HVVnFDWT1kYR0QemGIK2C3AFIyLO34uqG0-zus,22236 +django/contrib/admin/locale/mn/LC_MESSAGES/django.po,sha256=uh2ZAdEdbTkIU3ORSOvgaetcF3kgR5WlA1f_2nWJ0ow,23694 +django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo,sha256=H7fIPdWTK3_iuC0WRBJdfXN8zO77p7-IzTviEUVQJ2U,5228 +django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po,sha256=vJIqqVG34Zd7q8-MhTgZcXTtl6gukOSb6egt70AOyAc,5757 +django/contrib/admin/locale/mr/LC_MESSAGES/django.mo,sha256=4aUjTWqmtElJ-byWRVmaj4EI0TQIExyU68EB-VS6vnE,21488 +django/contrib/admin/locale/mr/LC_MESSAGES/django.po,sha256=svc6n_Jsn8vrL0hY7tRCl7YLrBVHDSLTrM2phQO5mHI,24801 +django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.mo,sha256=2Z5jaGJzpiJTCnhCk8ulCDeAdj-WwR99scdHFPRoHoA,468 +django/contrib/admin/locale/mr/LC_MESSAGES/djangojs.po,sha256=uGe9kH2mwrab97Ue77oggJBlrpzZNckKGRUMU1vaigs,2856 +django/contrib/admin/locale/ms/LC_MESSAGES/django.mo,sha256=Xj5v1F4_m1ZFUn42Rbep9eInxIV-NE-oA_NyfQkbp00,16840 +django/contrib/admin/locale/ms/LC_MESSAGES/django.po,sha256=ykFH-mPbv2plm2NIvKgaj3WVukJ3SquU8nQIAXuOrWA,17967 +django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.mo,sha256=9VY_MrHK-dGOIkucLCyR9psy4o5p4nHd8kN_5N2E-gY,5018 +django/contrib/admin/locale/ms/LC_MESSAGES/djangojs.po,sha256=P4GvM17rlX1Vl-7EbCyfWVasAJBEv_RvgWEvfJqcErA,5479 +django/contrib/admin/locale/my/LC_MESSAGES/django.mo,sha256=xvlgM0vdYxZuA7kPQR7LhrLzgmyVCHAvqaqvFhKX9wY,3677 +django/contrib/admin/locale/my/LC_MESSAGES/django.po,sha256=zdUCYcyq2-vKudkYvFcjk95YUtbMDDSKQHCysmQ-Pvc,12522 +django/contrib/admin/locale/my/LC_MESSAGES/djangojs.mo,sha256=1fS9FfWi8b9NJKm3DBKETmuffsrTX-_OHo9fkCCXzpg,3268 +django/contrib/admin/locale/my/LC_MESSAGES/djangojs.po,sha256=-z1j108uoswi9YZfh3vSIswLXu1iUKgDXNdZNEA0yrA,5062 +django/contrib/admin/locale/nb/LC_MESSAGES/django.mo,sha256=viQKBFH6ospYn2sE-DokVJGGYhSqosTgbNMn5sBVnmM,16244 +django/contrib/admin/locale/nb/LC_MESSAGES/django.po,sha256=x0ANRpDhe1rxxAH0qjpPxRfccCvR73_4g5TNUdJqmrc,17682 +django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo,sha256=KwrxBpvwveERK4uKTIgh-DCc9aDLumpHQYh5YroqxhQ,4939 +django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po,sha256=ygn6a5zkHkoIYMC8Hgup8Uw1tMbZcLGgwwDu3x33M-o,5555 +django/contrib/admin/locale/ne/LC_MESSAGES/django.mo,sha256=yrm85YXwXIli7eNaPyBTtV7y3TxQuH4mokKuHdAja2A,15772 +django/contrib/admin/locale/ne/LC_MESSAGES/django.po,sha256=F8vfWKvSNngkLPZUIwik_qDYu0UAnrWepbI9Z9Iz35g,20400 +django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.mo,sha256=mJdtpLT9k4vDbN9fk2fOeiy4q720B3pLD3OjLbAjmUI,5362 +django/contrib/admin/locale/ne/LC_MESSAGES/djangojs.po,sha256=N91RciTV1m7e8-6Ihod5U2xR9K0vrLoFnyXjn2ta098,6458 +django/contrib/admin/locale/nl/LC_MESSAGES/django.mo,sha256=FKCQ39RbxWddBA-Id8W-hxgH0tkixJkVctP1laEXJEU,18565 +django/contrib/admin/locale/nl/LC_MESSAGES/django.po,sha256=zRaeZKxUZbi-0CL9BBr-X0j5HOJvvrJ94u8jw3sbaaA,20308 +django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo,sha256=iWjyDgay1LIiS6C-Zl33inFKxzM2LFQPIWyKEw2x6Is,6122 +django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po,sha256=xZjgzxEEWMG2ofgSfLNUU0abr9Y_cUpXIHsmjKBGyig,7217 +django/contrib/admin/locale/nn/LC_MESSAGES/django.mo,sha256=yAdb8Yew1ARlnAnvd5gHL7-SDzpkXedBwCSSPEzGCKk,16504 +django/contrib/admin/locale/nn/LC_MESSAGES/django.po,sha256=sFxr3UYzltQRqiotm_d5Qqtf8iLXI0LgCw_V6kYffJ0,17932 +django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo,sha256=RsDri1DmCwrby8m7mLWkFdCe6HK7MD7GindOarVYPWc,4939 +django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po,sha256=koVTt2mmdku1j7SUDRbnug8EThxXuCIF2XPnGckMi7A,5543 +django/contrib/admin/locale/os/LC_MESSAGES/django.mo,sha256=c51PwfOeLU2YcVNEEPCK6kG4ZyNc79jUFLuNopmsRR8,14978 +django/contrib/admin/locale/os/LC_MESSAGES/django.po,sha256=yugDw7iziHto6s6ATNDK4yuG6FN6yJUvYKhrGxvKmcY,18188 +django/contrib/admin/locale/os/LC_MESSAGES/djangojs.mo,sha256=0gMkAyO4Zi85e9qRuMYmxm6JV98WvyRffOKbBVJ_fLQ,3806 +django/contrib/admin/locale/os/LC_MESSAGES/djangojs.po,sha256=skiTlhgUEN8uKk7ihl2z-Rxr1ZXqu5qV4wB4q9qXVq0,5208 +django/contrib/admin/locale/pa/LC_MESSAGES/django.mo,sha256=EEitcdoS-iQ9QWHPbJBK2ajdN56mBi0BzGnVl3KTmU4,8629 +django/contrib/admin/locale/pa/LC_MESSAGES/django.po,sha256=xscRlOkn9Jc8bDsSRM5bzQxEsCLMVsV-Wwin0rfkHDI,16089 +django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo,sha256=Hub-6v7AfF-tWhw53abpyhnVHo76h_xBgGIhlGIcS70,1148 +django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po,sha256=7L8D4qqhq53XG83NJUZNoM8zCCScwMwzsrzzsyO4lHY,4357 +django/contrib/admin/locale/pl/LC_MESSAGES/django.mo,sha256=Lg8aJUDeJy2F4HJ0sHzexRSi6rVhAxfNxUMjWsLAZKU,19372 +django/contrib/admin/locale/pl/LC_MESSAGES/django.po,sha256=MM8TxQU-rsr0ZznLDZZ10ZbO9et8i63QC6A4iXWVkoY,21310 +django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo,sha256=J06UuQkB2V4E8XAeUfTHbbjGVeNWAu328oFIeieb588,6655 +django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po,sha256=E084nmFnaWDKZHwwSVIjBdNc-9tIfgGWCl58GqbVRP8,7808 +django/contrib/admin/locale/pt/LC_MESSAGES/django.mo,sha256=jZNC62eFhnXnFY9MmqXGoELL7aH8OaJZ2h3cAYWnOWU,18681 +django/contrib/admin/locale/pt/LC_MESSAGES/django.po,sha256=ZGTP8N_3zvTyHBPXnmIch3pA4vafqalk__-lqyhkJps,20270 +django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo,sha256=RlsEslBxu8-1AJUz6olYHOVpqnV2kXrYXjxsMPHWGHs,5392 +django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po,sha256=D1sNOYDTY1DsaGC09V4nAaMea-FvW6UWOpnknP2F5uE,6716 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo,sha256=VFGVGpK6iSfh1bIwz_99Ioah4LOQR0GHdKCIaSFuQKs,18810 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po,sha256=qW8ZpwonsMz1PhLPDMPKNCoz05S2Yczl4t-njKxH-ZQ,21437 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo,sha256=xvi5ZdYPvbQ9xDFLn8B_twhZeP77rPUOj42nEoeI1IY,6329 +django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po,sha256=-8OovJeLBnTxCEXDf8IPlhoMB_k6De6dxMcV9Jzr1Yw,7492 +django/contrib/admin/locale/ro/LC_MESSAGES/django.mo,sha256=SEbnJ1aQ3m2nF7PtqzKvYYCdvgg_iG5hzrdO_Xxiv_k,15157 +django/contrib/admin/locale/ro/LC_MESSAGES/django.po,sha256=wPfGo9yi3j28cwikkogZ_erQKtUZ9WmzdZ2FuMVugFE,18253 +django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo,sha256=voEqSN3JUgJM9vumLxE_QNPV7kA0XOoTktN7E7AYV6o,4639 +django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po,sha256=SO7FAqNnuvIDfZ_tsWRiwSv91mHx5NZHyR2VnmoYBWY,5429 +django/contrib/admin/locale/ru/LC_MESSAGES/django.mo,sha256=scHv1IpdVCHwdVVxWAdW1Q0yT7SgoLz6paIYWiLZIEA,24187 +django/contrib/admin/locale/ru/LC_MESSAGES/django.po,sha256=OeUyRdR9uihQ912OU1cPPCD1nnkVqt_y46ENTI6SlUE,25938 +django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo,sha256=TE4M5XbCJ3tX4pTzyTbLG_xjtCtqZzVg1ZXSxeSXgcU,8392 +django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po,sha256=owCCQnZqwfIOG3zZucZPwOh47TnDS59ItQwzYeEexvM,9546 +django/contrib/admin/locale/sk/LC_MESSAGES/django.mo,sha256=W1zA58jQsXhHMxwHi6m99yEwV3ku6MtlJgMxdQwpz-E,18945 +django/contrib/admin/locale/sk/LC_MESSAGES/django.po,sha256=p603cCupx37wBIStl1wGm7m_FEmNiZT25aPULwyb18o,20578 +django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo,sha256=sl2PRwXLtikrOiHJ_EEltZivpV5IwT5lmbyfpGCSrLo,6305 +django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po,sha256=-ZcKl0UxOObVuB_8My20fdjCrV51drP4w-yan3X-RKk,7275 +django/contrib/admin/locale/sl/LC_MESSAGES/django.mo,sha256=rBSsaXNtCo43Cri9Gq_Ueq2IUNMBmzOV6lgMm7xF_p0,15077 +django/contrib/admin/locale/sl/LC_MESSAGES/django.po,sha256=ywIn4PB3xg6Q27NARZ3JRmSvNhcRFKU8nF_gbgA93qg,18281 +django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo,sha256=chhBmd2IkeOONuRlRsOnrPAEbS0tlH4w-G8YKVNRsNI,6146 +django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po,sha256=8mrwhJ1Geg5TEvJY40COC7bZl7cyIecRhLyqLjBqBAQ,6975 +django/contrib/admin/locale/sq/LC_MESSAGES/django.mo,sha256=12ltn7X_iHVHreOt0Eev86XolcxoFxfORBOf48yuTDk,18886 +django/contrib/admin/locale/sq/LC_MESSAGES/django.po,sha256=sYkz3gXb7QU2hwinqakJb0EcibH-IgOMcoNUq4E5mxM,20193 +django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo,sha256=JZd4AaMh0TPnT1bCSyDLWwRMMCVN9C8w3Ubd-UkLDWI,6122 +django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po,sha256=h0TU4rJnZ4KwpaL1mt8SiNvAQGuGVIFB1j4nh7vb7UI,6864 +django/contrib/admin/locale/sr/LC_MESSAGES/django.mo,sha256=7eF4L3TQMaMFXh2m1RkCdt4KZpICmgyvH15U9mLDrRA,23216 +django/contrib/admin/locale/sr/LC_MESSAGES/django.po,sha256=iKYVmh2UQk1Vf1qyhwD7WF_h9G9UaqL2bhnVKIV9BCs,24565 +django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo,sha256=1GW3zhwJYBiH5c0dmy4sXOsnt1r88LiHSZdlJ5IP1bI,7234 +django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po,sha256=AY4qY7h8JdA4WgOam0lSeVp0nUz2fdiLNHrFRNh2jLQ,8013 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=8wcRn4O2WYMFJal760MvjtSPBNoDgHAEYtedg8CC7Ao,12383 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po,sha256=N4fPEJTtUrQnc8q1MioPZ2a7E55YXrE-JvfAcWZubfA,16150 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo,sha256=HBndv8hTWMFpfJizmF-CkSmFr_-QPhdq-AziTaZCOOY,6021 +django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po,sha256=4m55hUurXwpzT968ifHH2FXAlt-ZmoqyjuLfUj8PpW8,10955 +django/contrib/admin/locale/sv/LC_MESSAGES/django.mo,sha256=-H1w7_y2w3bCRddOEq49tWofGGqbrJM8rmgdQWcAAFU,18004 +django/contrib/admin/locale/sv/LC_MESSAGES/django.po,sha256=Aq3NjhpgY7Ni2paOrWpeMB0zbm3zeK02JkHl-_dNYW8,19752 +django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo,sha256=o0ExbIeEhV8xPC62BLMaaNEw8vQ1JSeYVwUTY4SZjwo,5938 +django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po,sha256=J7KNDezuRJfGIt4-z1-Mm2cKf9lGODrEScs3w3n88y0,6937 +django/contrib/admin/locale/sw/LC_MESSAGES/django.mo,sha256=kiy4ZiBR6SIzF3SIqC3dNLTUDncZ9qjTdiG1AkIuuXk,17698 +django/contrib/admin/locale/sw/LC_MESSAGES/django.po,sha256=Km7ETJkQTpQUyp1r4mEpa3d_rCLbwh4n5DnYF6JLCxc,19082 +django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.mo,sha256=p0pi6-Zg-qsDVMDjNHO4aav3GfJ3tKKhy6MK7mPtC50,3647 +django/contrib/admin/locale/sw/LC_MESSAGES/djangojs.po,sha256=lZFP7Po4BM_QMTj-SXGlew1hqyJApZxu0lxMP-YduHI,4809 +django/contrib/admin/locale/ta/LC_MESSAGES/django.mo,sha256=ZdtNRZLRqquwMk7mE0XmTzEjTno9Zni3mV6j4DXL4nI,10179 +django/contrib/admin/locale/ta/LC_MESSAGES/django.po,sha256=D0TCLM4FFF7K9NqUGXNFE2KfoEzx5IHcJQ6-dYQi2Eg,16881 +django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo,sha256=2-37FOw9Bge0ahIRxFajzxvMkAZL2zBiQFaELmqyhhY,1379 +django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po,sha256=Qs-D7N3ZVzpZVxXtMWKOzJfSmu_Mk9pge5W15f21ihI,3930 +django/contrib/admin/locale/te/LC_MESSAGES/django.mo,sha256=aIAG0Ey4154R2wa-vNe2x8X4fz2L958zRmTpCaXZzds,10590 +django/contrib/admin/locale/te/LC_MESSAGES/django.po,sha256=-zJYrDNmIs5fp37VsG4EAOVefgbBNl75c-Pp3RGBDAM,16941 +django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo,sha256=VozLzWQwrY-USvin5XyVPtUUKEmCr0dxaWC6J14BReo,1362 +django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po,sha256=HI8IfXqJf4I6i-XZB8ELGyp5ZNr-oi5hW9h7n_8XSaQ,3919 +django/contrib/admin/locale/tg/LC_MESSAGES/django.mo,sha256=gJfgsEn9doTT0erBK77OBDi7_0O7Rb6PF9tRPacliXU,15463 +django/contrib/admin/locale/tg/LC_MESSAGES/django.po,sha256=Wkx7Hk2a9OzZymgrt9N91OL9K5HZXTbpPBXMhyE0pjI,19550 +django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.mo,sha256=SEaBcnnKupXbTKCJchkSu_dYFBBvOTAOQSZNbCYUuHE,5154 +django/contrib/admin/locale/tg/LC_MESSAGES/djangojs.po,sha256=CfUjLtwMmz1h_MLE7c4UYv05ZTz_SOclyKKWmVEP9Jg,5978 +django/contrib/admin/locale/th/LC_MESSAGES/django.mo,sha256=EVlUISdKOvNkGMG4nbQFzSn5p7d8c9zOGpXwoHsHNlY,16394 +django/contrib/admin/locale/th/LC_MESSAGES/django.po,sha256=OqhGCZ87VX-WKdC2EQ8A8WeXdWXu9mj6k8mG9RLZMpM,20187 +django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo,sha256=ukj5tyDor9COi5BT9oRLucO2wVTI6jZWclOM-wNpXHM,6250 +django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po,sha256=3L5VU3BNcmfiqzrAWK0tvRRVOtgR8Ceg9YIxL54RGBc,6771 +django/contrib/admin/locale/tk/LC_MESSAGES/django.mo,sha256=f51Ug7txuVeDo1WAywl6oi1aVi1ZJrv94rD4svUobm8,2845 +django/contrib/admin/locale/tk/LC_MESSAGES/django.po,sha256=AXMpn9mSO24azMC5CPHqPZRq-cbk6IpPpaF3Ab3K54k,13309 +django/contrib/admin/locale/tr/LC_MESSAGES/django.mo,sha256=2TG5asYEJCqGPGNofytA2qfjGxNVz3GwdOvkgbbHI-s,18745 +django/contrib/admin/locale/tr/LC_MESSAGES/django.po,sha256=CjXcGzi8vK12O_03qtUKTG8IPjOnKGP-08zoQjaNfzM,20255 +django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo,sha256=ZD3OYJSFuhPLrYZbAHb3tPhIxWK_tW1F8DOt7UwDR6g,6044 +django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po,sha256=bmh2K3ZxUnvAy_OdQB-NOE2injry30mzKGlwCsigIjg,6789 +django/contrib/admin/locale/tt/LC_MESSAGES/django.mo,sha256=ObJ8zwVLhFsS6XZK_36AkNRCeznoJJwLTMh4_LLGPAA,12952 +django/contrib/admin/locale/tt/LC_MESSAGES/django.po,sha256=VDjg5nDrLqRGXpxCyQudEC_n-6kTCIYsOl3izt1Eblc,17329 +django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.mo,sha256=Sz5qnMHWfLXjaCIHxQNrwac4c0w4oeAAQubn5R7KL84,2607 +django/contrib/admin/locale/tt/LC_MESSAGES/djangojs.po,sha256=_Uh3yH_RXVB3PP75RFztvSzVykVq0SQjy9QtTnyH3Qk,4541 +django/contrib/admin/locale/udm/LC_MESSAGES/django.mo,sha256=2Q_lfocM7OEjFKebqNR24ZBqUiIee7Lm1rmS5tPGdZA,622 +django/contrib/admin/locale/udm/LC_MESSAGES/django.po,sha256=L4TgEk2Fm2mtKqhZroE6k_gfz1VC-_dXe39CiJvaOPE,10496 +django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/admin/locale/udm/LC_MESSAGES/djangojs.po,sha256=ZLYr0yHdMYAl7Z7ipNSNjRFIMNYmzIjT7PsKNMT6XVk,2811 +django/contrib/admin/locale/ug/LC_MESSAGES/django.mo,sha256=1U-qjdk6839W4p5g4PL0l5GsehEwM-iPgMgzbvlmZ8Y,23241 +django/contrib/admin/locale/ug/LC_MESSAGES/django.po,sha256=0--xGDGJR01cIhmxISWl23PnRY2xvkKSHUMJLqfCyeA,24559 +django/contrib/admin/locale/ug/LC_MESSAGES/djangojs.mo,sha256=xC3-Xz8R95NL6EkVKvUuPX4jCwnNA_0sq6PvWEKbZ5I,7306 +django/contrib/admin/locale/ug/LC_MESSAGES/djangojs.po,sha256=V3UuGjeYLnfV151Yn_X0QrAYwfqMe6WvoyWJ1QnKsjo,7927 +django/contrib/admin/locale/uk/LC_MESSAGES/django.mo,sha256=LwO4uX79ZynANx47kGLijkDJ-DAdYWlmW3nYOqbXuuo,22319 +django/contrib/admin/locale/uk/LC_MESSAGES/django.po,sha256=9vEMtbw4ck4Sipdu-Y8mYOufWOTWpu7PVrMDu71GT9g,24335 +django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo,sha256=_YwTcBttv3DZNYkBq4Rsl6oq30o8nDvUHPI5Yx0GaA4,5787 +django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po,sha256=4lYvm_LDX5xha4Qj1dXE5tGs4BjGPUgjigvG2n6y1S4,6993 +django/contrib/admin/locale/ur/LC_MESSAGES/django.mo,sha256=HvyjnSeLhUf1JVDy759V_TI7ygZfLaMhLnoCBJxhH_s,13106 +django/contrib/admin/locale/ur/LC_MESSAGES/django.po,sha256=BFxxLbHs-UZWEmbvtWJNA7xeuvO9wDc32H2ysKZQvF4,17531 +django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo,sha256=eYN9Q9KKTV2W0UuqRc-gg7y42yFAvJP8avMeZM-W7mw,2678 +django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po,sha256=Nj-6L6axLrqA0RHUQbidNAT33sXYfVdGcX4egVua-Pk,4646 +django/contrib/admin/locale/uz/LC_MESSAGES/django.mo,sha256=yKpKebwX6RzUwCkvHzEQ_DFRr7x_nGeACRBP0PljTCQ,4634 +django/contrib/admin/locale/uz/LC_MESSAGES/django.po,sha256=bf_EhEV0c-H8MAdvRFb8TrXjgAAFfl8xif2Sw9uip_A,13776 +django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.mo,sha256=LpuFvNKqNRCCiV5VyRnJoZ8gY3Xieb05YV9KakNU7o8,3783 +django/contrib/admin/locale/uz/LC_MESSAGES/djangojs.po,sha256=joswozR3I1ijRapf50FZMzQQhI_aU2XiiSTLeSxkL64,5235 +django/contrib/admin/locale/vi/LC_MESSAGES/django.mo,sha256=coCDRhju7xVvdSaounXO5cMqCmLWICZPJth6JI3Si2c,18077 +django/contrib/admin/locale/vi/LC_MESSAGES/django.po,sha256=Q1etVmaAb1f79f4uVjbNjPkn-_3m2Spz1buNAV3y9lk,19543 +django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo,sha256=45E-fCQkq-BRLzRzsGkw1-AvWlvjL1rdsRFqfsvAq98,5302 +django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po,sha256=k87QvFnt8psnwMXXrFO6TyH6xCyXIDd_rlnWDfl2FAA,5958 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=Mqf-2H_QUW3Ex30n_KSWdWufO6gFUYSUsBxdW418huM,17143 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/django.po,sha256=0rSHQ8jJ5OuiX5zgBwhswSqM6Z90NO5WASbZkFjTNy4,19234 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.mo,sha256=-oaPtoS-K1iBfmpOtn-_XFuqJaFLFDDFzZ6EToaC8g0,5715 +django/contrib/admin/locale/zh_Hans/LC_MESSAGES/djangojs.po,sha256=lpJDxzzdngESFzW38Al5DbfQFfTmM59GCGpj8u9f4rA,6853 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=XnlgIwrF5lx8UX3uH2x2mTvruwywKo1w2lJ2e07D1AQ,16991 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/django.po,sha256=t1qEsnnUFNko1aWiln7HpRxIgy7uQy_GlsVrKJ25vfw,18404 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.mo,sha256=yFwS8aTJUAG5lN4tYLCxx-FLfTsiOxXrCEhlIA-9vcs,4230 +django/contrib/admin/locale/zh_Hant/LC_MESSAGES/djangojs.po,sha256=C4Yk5yuYcmaovVs_CS8YFYY2iS4RGi0oNaUpTm7akeU,4724 +django/contrib/admin/migrations/0001_initial.py,sha256=9HFpidmBW2Ix8NcpF1SDXgCMloGER_5XmEu_iYWIMzU,2507 +django/contrib/admin/migrations/0002_logentry_remove_auto_add.py,sha256=LBJ-ZZoiNu3qDtV-zNOHhq6E42V5CoC5a3WMYX9QvkM,553 +django/contrib/admin/migrations/0003_logentry_add_action_flag_choices.py,sha256=AnAKgnGQcg5cQXSVo5UHG2uqKKNOdLyPkIJK-q_AGEE,538 +django/contrib/admin/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admin/migrations/__pycache__/0001_initial.cpython-310.pyc,, +django/contrib/admin/migrations/__pycache__/0002_logentry_remove_auto_add.cpython-310.pyc,, +django/contrib/admin/migrations/__pycache__/0003_logentry_add_action_flag_choices.cpython-310.pyc,, +django/contrib/admin/migrations/__pycache__/__init__.cpython-310.pyc,, +django/contrib/admin/models.py,sha256=c7KbDRElgwaEL479ZXHJPSa0mfcnZ7E7utzvEK0o6RM,8444 +django/contrib/admin/options.py,sha256=TRxEYp_9eBshk0E8IXr9-VE5bswkEvNGGb9JSYxxXKA,100242 +django/contrib/admin/sites.py,sha256=1I1B-JMkFk0eoACp8cxRDY1OKrnFaJzvLsL1TdQ0M-c,23204 +django/contrib/admin/static/admin/css/autocomplete.css,sha256=oZCQKaJleVU68lo5A1fRD1iGzqNgSgtollAc2gVWbaw,9185 +django/contrib/admin/static/admin/css/base.css,sha256=RO7kMJW2rLFbd-D9yY8GrwV-Co2V9XFBajNAS592Olc,22092 +django/contrib/admin/static/admin/css/changelists.css,sha256=qaNfxJlI_NarKm0IjyTkmtRoNXvOoVHfMhoOvVjbE4M,6878 +django/contrib/admin/static/admin/css/dark_mode.css,sha256=VexPq1oTRQFmQUvDWA5TXs113B3DonxjM1dVq3jWItE,2804 +django/contrib/admin/static/admin/css/dashboard.css,sha256=iCz7Kkr5Ld3Hyjx_O1r_XfZ2LcpxOpVjcDZS1wbqHWs,441 +django/contrib/admin/static/admin/css/forms.css,sha256=La0DBLZdAOZL6KCO6lXWahkNLpiYDssCFG1HJdVMhcE,8794 +django/contrib/admin/static/admin/css/login.css,sha256=f8lbZQdAWt1rGdvNrIf1kciQPVcBJX4zYHf81JrqXnI,951 +django/contrib/admin/static/admin/css/nav_sidebar.css,sha256=4wmBb5tVT5_fcnP_UtS16jal0QiqgOKq_yz162Hr_C4,2810 +django/contrib/admin/static/admin/css/responsive.css,sha256=jmrf-FGu2q4Fx6GshvgFoxaWeYvH6YZ48W25Gz6Y89Y,17972 +django/contrib/admin/static/admin/css/responsive_rtl.css,sha256=-rFxMozuMebKa4cF-mnIX4rc0BQ618-ErK8eAEmEHBw,2544 +django/contrib/admin/static/admin/css/rtl.css,sha256=1bBNLRcIPTteBElXxSRY1ctni3Fytx5jtCvKNyuaRnU,4696 +django/contrib/admin/static/admin/css/unusable_password_field.css,sha256=c-s6fSgH5n2hrZO6jopy__T9_VHX0YZJnnGTEfWNjRA,663 +django/contrib/admin/static/admin/css/vendor/select2/LICENSE-SELECT2.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124 +django/contrib/admin/static/admin/css/vendor/select2/select2.css,sha256=kalgQ55Pfy9YBkT-4yYYd5N8Iobe-iWeBuzP7LjVO0o,17358 +django/contrib/admin/static/admin/css/vendor/select2/select2.min.css,sha256=FdatTf20PQr_rWg-cAKfl6j4_IY3oohFAJ7gVC3M34E,14966 +django/contrib/admin/static/admin/css/widgets.css,sha256=NZBu1UEPYtta6ThHX9CFDIt2DflTjrSsBu5B5Me3QMw,11564 +django/contrib/admin/static/admin/img/LICENSE,sha256=0RT6_zSIwWwxmzI13EH5AjnT1j2YU3MwM9j3U19cAAQ,1081 +django/contrib/admin/static/admin/img/README.txt,sha256=Z5Y_AuG3V72qXRo_hS7JTHAid6deKUQKfLHgWP5hQHw,321 +django/contrib/admin/static/admin/img/calendar-icons.svg,sha256=VPzjt0-CwhFaiF2JyX2SjEkPuELU7QlhH4UhuWZmWX0,2455 +django/contrib/admin/static/admin/img/gis/move_vertex_off.svg,sha256=ou-ppUNyy5QZCKFYlcrzGBwEEiTDX5mmJvM8rpwC5DM,1129 +django/contrib/admin/static/admin/img/gis/move_vertex_on.svg,sha256=DgmcezWDms_3VhgqgYUGn-RGFHyScBP0MeX8PwHy_nE,1129 +django/contrib/admin/static/admin/img/icon-addlink.svg,sha256=_5bRQvExVwSP4DsRzIb-yDwutuft2RkHLqcifdlWypE,331 +django/contrib/admin/static/admin/img/icon-alert.svg,sha256=aXtd9PA66tccls-TJfyECQrmdWrj8ROWKC0tJKa7twA,504 +django/contrib/admin/static/admin/img/icon-calendar.svg,sha256=_bcF7a_R94UpOfLf-R0plVobNUeeTto9UMiUIHBcSHY,1086 +django/contrib/admin/static/admin/img/icon-changelink.svg,sha256=pjCclLDG8vvQmfZkFVzFMw1CLer930zafI8XgvDN86c,380 +django/contrib/admin/static/admin/img/icon-clock.svg,sha256=k55Yv6R6-TyS8hlL3Kye0IMNihgORFjoJjHY21vtpEA,677 +django/contrib/admin/static/admin/img/icon-deletelink.svg,sha256=06XOHo5y59UfNBtO8jMBHQqmXt8UmohlSMloUuZ6d0A,392 +django/contrib/admin/static/admin/img/icon-hidelink.svg,sha256=4MGicntOFkPurB9LW_IC-0N88WXKvrQxVyBB9p5gMTA,784 +django/contrib/admin/static/admin/img/icon-no.svg,sha256=QqBaTrrp3KhYJxLYB5E-0cn_s4A_Y8PImYdWjfQSM-c,560 +django/contrib/admin/static/admin/img/icon-unknown-alt.svg,sha256=LyL9oJtR0U49kGHYKMxmmm1vAw3qsfXR7uzZH76sZ_g,655 +django/contrib/admin/static/admin/img/icon-unknown.svg,sha256=ePcXlyi7cob_IcJOpZ66uiymyFgMPHl8p9iEn_eE3fc,655 +django/contrib/admin/static/admin/img/icon-viewlink.svg,sha256=NL7fcy7mQOQ91sRzxoVRLfzWzXBRU59cFANOrGOwWM0,581 +django/contrib/admin/static/admin/img/icon-yes.svg,sha256=_H4JqLywJ-NxoPLqSqk9aGJcxEdZwtSFua1TuI9kIcM,436 +django/contrib/admin/static/admin/img/inline-delete.svg,sha256=Ni1z8eDYBOveVDqtoaGyEMWG5Mdnt9dniiuBWTlnr5Y,560 +django/contrib/admin/static/admin/img/search.svg,sha256=HgvLPNT7FfgYvmbt1Al1yhXgmzYHzMg8BuDLnU9qpMU,458 +django/contrib/admin/static/admin/img/selector-icons.svg,sha256=0RJyrulJ_UR9aYP7Wbvs5jYayBVhLoXR26zawNMZ0JQ,3291 +django/contrib/admin/static/admin/img/sorting-icons.svg,sha256=cCvcp4i3MAr-mo8LE_h8ZRu3LD7Ma9BtpK-p24O3lVA,1097 +django/contrib/admin/static/admin/img/tooltag-add.svg,sha256=fTZCouGMJC6Qq2xlqw_h9fFodVtLmDMrpmZacGVJYZQ,331 +django/contrib/admin/static/admin/img/tooltag-arrowright.svg,sha256=GIAqy_4Oor9cDMNC2fSaEGh-3gqScvqREaULnix3wHc,280 +django/contrib/admin/static/admin/js/SelectBox.js,sha256=b42sGVqaCDqlr0ibFiZus9FbrUweRcKD_y61HDAdQuc,4530 +django/contrib/admin/static/admin/js/SelectFilter2.js,sha256=KHZTz9X8P7s1a_4Di1rpNfmnobP1Z49-JizDDDkqzLE,15502 +django/contrib/admin/static/admin/js/actions.js,sha256=KZnmpiDCroO8EcCawROJdHAdUFL87Xu9pqYUL5jHIxM,8076 +django/contrib/admin/static/admin/js/admin/DateTimeShortcuts.js,sha256=ryJhtM9SN0fMdfnhV_m2Hv2pc6a9B0Zpc37ocZ82_-0,19319 +django/contrib/admin/static/admin/js/admin/RelatedObjectLookups.js,sha256=XXtBFmKGeHSwL0SxEKKvzhbeLA1jax8ZasQobouWfGc,9097 +django/contrib/admin/static/admin/js/autocomplete.js,sha256=OAqSTiHZnTWZzJKEvOm-Z1tdAlLjPWX9jKpYkmH0Ozo,1060 +django/contrib/admin/static/admin/js/calendar.js,sha256=cj6qPrSqdWeq_OnWUUKWy4jVGCiy4YxsbXa5KhUw_r4,9141 +django/contrib/admin/static/admin/js/cancel.js,sha256=UEZdvvWu5s4ZH16lFfxa8UPgWXJ3i8VseK5Lcw2Kreg,884 +django/contrib/admin/static/admin/js/change_form.js,sha256=zOTeORCq1i9XXV_saSBBDOXbou5UtZvxYFpVPqxQ02Q,606 +django/contrib/admin/static/admin/js/core.js,sha256=H4_YZp2B3Y9JxMZPpHKVutrUZJbAZd4H6Gc-ilSb4_E,6208 +django/contrib/admin/static/admin/js/filters.js,sha256=T-JlrqZEBSWbiFw_e5lxkMykkACWqWXd_wMy-b3TnaE,978 +django/contrib/admin/static/admin/js/inlines.js,sha256=yWB-KSw_aZmVZpIitKde7imygAa36LBdqoBfB7lTvJQ,15526 +django/contrib/admin/static/admin/js/jquery.init.js,sha256=uM_Kf7EOBMipcCmuQHbyubQkycleSWDCS8-c3WevFW0,347 +django/contrib/admin/static/admin/js/nav_sidebar.js,sha256=1xzV95R3GaqQ953sVmkLIuZJrzFNoDJMHBqwQePp6-Q,3063 +django/contrib/admin/static/admin/js/popup_response.js,sha256=IKRg0dCpW_gkwT-l6yy3hIFxEwbaA5tw0XEckpPaHvE,532 +django/contrib/admin/static/admin/js/prepopulate.js,sha256=UYkWrHNK1-OWp1a5IWZdg0udfo_dcR-jKSn5AlxxqgU,1531 +django/contrib/admin/static/admin/js/prepopulate_init.js,sha256=mJIPAgn8QHji_rSqO6WKNREbpkCILFrjRCCOQ1-9SoQ,586 +django/contrib/admin/static/admin/js/theme.js,sha256=gG6whuLXbtdF-t_pvUO1O7LfVlNZDuzMZONENrOuZp4,1653 +django/contrib/admin/static/admin/js/unusable_password_field.js,sha256=tcGj7GAhLMohHLtxGOAsaZH1t0Fu3fTQk2l3vFV9AY4,1480 +django/contrib/admin/static/admin/js/urlify.js,sha256=8oC4Bcxt8oJY4uy9O4NjPws5lXzDkdfwI2Xo3MxpBTo,7887 +django/contrib/admin/static/admin/js/vendor/jquery/LICENSE.txt,sha256=1Nuevm8p9RaOrEWtcT8FViOsXQ3NW6ktoj1lCuASAg0,1097 +django/contrib/admin/static/admin/js/vendor/jquery/jquery.js,sha256=eKhayi8LEQwp4NKxN-CfCh-3qOVUtJn3QNZ0TciWLP4,285314 +django/contrib/admin/static/admin/js/vendor/jquery/jquery.min.js,sha256=_JqT3SQfawRcv_BIHPThkBvs0OEvtFFmqPF_lYI_Cxo,87533 +django/contrib/admin/static/admin/js/vendor/select2/LICENSE.md,sha256=TuDLxRNwr941hlKg-XeXIFNyntV4tqQvXioDfRFPCzk,1124 +django/contrib/admin/static/admin/js/vendor/select2/i18n/af.js,sha256=IpI3uo19fo77jMtN5R3peoP0OriN-nQfPY2J4fufd8g,866 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ar.js,sha256=zxQ3peSnbVIfrH1Ndjx4DrHDsmbpqu6mfeylVWFM5mY,905 +django/contrib/admin/static/admin/js/vendor/select2/i18n/az.js,sha256=N_KU7ftojf2HgvJRlpP8KqG6hKIbqigYN3K0YH_ctuQ,721 +django/contrib/admin/static/admin/js/vendor/select2/i18n/bg.js,sha256=5Z6IlHmuk_6IdZdAVvdigXnlj7IOaKXtcjuI0n0FmYQ,968 +django/contrib/admin/static/admin/js/vendor/select2/i18n/bn.js,sha256=wdQbgaxZ47TyGlwvso7GOjpmTXUKaWzvVUr_oCRemEE,1291 +django/contrib/admin/static/admin/js/vendor/select2/i18n/bs.js,sha256=g56kWSu9Rxyh_rarLSDa_8nrdqL51JqZai4QQx20jwQ,965 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ca.js,sha256=DSyyAXJUI0wTp_TbFhLNGrgvgRsGWeV3IafxYUGBggM,900 +django/contrib/admin/static/admin/js/vendor/select2/i18n/cs.js,sha256=t_8OWVi6Yy29Kabqs_l1sM2SSrjUAgZTwbTX_m0MCL8,1292 +django/contrib/admin/static/admin/js/vendor/select2/i18n/da.js,sha256=tF2mvzFYSWYOU3Yktl3G93pCkf-V9gonCxk7hcA5J1o,828 +django/contrib/admin/static/admin/js/vendor/select2/i18n/de.js,sha256=5bspfcihMp8yXDwfcqvC_nV3QTbtBuQDmR3c7UPQtFw,866 +django/contrib/admin/static/admin/js/vendor/select2/i18n/dsb.js,sha256=KtP2xNoP75oWnobUrS7Ep_BOFPzcMNDt0wyPnkbIF_Q,1017 +django/contrib/admin/static/admin/js/vendor/select2/i18n/el.js,sha256=IdvD8eY_KpX9fdHvld3OMvQfYsnaoJjDeVkgbIemfn8,1182 +django/contrib/admin/static/admin/js/vendor/select2/i18n/en.js,sha256=C66AO-KOXNuXEWwhwfjYBFa3gGcIzsPFHQAZ9qSh3Go,844 +django/contrib/admin/static/admin/js/vendor/select2/i18n/es.js,sha256=IhZaIy8ufTduO2-vBrivswMCjlPk7vrk4P81pD6B0SM,922 +django/contrib/admin/static/admin/js/vendor/select2/i18n/et.js,sha256=LgLgdOkKjc63svxP1Ua7A0ze1L6Wrv0X6np-8iRD5zw,801 +django/contrib/admin/static/admin/js/vendor/select2/i18n/eu.js,sha256=rLmtP7bA_atkNIj81l_riTM7fi5CXxVrFBHFyddO-Hw,868 +django/contrib/admin/static/admin/js/vendor/select2/i18n/fa.js,sha256=fqZkE9e8tt2rZ7OrDGPiOsTNdj3S2r0CjbddVUBDeMA,1023 +django/contrib/admin/static/admin/js/vendor/select2/i18n/fi.js,sha256=KVGirhGGNee_iIpMGLX5EzH_UkNe-FOPC_0484G-QQ0,803 +django/contrib/admin/static/admin/js/vendor/select2/i18n/fr.js,sha256=aj0q2rdJN47BRBc9LqvsgxkuPOcWAbZsUFUlbguwdY0,924 +django/contrib/admin/static/admin/js/vendor/select2/i18n/gl.js,sha256=HSJafI85yKp4WzjFPT5_3eZ_-XQDYPzzf4BWmu6uXHk,924 +django/contrib/admin/static/admin/js/vendor/select2/i18n/he.js,sha256=DIPRKHw0NkDuUtLNGdTnYZcoCiN3ustHY-UMmw34V_s,984 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hi.js,sha256=m6ZqiKZ_jzwzVFgC8vkYiwy4lH5fJEMV-LTPVO2Wu40,1175 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hr.js,sha256=NclTlDTiNFX1y0W1Llj10-ZIoXUYd7vDXqyeUJ7v3B4,852 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hsb.js,sha256=FTLszcrGaelTW66WV50u_rS6HV0SZxQ6Vhpi2tngC6M,1018 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hu.js,sha256=3PdUk0SpHY-H-h62womw4AyyRMujlGc6_oxW-L1WyOs,831 +django/contrib/admin/static/admin/js/vendor/select2/i18n/hy.js,sha256=BLh0fntrwtwNwlQoiwLkdQOVyNXHdmRpL28p-W5FsDg,1028 +django/contrib/admin/static/admin/js/vendor/select2/i18n/id.js,sha256=fGJ--Aw70Ppzk3EgLjF1V_QvqD2q_ufXjnQIIyZqYgc,768 +django/contrib/admin/static/admin/js/vendor/select2/i18n/is.js,sha256=gn0ddIqTnJX4wk-tWC5gFORJs1dkgIH9MOwLljBuQK0,807 +django/contrib/admin/static/admin/js/vendor/select2/i18n/it.js,sha256=kGxtapwhRFj3u_IhY_7zWZhKgR5CrZmmasT5w-aoXRM,897 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ja.js,sha256=tZ4sqdx_SEcJbiW5-coHDV8FVmElJRA3Z822EFHkjLM,862 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ka.js,sha256=DH6VrnVdR8SX6kso2tzqnJqs32uCpBNyvP9Kxs3ssjI,1195 +django/contrib/admin/static/admin/js/vendor/select2/i18n/km.js,sha256=x9hyjennc1i0oeYrFUHQnYHakXpv7WD7MSF-c9AaTjg,1088 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ko.js,sha256=ImmB9v7g2ZKEmPFUQeXrL723VEjbiEW3YelxeqHEgHc,855 +django/contrib/admin/static/admin/js/vendor/select2/i18n/lt.js,sha256=ZT-45ibVwdWnTyo-TqsqW2NjIp9zw4xs5So78KMb_s8,944 +django/contrib/admin/static/admin/js/vendor/select2/i18n/lv.js,sha256=hHpEK4eYSoJj_fvA2wl8QSuJluNxh-Tvp6UZm-ZYaeE,900 +django/contrib/admin/static/admin/js/vendor/select2/i18n/mk.js,sha256=PSpxrnBpL4SSs9Tb0qdWD7umUIyIoR2V1fpqRQvCXcA,1038 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ms.js,sha256=NCz4RntkJZf8YDDC1TFBvK-nkn-D-cGNy7wohqqaQD4,811 +django/contrib/admin/static/admin/js/vendor/select2/i18n/nb.js,sha256=eduKCG76J3iIPrUekCDCq741rnG4xD7TU3E7Lib7sPE,778 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ne.js,sha256=QQjDPQE6GDKXS5cxq2JRjk3MGDvjg3Izex71Zhonbj8,1357 +django/contrib/admin/static/admin/js/vendor/select2/i18n/nl.js,sha256=JctLfTpLQ5UFXtyAmgbCvSPUtW0fy1mE7oNYcMI90bI,904 +django/contrib/admin/static/admin/js/vendor/select2/i18n/pl.js,sha256=6gEuKYnJdf8cbPERsw-mtdcgdByUJuLf1QUH0aSajMo,947 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ps.js,sha256=4J4sZtSavxr1vZdxmnub2J0H0qr1S8WnNsTehfdfq4M,1049 +django/contrib/admin/static/admin/js/vendor/select2/i18n/pt-BR.js,sha256=0DFe1Hu9fEDSXgpjPOQrA6Eq0rGb15NRbsGh1U4vEr0,876 +django/contrib/admin/static/admin/js/vendor/select2/i18n/pt.js,sha256=L5jqz8zc5BF8ukrhpI2vvGrNR34X7482dckX-IUuUpA,878 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ro.js,sha256=Aadb6LV0u2L2mCOgyX2cYZ6xI5sDT9OI3V7HwuueivM,938 +django/contrib/admin/static/admin/js/vendor/select2/i18n/ru.js,sha256=bV6emVCE9lY0LzbVN87WKAAAFLUT3kKqEzn641pJ29o,1171 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sk.js,sha256=MnbUcP6pInuBzTW_L_wmXY8gPLGCOcKyzQHthFkImZo,1306 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sl.js,sha256=LPIKwp9gp_WcUc4UaVt_cySlNL5_lmfZlt0bgtwnkFk,925 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sq.js,sha256=oIxJLYLtK0vG2g3s5jsGLn4lHuDgSodxYAWL0ByHRHo,903 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sr-Cyrl.js,sha256=BoT2KdiceZGgxhESRz3W2J_7CFYqWyZyov2YktUo_2w,1109 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sr.js,sha256=7EELYXwb0tISsuvL6eorxzTviMK-oedSvZvEZCMloGU,980 +django/contrib/admin/static/admin/js/vendor/select2/i18n/sv.js,sha256=c6nqUmitKs4_6AlYDviCe6HqLyOHqot2IrvJRGjj1JE,786 +django/contrib/admin/static/admin/js/vendor/select2/i18n/th.js,sha256=saDPLk-2dq5ftKCvW1wddkJOg-mXA-GUoPPVOlSZrIY,1074 +django/contrib/admin/static/admin/js/vendor/select2/i18n/tk.js,sha256=mUEGlb-9nQHvzcTYI-1kjsB7JsPRGpLxWbjrJ8URthU,771 +django/contrib/admin/static/admin/js/vendor/select2/i18n/tr.js,sha256=dDz8iSp07vbx9gciIqz56wmc2TLHj5v8o6es75vzmZU,775 +django/contrib/admin/static/admin/js/vendor/select2/i18n/uk.js,sha256=MixhFDvdRda-wj-TjrN018s7R7E34aQhRjz4baxrdKw,1156 +django/contrib/admin/static/admin/js/vendor/select2/i18n/vi.js,sha256=mwTeySsUAgqu_IA6hvFzMyhcSIM1zGhNYKq8G7X_tpM,796 +django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-CN.js,sha256=olAdvPQ5qsN9IZuxAKgDVQM-blexUnWTDTXUtiorygI,768 +django/contrib/admin/static/admin/js/vendor/select2/i18n/zh-TW.js,sha256=DnDBG9ywBOfxVb2VXg71xBR_tECPAxw7QLhZOXiJ4fo,707 +django/contrib/admin/static/admin/js/vendor/select2/select2.full.js,sha256=ugZkER5OAEGzCwwb_4MvhBKE5Gvmc0S59MKn-dooZaI,173566 +django/contrib/admin/static/admin/js/vendor/select2/select2.full.min.js,sha256=XG_auAy4aieWldzMImofrFDiySK-pwJC7aoo9St7rS0,79212 +django/contrib/admin/static/admin/js/vendor/xregexp/LICENSE.txt,sha256=c68pSb_5KWyw-BbDvhmk2k6VrclMH5JHlui60_A_Lyk,1106 +django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.js,sha256=FM2fFr4a9mVscQobpyNQG1Bu4_8exjunQglEoPSP5uo,325171 +django/contrib/admin/static/admin/js/vendor/xregexp/xregexp.min.js,sha256=-FQXGywOGwW-5DdFMWIq0QWpGX3rQFuQpIDe6N_9eVI,163184 +django/contrib/admin/templates/admin/404.html,sha256=zyawWu1I9IxDGBRsks6-DgtLUGDDYOKHfj9YQqPl0AA,282 +django/contrib/admin/templates/admin/500.html,sha256=rZNmFXr9POnc9TdZwD06qkY8h2W5K05vCyssrIzbZGE,551 +django/contrib/admin/templates/admin/actions.html,sha256=B2s3wWt4g_uhd7CZdmXp4ZGZlMfh6K9RAH4Bv6Ud9nQ,1235 +django/contrib/admin/templates/admin/app_index.html,sha256=7NPb0bdLKOdja7FoIERyRZRYK-ldX3PcxMoydguWfzc,493 +django/contrib/admin/templates/admin/app_list.html,sha256=jiS-lqU3wzxA804jf-eR16GGXSKtiwok2BmGl9PXVcE,2054 +django/contrib/admin/templates/admin/auth/user/add_form.html,sha256=iZ8T3RZHTxB-RR1xVwEaajcmfgro7JOVJY_wXeL3aGg,633 +django/contrib/admin/templates/admin/auth/user/change_password.html,sha256=GVfOxP3n9o4VDcGfhugsfQrfnmIX3t39eUMVIWnYTZo,3788 +django/contrib/admin/templates/admin/base.html,sha256=afBV1wJ-8BcoXeTHr2mZ2enpRZ1ARk_FFvydsWWOWJo,6081 +django/contrib/admin/templates/admin/base_site.html,sha256=GCiXgXwC_ZZ1goTKnrbdNfWONojGxTatiD5hCsA8HTg,450 +django/contrib/admin/templates/admin/change_form.html,sha256=_SItPLxgcpREl0hhVXt92ZUoBbwFRjMxrLIe5lSAqt0,3097 +django/contrib/admin/templates/admin/change_form_object_tools.html,sha256=C0l0BJF2HuSjIvtY-Yr-ByZ9dePFRrTc-MR-OVJD-AI,403 +django/contrib/admin/templates/admin/change_list.html,sha256=S-i0XcBZuY00idddX6w1ZKyD33thTFASFQk39mQ5JSA,3808 +django/contrib/admin/templates/admin/change_list_object_tools.html,sha256=-AX0bYTxDsdLtEpAEK3RFpY89tdvVChMAWPYBLqPn48,378 +django/contrib/admin/templates/admin/change_list_results.html,sha256=yOpb1o-L5Ys9GiRA_nCXoFhIzREDVXLBuYzZk1xrx1w,1502 +django/contrib/admin/templates/admin/color_theme_toggle.html,sha256=a2uh7_c2umbLLGRD_cVdVmfp291TwQYkD_87sYCotIU,703 +django/contrib/admin/templates/admin/date_hierarchy.html,sha256=Hug06L1uQzPQ-NAeixTtKRtDu2lAWh96o6f8ElnyU0c,453 +django/contrib/admin/templates/admin/delete_confirmation.html,sha256=3eMxQPSITd7Mae22TALXtCvJR4YMwfzNG_iAtuyF0PI,2539 +django/contrib/admin/templates/admin/delete_selected_confirmation.html,sha256=5yyaNqfiK1evhJ7px7gmMqjFwYrrMaKNDvQJ3-Lu4mo,2241 +django/contrib/admin/templates/admin/edit_inline/stacked.html,sha256=q4DUCiTfrlVypMV6TrvkN4zl1QDe57l-VTvYcO6yl1Q,3108 +django/contrib/admin/templates/admin/edit_inline/tabular.html,sha256=Dk0R0Hb9a4Dwl_F9G5W7GMxvLiUeOCcnk04_khbzeeA,4436 +django/contrib/admin/templates/admin/filter.html,sha256=cvjazGEln3BL_0iyz8Kcsend5WhT9y-gXKRN2kHqejU,395 +django/contrib/admin/templates/admin/includes/fieldset.html,sha256=xYpl4rTle6p8pNgEUDQ6x5b2nhRRI6Tu3clY0_hiT_8,2672 +django/contrib/admin/templates/admin/includes/object_delete_summary.html,sha256=OC7VhKQiczmi01Gt_3jyemelerSNrGyDiWghUK6xKEI,192 +django/contrib/admin/templates/admin/index.html,sha256=TQxZdAy2ZyeXBLA_KZMXus7e2TGezFAUTsYHJBMLPl8,2070 +django/contrib/admin/templates/admin/invalid_setup.html,sha256=F5FS3o7S3l4idPrX29OKlM_azYmCRKzFdYjV_jpTqhE,447 +django/contrib/admin/templates/admin/login.html,sha256=ShZFbs_ITw6YoOBI_L6B-zekHJqjlR14h8WHIo-g5Ro,1899 +django/contrib/admin/templates/admin/nav_sidebar.html,sha256=OfI8XJn3_Q_Wf2ymc1IH61eTGZNMFwkkGwXXTDqeuP8,486 +django/contrib/admin/templates/admin/object_history.html,sha256=5e6ki7C94YKBoFyCvDOfqt4YzCyhNmNMy8NM4aKqiHc,2136 +django/contrib/admin/templates/admin/pagination.html,sha256=OBvC2HWFaH3wIuk6gzKSyCli51NTaW8vnJFyBOpNo_8,549 +django/contrib/admin/templates/admin/popup_response.html,sha256=Lj8dfQrg1XWdA-52uNtWJ9hwBI98Wt2spSMkO4YBjEk,327 +django/contrib/admin/templates/admin/prepopulated_fields_js.html,sha256=PShGpqQWBBVwQ86r7b-SimwJS0mxNiz8AObaiDOSfvY,209 +django/contrib/admin/templates/admin/search_form.html,sha256=GImO4ldr2iVMDKPa2prQzrJyrZEQS1Zy6guNfF6VbQ8,1357 +django/contrib/admin/templates/admin/submit_line.html,sha256=yI7XWZCjvY5JtDAvbzx8hpXZi4vRYWx0mty7Zt5uWjY,1093 +django/contrib/admin/templates/admin/widgets/clearable_file_input.html,sha256=3g3JbkQmjgjl_Lyz6DzkvNBxlJT0GJAuQGV4MAGSyJ0,666 +django/contrib/admin/templates/admin/widgets/date.html,sha256=uJME8ir5DrcrWze9ikzlspoaCudQqxyMMGr6azIMkMc,71 +django/contrib/admin/templates/admin/widgets/foreign_key_raw_id.html,sha256=s5BiNQDbL9GcEVzYMwPfoYRFdnMiSeoyLKvyAzMqGnw,339 +django/contrib/admin/templates/admin/widgets/many_to_many_raw_id.html,sha256=w18JMKnPKrw6QyqIXBcdPs3YJlTRtHK5HGxj0lVkMlY,54 +django/contrib/admin/templates/admin/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/contrib/admin/templates/admin/widgets/related_widget_wrapper.html,sha256=YwUzzVO2VBxqBJ-s0Aa9O5i1RDbo-HLqi1y-bbhvLWM,2102 +django/contrib/admin/templates/admin/widgets/split_datetime.html,sha256=BQ9XNv3eqtvNqZZGW38VBM2Nan-5PBxokbo2Fm_wwCQ,238 +django/contrib/admin/templates/admin/widgets/time.html,sha256=oiXCD1IvDhALK3w0fCrVc7wBOFMJhvPNTG2_NNz9H7A,71 +django/contrib/admin/templates/admin/widgets/url.html,sha256=Tf7PwdoKAiimfmDTVbWzRVxxUeyfhF0OlsuiOZ1tHgI,218 +django/contrib/admin/templates/registration/logged_out.html,sha256=PuviqzJh7C6SZJl9yKZXDcxxqXNCTDVfRuEpqvwJiPE,425 +django/contrib/admin/templates/registration/password_change_done.html,sha256=Ukca5IPY_VhtO3wfu9jABgY7SsbB3iIGp2KCSJqihlQ,745 +django/contrib/admin/templates/registration/password_change_form.html,sha256=vOyAdwDe7ajx0iFQR-dbWK7Q3bo6NVejWEFIoNlRYbQ,2428 +django/contrib/admin/templates/registration/password_reset_complete.html,sha256=_fc5bDeYBaI5fCUJZ0ZFpmOE2CUqlbk3npGk63uc_Ks,417 +django/contrib/admin/templates/registration/password_reset_confirm.html,sha256=r8SneE3ofcZkm38eV1FPBfyNyKXKNqGci-hdqifV_3k,1498 +django/contrib/admin/templates/registration/password_reset_done.html,sha256=SQsksjWN8vPLpvtFYPBFMMqZtLeiB4nesPq2VxpB3Y8,588 +django/contrib/admin/templates/registration/password_reset_email.html,sha256=rqaoGa900-rsUasaGYP2W9nBd6KOGZTyc1PsGTFozHo,612 +django/contrib/admin/templates/registration/password_reset_form.html,sha256=_Grf7jbOWrdT5RR8ypvCNv0j_huX5O_EiNwAO_NF0jc,955 +django/contrib/admin/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admin/templatetags/__pycache__/__init__.cpython-310.pyc,, +django/contrib/admin/templatetags/__pycache__/admin_list.cpython-310.pyc,, +django/contrib/admin/templatetags/__pycache__/admin_modify.cpython-310.pyc,, +django/contrib/admin/templatetags/__pycache__/admin_urls.cpython-310.pyc,, +django/contrib/admin/templatetags/__pycache__/base.cpython-310.pyc,, +django/contrib/admin/templatetags/__pycache__/log.cpython-310.pyc,, +django/contrib/admin/templatetags/admin_list.py,sha256=qWMkhfkrHzdpwpgprgV3anG_BW0Be0lKV3H34tj0Ogw,18871 +django/contrib/admin/templatetags/admin_modify.py,sha256=DGE-YaZB1-bUqvjOwmnWJTrIRiR1qYdY6NyPDj1Hj3U,4978 +django/contrib/admin/templatetags/admin_urls.py,sha256=fIWcZ4zhPURSQ0DliyMzmzALO5kshFyWG6YhIPvUx9A,2038 +django/contrib/admin/templatetags/base.py,sha256=0jlMfZu-IZkTJsnJQUtqBX2ceqCaVeClTTS1wdxn73w,1465 +django/contrib/admin/templatetags/log.py,sha256=vL2TNhgFsCH-4JXDE-2I_BhB2xQQLwx4GkHKx7m8Rz4,2050 +django/contrib/admin/tests.py,sha256=jItB0bAMHtTkDmsPXmg8UZue09a5zGV_Ws2hYH_bL80,8524 +django/contrib/admin/utils.py,sha256=d7m5I_5lC9JbrOXCNd_PCHefWmT-jc41HS3kTrFY3_0,21733 +django/contrib/admin/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admin/views/__pycache__/__init__.cpython-310.pyc,, +django/contrib/admin/views/__pycache__/autocomplete.cpython-310.pyc,, +django/contrib/admin/views/__pycache__/decorators.cpython-310.pyc,, +django/contrib/admin/views/__pycache__/main.cpython-310.pyc,, +django/contrib/admin/views/autocomplete.py,sha256=PjC8db25zhYgwLS_4pq6PApTD_YRn4muIH0A_VN7kCg,4385 +django/contrib/admin/views/decorators.py,sha256=4ndYdYoPLhWsdutME0Lxsmcf6UFP5Z2ou3_pMjgNbw8,639 +django/contrib/admin/views/main.py,sha256=CzHtJVnFBREIxEv04n2gLKnWKwZDTlpK9B5p6y5Cq5Y,25866 +django/contrib/admin/widgets.py,sha256=ujOuEp7Db12KIEcje7_ry55q_FISyheBF-7E3z8drFg,19637 +django/contrib/admindocs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/admindocs/__pycache__/__init__.cpython-310.pyc,, +django/contrib/admindocs/__pycache__/apps.cpython-310.pyc,, +django/contrib/admindocs/__pycache__/middleware.cpython-310.pyc,, +django/contrib/admindocs/__pycache__/urls.cpython-310.pyc,, +django/contrib/admindocs/__pycache__/utils.cpython-310.pyc,, +django/contrib/admindocs/__pycache__/views.cpython-310.pyc,, +django/contrib/admindocs/apps.py,sha256=bklhU4oaTSmPdr0QzpVeuNT6iG77QM1AgiKKZDX05t4,216 +django/contrib/admindocs/locale/af/LC_MESSAGES/django.mo,sha256=UVln7JyuWsM6Et_syaOcMINSsBRDQFqOrbEBOy94_mE,3063 +django/contrib/admindocs/locale/af/LC_MESSAGES/django.po,sha256=eGuZrP2iI5iAnvalNJ_aCKBbLtjWF-qFV_f8WJwFyYs,5645 +django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo,sha256=MwAJ0TMsgRN4wrwlhlw3gYCfZK5IKDzNPuvjfJS_Eug,7440 +django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po,sha256=KSmZCjSEizBx5a6yN_u0FPqG5QoXsTV9gdJkqWC8xC8,8052 +django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=lW-fKcGwnRtdpJLfVw9i1HiM25TctVK0oA0bGV7yAzU,7465 +django/contrib/admindocs/locale/ar_DZ/LC_MESSAGES/django.po,sha256=c8LOJTCkHd1objwj6Xqh0wF3LwkLJvWg9FIWSWWMI-I,7985 +django/contrib/admindocs/locale/ast/LC_MESSAGES/django.mo,sha256=d4u-2zZXnnueWm9CLSnt4TRWgZk2NMlrA6gaytJ2gdU,715 +django/contrib/admindocs/locale/ast/LC_MESSAGES/django.po,sha256=TUkc-Hm4h1kD0NKyndteW97jH6bWcJMFXUuw2Bd62qo,4578 +django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo,sha256=tuOpw3_db7qJuYYBmlEsi-Zmp8gRVsuxGh23Cb_WQes,6629 +django/contrib/admindocs/locale/az/LC_MESSAGES/django.po,sha256=ayt0aT7rdSJpgu88WSvciCREVhBadKDjQSHgMYwyI-g,7205 +django/contrib/admindocs/locale/be/LC_MESSAGES/django.mo,sha256=VZl0yvgbo0jwQpf-s472jagbUj83A3twnxddQGwGW5c,8163 +django/contrib/admindocs/locale/be/LC_MESSAGES/django.po,sha256=Z8ZtS_t5Tc7iy1p4TTrsKZqiMJl94f1jiTWuv1sep3A,8728 +django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo,sha256=bNNoMFB0_P1qut4txQqHiXGxJa8-sjIZA8bb_jPaaHk,8242 +django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po,sha256=nJMwR6R19pXmf4u6jBwe8Xn9fObSaAzulNeqsm8bszo,8989 +django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo,sha256=NOKVcE8id9G1OctSly4C5lm64CgEF8dohX-Pdyt4kCM,3794 +django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po,sha256=6M7LjIEjvDTjyraxz70On_TIsgqJPLW7omQ0Fz_zyfQ,6266 +django/contrib/admindocs/locale/br/LC_MESSAGES/django.mo,sha256=UsPTado4ZNJM_arSMXyuBGsKN-bCHXQZdFbh0GB3dtg,1571 +django/contrib/admindocs/locale/br/LC_MESSAGES/django.po,sha256=SHOxPSgozJbOkm8u5LQJ9VmL58ZSBmlxfOVw1fAGl2s,5139 +django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo,sha256=clvhu0z3IF5Nt0tZ85hOt4M37pnGEWeIYumE20vLpsI,1730 +django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po,sha256=1-OrVWFqLpeXQFfh7JNjJtvWjVww7iB2s96dcSgLy90,5042 +django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo,sha256=nI2ctIbZVrsaMbJQGIHQCjwqJNTnH3DKxwI2dWR6G_w,6650 +django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po,sha256=hPjkw0bkoUu-yKU8XYE3ji0NG4z5cE1LGonYPJXeze4,7396 +django/contrib/admindocs/locale/ckb/LC_MESSAGES/django.mo,sha256=QisqerDkDuKrctJ10CspniXNDqBnCI2Wo-CKZUZtsCY,8154 +django/contrib/admindocs/locale/ckb/LC_MESSAGES/django.po,sha256=0adJyGnFg3qoD11s9gZbJlY8O0Dd1mpKF8OLQAkHZHE,8727 +django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo,sha256=dJ-3fDenE42f6XZFc-yrfWL1pEAmSGt2j1eWAyy-5OQ,6619 +django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po,sha256=uU4n9PsiI96O0UpJzL-inVzB1Kx7OB_SbLkjrFLuyVA,7227 +django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo,sha256=sYeCCq0CMrFWjT6rKtmFrpC09OEFpYLSI3vu9WtpVTY,5401 +django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po,sha256=GhdikiXtx8Aea459uifQtBjHuTlyUeiKu0_rR_mDKyg,6512 +django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo,sha256=vmsIZeMIVpLkSdJNS0G6alAmBBEtLDBLnOd-P3dSOAs,6446 +django/contrib/admindocs/locale/da/LC_MESSAGES/django.po,sha256=bSoTGPcE7MdRfAtBybZT9jsuww2VDH9t5CssaxSs_GU,7148 +django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo,sha256=ReSz0aH1TKT6AtP13lWoONnwNM2OGo4jK9fXJlo75Hc,6567 +django/contrib/admindocs/locale/de/LC_MESSAGES/django.po,sha256=tVkDIPF_wYb_KaJ7PF9cZyBJoYu6RpznoM9JIk3RYN4,7180 +django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.mo,sha256=K_QuInKk1HrrzQivwJcs_2lc1HreFj7_R7qQh3qMTPY,6807 +django/contrib/admindocs/locale/dsb/LC_MESSAGES/django.po,sha256=flF1D0gfTScuC_RddC9njLe6RrnqnksiRxwODVA9Vqw,7332 +django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo,sha256=1x0sTZwWbGEURyRaSn4ONvTPXHwm7XemNlcun9Nm1QI,8581 +django/contrib/admindocs/locale/el/LC_MESSAGES/django.po,sha256=GebfJfW0QPzAQyBKz1Km9a3saCpAWT7d_Qe2nCBvGn4,9320 +django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/admindocs/locale/en/LC_MESSAGES/django.po,sha256=pEypE71l-Ude2e3XVf0tkBpGx6BSYNqBagWnSYmEbxI,10688 +django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.mo,sha256=BQ54LF9Tx88m-pG_QVz_nm_vqvoy6pVJzL8urSO4l1Q,486 +django/contrib/admindocs/locale/en_AU/LC_MESSAGES/django.po,sha256=ho7s1uKEs9FGooyZBurvSjvFz1gDSX6R4G2ZKpF1c9Q,5070 +django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo,sha256=xKGbswq1kuWCbn4zCgUQUb58fEGlICIOr00oSdCgtU4,1821 +django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po,sha256=No09XHkzYVFBgZqo7bPlJk6QD9heE0oaI3JmnrU_p24,4992 +django/contrib/admindocs/locale/eo/LC_MESSAGES/django.mo,sha256=114OOVg9hP0H0UU2aQngCm0wE7zEEAp7QFMupOuWCfQ,6071 +django/contrib/admindocs/locale/eo/LC_MESSAGES/django.po,sha256=h8P3lmvBaJ8J2xiytReJvI8iGK0gCe-LPK27kWxSNKI,6799 +django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo,sha256=wVt9I5M6DGKZFhPhYuS2yKRGVzSROthx98TFiJvJA80,6682 +django/contrib/admindocs/locale/es/LC_MESSAGES/django.po,sha256=F72OFWbIZXvopNMzy7eIibNKc5EM0jsYgbN4PobD6tc,7602 +django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo,sha256=mZ7OKAmlj2_FOabKsEiWycxiKLSLCPFldponKNxINjs,6658 +django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po,sha256=deaOq0YMCb1B1PHWYUbgUrQsyXFutn4wQ2BAXiyzugA,7257 +django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.mo,sha256=KFjQyWtSxH_kTdSJ-kNUDAFt3qVZI_3Tlpg2pdkvJfs,6476 +django/contrib/admindocs/locale/es_CO/LC_MESSAGES/django.po,sha256=dwrTVjYmueLiVPu2yiJ_fkFF8ZeRntABoVND5H2WIRI,7038 +django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo,sha256=3hZiFFVO8J9cC624LUt4lBweqmpgdksRtvt2TLq5Jqs,1853 +django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po,sha256=gNmx1QTbmyMxP3ftGXGWJH_sVGThiSe_VNKkd7M9jOY,5043 +django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.mo,sha256=sMwJ7t5GqPF496w-PvBYUneZ9uSwmi5jP-sWulhc6BM,6663 +django/contrib/admindocs/locale/es_VE/LC_MESSAGES/django.po,sha256=ZOcE0f95Q6uD9SelK6bQlKtS2c3JX9QxNYCihPdlM5o,7201 +django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo,sha256=JQHVKehV0sxNaBQRqbsN-Of22CMV70bQ9TUId3QDudY,6381 +django/contrib/admindocs/locale/et/LC_MESSAGES/django.po,sha256=qrS3cPEy16hEi1857jvqsmr9zHF9_AkkJUw4mKimg98,7096 +django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo,sha256=WHgK7vGaqjO4MwjBkWz2Y3ABPXCqfnwSGelazRhOiuo,6479 +django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po,sha256=718XgJN7UQcHgE9ku0VyFp7Frs-cvmCTO1o-xS5kpqc,7099 +django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo,sha256=Qrkrb_CHPGymnXBoBq5oeTs4W54R6nLz5hLIWH63EHM,7499 +django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po,sha256=L-rxiKqUmlQgrPTLQRaS50woZWB9JuEamJpgDpLvIXw,8251 +django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo,sha256=SzuPvgeiaBwABvkJbOoTHsbP7juAuyyMWAjENr50gYk,6397 +django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po,sha256=jn4ZMVQ_Gh6I-YLSmBhlyTn5ICP5o3oj7u0VKpV2hnI,6972 +django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo,sha256=dD92eLXIDeI-a_BrxX1G49qRwLS4Vt56bTP9cha5MeE,6755 +django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po,sha256=hiUeHTul4Z3JWmkClGZmD5Xn4a1Tj1A5OLRfKU5Zdmo,7329 +django/contrib/admindocs/locale/fy/LC_MESSAGES/django.mo,sha256=_xVO-FkPPoTla_R0CzktpRuafD9fuIP_G5N-Q08PxNg,476 +django/contrib/admindocs/locale/fy/LC_MESSAGES/django.po,sha256=b3CRH9bSUl_jjb9s51RlvFXp3bmsmuxTfN_MTmIIVNA,5060 +django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo,sha256=2kOgyNWHQaNq-cwsh5YmmqWa8z9WN7HHUEEW85hek4A,6786 +django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po,sha256=PEuuqMz1-aW96Lcy72PsVormIrN522Qd6RxSM1VVMTk,7424 +django/contrib/admindocs/locale/gd/LC_MESSAGES/django.mo,sha256=k5-Ov9BkwYHZ_IvIxQdHKVBdOUN7kWGft1l7w5Scd5o,6941 +django/contrib/admindocs/locale/gd/LC_MESSAGES/django.po,sha256=FyvfRNkSrEZo8x1didB6nFHYD54lZfKSoAGcwJ2wLso,7478 +django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo,sha256=15OYKk17Dlz74RReFrCHP3eHmaxP8VeRE2ylDOeUY8w,6564 +django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po,sha256=mvQmxR4LwDLbCWyIU-xmJEw6oeSY3KFWC1nqnbnuDyc,7197 +django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo,sha256=1_aXtUXx-NISzJmlfprUZ5LieD9BwCcCUQ-DQ_YF-jk,6998 +django/contrib/admindocs/locale/he/LC_MESSAGES/django.po,sha256=aONIl7C_5hgo0agjYleyZAkj4_VPkQVPT0R7wWPhJEs,7589 +django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo,sha256=sZhObIxqrmFu5Y-ZOQC0JGM3ly4IVFr02yqOOOHnDag,2297 +django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po,sha256=X6UfEc6q0BeaxVP_C4priFt8irhh-YGOUUzNQyVnEYY,5506 +django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo,sha256=fMsayjODNoCdbpBAk9GHtIUaGJGFz4sD9qYrguj-BQA,2550 +django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po,sha256=qi2IB-fBkGovlEz2JAQRUNE54MDdf5gjNJWXM-dIG1s,5403 +django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.mo,sha256=4CbZ95VHJUg3UNt-FdzPtUtHJLralgnhadz-evigiFA,6770 +django/contrib/admindocs/locale/hsb/LC_MESSAGES/django.po,sha256=ty8zWmqY160ZpSbt1-_2iY2M4RIL7ksh5-ggQGc_TO8,7298 +django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo,sha256=ATEt9wE2VNQO_NMcwepgxpS7mYXdVD5OySFFPWpnBUA,6634 +django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po,sha256=3XKQrlonyLXXpU8xeS1OLXcKmmE2hiBoMJN-QZ3k82g,7270 +django/contrib/admindocs/locale/ia/LC_MESSAGES/django.mo,sha256=KklX2loobVtA6PqHOZHwF1_A9YeVGlqORinHW09iupI,1860 +django/contrib/admindocs/locale/ia/LC_MESSAGES/django.po,sha256=Z7btOCeARREgdH4CIJlVob_f89r2M9j55IDtTLtgWJU,5028 +django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo,sha256=2HZrdwFeJV4Xk2HIKsxp_rDyBrmxCuRb92HtFtW8MxE,6343 +django/contrib/admindocs/locale/id/LC_MESSAGES/django.po,sha256=O01yt7iDXvEwkebUxUlk-vCrLR26ebuqI51x64uqFl4,7041 +django/contrib/admindocs/locale/io/LC_MESSAGES/django.mo,sha256=5t9Vurrh6hGqKohwsZIoveGeYCsUvRBRMz9M7k9XYY8,464 +django/contrib/admindocs/locale/io/LC_MESSAGES/django.po,sha256=SVZZEmaS1WbXFRlLLGg5bzUe09pXR23TeJtHUbhyl0w,5048 +django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo,sha256=pEr-_MJi4D-WpNyFaQe3tVKVLq_9V-a4eIF18B3Qyko,1828 +django/contrib/admindocs/locale/is/LC_MESSAGES/django.po,sha256=-mD5fFnL6xUqeW4MITzm8Lvx6KXq4C9DGsEM9kDluZ8,5045 +django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo,sha256=AzCkkJ8x-V38XSOdOG2kMSUujcn0mD8TIvdAeNT6Qcw,6453 +django/contrib/admindocs/locale/it/LC_MESSAGES/django.po,sha256=SUsGtCKkCVoj5jaM6z_-JQR8kv8W4Wv_OE26hpOb96s,7171 +django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo,sha256=KoPwCbH9VlKoP_7zTEjOzPsHZ7jVWl2grQRckQmshw4,7358 +django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po,sha256=6ZTqM2qfBS_j5aLH52yJPYW4e4X5MqiQFdqV1fmEQGg,8047 +django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo,sha256=w2cHLI1O3pVt43H-h71cnNcjNNvDC8y9uMYxZ_XDBtg,4446 +django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po,sha256=omKVSzNA3evF5Mk_Ud6utHql-Do7s9xDzCVQGQA0pSg,6800 +django/contrib/admindocs/locale/kab/LC_MESSAGES/django.mo,sha256=XTuWnZOdXhCFXEW4Hp0zFtUtAF0wJHaFpQqoDUTWYGw,1289 +django/contrib/admindocs/locale/kab/LC_MESSAGES/django.po,sha256=lQWewMZncWUvGhpkgU_rtwWHcgAyvhIkrDfjFu1l-d8,4716 +django/contrib/admindocs/locale/kk/LC_MESSAGES/django.mo,sha256=mmhLzn9lo4ff_LmlIW3zZuhE77LoSUfpaMMMi3oyi38,1587 +django/contrib/admindocs/locale/kk/LC_MESSAGES/django.po,sha256=72sxLw-QDSFnsH8kuzeQcV5jx7Hf1xisBmxI8XqSCYw,5090 +django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo,sha256=Fff1K0qzialXE_tLiGM_iO5kh8eAmQhPZ0h-eB9iNOU,1476 +django/contrib/admindocs/locale/km/LC_MESSAGES/django.po,sha256=E_CaaYc4GqOPgPh2t7iuo0Uf4HSQQFWAoxSOCG-uEGU,4998 +django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo,sha256=lisxE1zzW-Spdm7hIzXxDAfS7bM-RdrAG_mQVwz9WMU,1656 +django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po,sha256=u6JnB-mYoYWvLl-2pzKNfeNlT1s6A2I3lRi947R_0yA,5184 +django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo,sha256=nVBVLfXUlGQCeF2foSQ2kksBmR3KbweXdbD6Kyq-PrU,6563 +django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po,sha256=y2YjuXM3p0haXrGpxRtm6I84o75TQaMeT4xbHCg7zOM,7342 +django/contrib/admindocs/locale/ky/LC_MESSAGES/django.mo,sha256=HEJo4CLoIOWpK-MPcTqLhbNMA8Mt3totYN1YbJ_SNn4,7977 +django/contrib/admindocs/locale/ky/LC_MESSAGES/django.po,sha256=VaSXjz8Qlr2EI8f12gtziN7yA7IWsaVoEzL3G6dERXs,8553 +django/contrib/admindocs/locale/lb/LC_MESSAGES/django.mo,sha256=N0hKFuAdDIq5clRKZirGh4_YDLsxi1PSX3DVe_CZe4k,474 +django/contrib/admindocs/locale/lb/LC_MESSAGES/django.po,sha256=B46-wRHMKUMcbvMCdojOCxqIVL5qVEh4Czo20Qgz6oU,5058 +django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo,sha256=KOnpaVeomKJIHcVLrkeRVnaqQHzFdYM_wXZbbqxWs4g,6741 +django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po,sha256=-uzCS8193VCZPyhO8VOi11HijtBG9CWVKStFBZSXfI4,7444 +django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo,sha256=5PAE_peuqlRcc45pm6RsSqnBpG-o8OZpfdt2aasYM2w,6449 +django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po,sha256=_mFvAQT1ZVBuDhnWgKY3bVQUWA8DoEf-HFAEsMfkGuU,7085 +django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo,sha256=8H9IpRASM7O2-Ql1doVgM9c4ybZ2KcfnJr12PpprgP4,8290 +django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po,sha256=Uew7tEljjgmslgfYJOP9JF9ELp6NbhkZG_v50CZgBg8,8929 +django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo,sha256=bm4tYwcaT8XyPcEW1PNZUqHJIds9CAq3qX_T1-iD4k4,6865 +django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po,sha256=yNINX5M7JMTbYnFqQGetKGIXqOjGJtbN2DmIW9BKQ_c,8811 +django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo,sha256=MyPphoXZCl6gPq74TyPBAvbc-aUQdUx5t3cdnj3vn_A,7108 +django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po,sha256=h4GNr_G_lqLCiypMQNaw3ItF8RnHzdLhcrKs6vQVPfE,8058 +django/contrib/admindocs/locale/mr/LC_MESSAGES/django.mo,sha256=LDGC7YRyVBU50W-iH0MuESunlRXrNfNjwjXRCBdfFVg,468 +django/contrib/admindocs/locale/mr/LC_MESSAGES/django.po,sha256=5cUgPltXyS2Z0kIKF5ER8f5DuBhwmAINJQyfHj652d0,5052 +django/contrib/admindocs/locale/ms/LC_MESSAGES/django.mo,sha256=vgoSQlIQeFWaVfJv3YK9_0FOywWwxLhWGICKBdxcqJY,6557 +django/contrib/admindocs/locale/ms/LC_MESSAGES/django.po,sha256=Qy_NjgqwEwLGk4oaHB4Np3dVbPeCK2URdI73S73IZLE,7044 +django/contrib/admindocs/locale/my/LC_MESSAGES/django.mo,sha256=AsdUmou0FjCiML3QOeXMdbHiaSt2GdGMcEKRJFonLOQ,1721 +django/contrib/admindocs/locale/my/LC_MESSAGES/django.po,sha256=c75V-PprKrWzgrHbfrZOpm00U_zZRzxAUr2U_j8MF4w,5189 +django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo,sha256=qlzN0-deW2xekojbHi2w6mYKeBe1Cf1nm8Z5FVrmYtA,6308 +django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po,sha256=a60vtwHJXhjbRAtUIlO0w3XfQcQ0ljwmwFG3WbQ7PNo,6875 +django/contrib/admindocs/locale/ne/LC_MESSAGES/django.mo,sha256=fWPAUZOX9qrDIxGhVVouJCVDWEQLybZ129wGYymuS-c,2571 +django/contrib/admindocs/locale/ne/LC_MESSAGES/django.po,sha256=wb8pCm141YfGSHVW84FnAvsKt5KnKvzNyzGcPr-Wots,5802 +django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo,sha256=1-s_SdVm3kci2yLQhv1q6kt7zF5EdbaneGAr6PJ7dQU,6498 +django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po,sha256=7s4RysNYRSisywqqZOrRR0il530jRlbEFP3kr4Hq2PA,7277 +django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo,sha256=tIOU1WrHkAfxD6JBpdakiMi6pVzzvIg0jun6gii-D08,6299 +django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po,sha256=oekYY3xjjM2sPnHv_ZXxAti1ySPF-HxLrvLLk7Izibk,6824 +django/contrib/admindocs/locale/os/LC_MESSAGES/django.mo,sha256=zSQBgSj4jSu5Km0itNgDtbkb1SbxzRvQeZ5M9sXHI8k,2044 +django/contrib/admindocs/locale/os/LC_MESSAGES/django.po,sha256=hZlMmmqfbGmoiElGbJg7Fp791ZuOpRFrSu09xBXt6z4,5215 +django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo,sha256=yFeO0eZIksXeDhAl3CrnkL1CF7PHz1PII2kIxGA0opQ,1275 +django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po,sha256=DA5LFFLOXHIJIqrrnj9k_rqL-wr63RYX_i-IJFhBuc0,4900 +django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo,sha256=DHxRNP6YK8qocDqSd2DZg7n-wPp2hJSbjNBLFti7U8o,6633 +django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po,sha256=mRjleE2-9r9TfseHWeyjvRwzBZP_t2LMvihq8n_baU8,7575 +django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo,sha256=WcXhSlbGdJgVMvydkPYYee7iOQ9SYdrLkquzgIBhVWU,6566 +django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po,sha256=J98Hxa-ApyzRevBwcAldK9bRYbkn5DFw3Z5P7SMEwx0,7191 +django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo,sha256=L8t589rbg4vs4HArLpgburmMufZ6BTuwxxkv1QUetBA,6590 +django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po,sha256=EG4xELZ8emUIWB78cw8gFeiqTiN9UdAuEaXHyPyNtIE,7538 +django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo,sha256=9K8Sapn6sOg1wtt2mxn7u0cnqPjEHH70qjwM-XMPzNA,6755 +django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po,sha256=b4AsPjWBYHQeThAtLP_TH4pJitwidtoPNkJ7dowUuRg,7476 +django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo,sha256=9pIPv2D0rq29vrBNWZENM_SOdNpaPidxmgT20hWtBis,8434 +django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po,sha256=BTlxkS4C0DdfC9QJCegXwi5ejfG9pMsAdfy6UJzec3s,9175 +django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo,sha256=QR3Yvh6y6qJLr4umB0_HcVRIrqD-o1z3rnDv38hLkCQ,6670 +django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po,sha256=QPTSNtN-7QBUX7G7d67zs5kPHS3tXoi7WCy_y1nhPfQ,7375 +django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo,sha256=FMg_s9ZpeRD42OsSF9bpe8pRQ7wP7-a9WWnaVliqXpU,6508 +django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po,sha256=JWO_WZAwBpXw-4FoB7rkWXGhi9aEVq1tH2fOC69rcgg,7105 +django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo,sha256=XvNDzCc3-Hh5Pz7SHhG8zCT_3dtqGzBLkDqhim4jJpc,6551 +django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po,sha256=0GZvLpxbuYln7GrTsFyzgjIleSw6Z9IRSPgAWWdx6Eo,7165 +django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo,sha256=wQbXQFTFYjeJvUQ4twmF_O2SYkYkigJ1LQj8xdC5Yu4,8154 +django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po,sha256=KT72y37njw6vgAfXOoY41w_Myv5yrzFC1BQVAd_V79s,8778 +django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=3ytn9SeRgnbIC8YjYTcgdNKgNrizzDwwmLQhVwjvNCY,6542 +django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po,sha256=2ojglF82ZPFxdnlICYkwkN_EOLli8QRSCPTbILxug9g,13364 +django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo,sha256=5i9qxo9V7TghSIpKCOw5PpITYYHMP-0NhFivwc-w0yw,6394 +django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po,sha256=WhABV5B-rhBly6ueJPOMsIBjSiw7i1yCZUQsXWE_jV4,7137 +django/contrib/admindocs/locale/sw/LC_MESSAGES/django.mo,sha256=pyJfGL7UdPrJAVlCB3YimXxTjTfEkoZQWX-CSpDkcWc,1808 +django/contrib/admindocs/locale/sw/LC_MESSAGES/django.po,sha256=SIywrLX1UGx4OiPxoxUYelmQ1YaY2LMa3dxynGQpHp8,4929 +django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo,sha256=8SjQ9eGGyaZGhkuDoZTdtYKuqcVyEtWrJuSabvNRUVM,1675 +django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po,sha256=k593yzVqpSQOsdpuF-rdsSLwKQU8S_QFMRpZXww__1A,5194 +django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo,sha256=eAzNpYRy_G1erCcKDAMnJC4809ITRHvJjO3vpyAC_mk,1684 +django/contrib/admindocs/locale/te/LC_MESSAGES/django.po,sha256=oDg_J8JxepFKIe5m6lDKVC4YWQ_gDLibgNyQ3508VOM,5204 +django/contrib/admindocs/locale/tg/LC_MESSAGES/django.mo,sha256=jSMmwS6F_ChDAZDyTZxRa3YuxkXWlO-M16osP2NLRc0,7731 +django/contrib/admindocs/locale/tg/LC_MESSAGES/django.po,sha256=mewOHgRsFydk0d5IY3jy3rOWa6uHdatlSIvFNZFONsc,8441 +django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo,sha256=bHK49r45Q1nX4qv0a0jtDja9swKbDHHJVLa3gM13Cb4,2167 +django/contrib/admindocs/locale/th/LC_MESSAGES/django.po,sha256=_GMgPrD8Zs0lPKQOMlBmVu1I59yXSV42kfkrHzeiehY,5372 +django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo,sha256=L1iBsNGqqfdNkZZmvnnBB-HxogAgngwhanY1FYefveE,6661 +django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po,sha256=D4vmznsY4icyKLXQUgAL4WZL5TOUZYVUSCJ4cvZuFg8,7311 +django/contrib/admindocs/locale/tt/LC_MESSAGES/django.mo,sha256=pQmAQOPbrBVzBqtoQ0dsFWFwC6LxA5mQZ9QPqL6pSFw,1869 +django/contrib/admindocs/locale/tt/LC_MESSAGES/django.po,sha256=NCLv7sSwvEficUOSoMJlHGqjgjYvrvm2V3j1Gkviw80,5181 +django/contrib/admindocs/locale/udm/LC_MESSAGES/django.mo,sha256=hwDLYgadsKrQEPi9HiuMWF6jiiYUSy4y-7PVNJMaNpY,618 +django/contrib/admindocs/locale/udm/LC_MESSAGES/django.po,sha256=29fpfn4p8KxxrBdg4QB0GW_l8genZVV0kYi50zO-qKs,5099 +django/contrib/admindocs/locale/ug/LC_MESSAGES/django.mo,sha256=OIyPz5i48Ab2CVmCe71agW8qMsYMTwTG2E7rJft7P5k,7867 +django/contrib/admindocs/locale/ug/LC_MESSAGES/django.po,sha256=GM6ypRwZ6d6VXM0XVvg9p_334pxhex1yd5-HS8Z1z9U,8380 +django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo,sha256=G-3yCDj2jK7ZTu80YXGJ_ZR1E7FejbLxTFe866G4Pr0,8468 +django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po,sha256=bbWzP-gpbslzbTBc_AO7WBNmtr3CkLOwkSJHI0Z_dTA,9330 +django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo,sha256=VNg9o_7M0Z2LC0n3_-iwF3zYmncRJHaFqqpxuPmMq84,1836 +django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po,sha256=QTg85c4Z13hMN_PnhjaLX3wx6TU4SH4hPTzNBfNVaMU,5148 +django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo,sha256=F6dyo00yeyUND_w1Ocm9SL_MUdXb60QQpmAQPto53IU,1306 +django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po,sha256=JrVKjT848Y1cS4tpH-eRivFNwM-cUs886UEhY2FkTPw,4836 +django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=ngPlxN85wGOMKoo3OK3wUQeikoaxPKqAIsgw2_0ovN4,6075 +django/contrib/admindocs/locale/zh_Hans/LC_MESSAGES/django.po,sha256=TNdJGJCAi0OijBN6w23SwKieZqNqkgNt2qdlPfY-r20,6823 +django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=Tx2MdoDy5aGjAGnDhYrV6mHN-inyqa3mA2zDAYPsQc4,6016 +django/contrib/admindocs/locale/zh_Hant/LC_MESSAGES/django.po,sha256=vhYxKhDRm6BkUKkLFetq1zDZ1-08Xe1xVnbUD0ABQuc,6734 +django/contrib/admindocs/middleware.py,sha256=owqLbigBtxKmhPQmz767KOAkN3nKRIJrwZAUuHRIAQM,1329 +django/contrib/admindocs/templates/admin_doc/bookmarklets.html,sha256=fSQP3eErm6R8yD7c8-KVilViI0vww6dqwkLwaAjgCaY,1282 +django/contrib/admindocs/templates/admin_doc/index.html,sha256=6bmIkahIH8CWMhGEytTHUZ7DtrDmcqhomJe48KbzvZY,1369 +django/contrib/admindocs/templates/admin_doc/missing_docutils.html,sha256=sx3z874_SIWPjKndIzfwYl8bQzEpTYMckA11RFFbqRI,788 +django/contrib/admindocs/templates/admin_doc/model_detail.html,sha256=DM5mTGfs1lEKlclSKMldLDsOoyrqRavqkR57hNM-cKE,1922 +django/contrib/admindocs/templates/admin_doc/model_index.html,sha256=sgwiE4Xxz7kcbk_UhHxgxLXyBh8SMHgHHvBucby3pPc,1358 +django/contrib/admindocs/templates/admin_doc/template_detail.html,sha256=sApk1HNa-n41lMIxRZHGoft9S4PvYedDPTtvHWuSsSc,1035 +django/contrib/admindocs/templates/admin_doc/template_filter_index.html,sha256=U2HBVHXtgCqUp9hLuOMVqCxBbXyYMMgAORG8fziN7uc,1775 +django/contrib/admindocs/templates/admin_doc/template_tag_index.html,sha256=S4U-G05yi1YIlFEv-HG20bDiq4rhdiZCgebhVBzNzdY,1731 +django/contrib/admindocs/templates/admin_doc/view_detail.html,sha256=XmsemLe45BpHDKAroqH7dwlmI9npVu2DZGzELA7trgs,914 +django/contrib/admindocs/templates/admin_doc/view_index.html,sha256=ZLfmxMkVlPYETRFnjLmU3bagve4ZvY1Xzsya1Lntgkw,1734 +django/contrib/admindocs/urls.py,sha256=spPSD6wc_B9eABF4mEWIhPSZ3w6W4fM6ERGepo8NRtY,1309 +django/contrib/admindocs/utils.py,sha256=38lwFUI08_m5OK6d-EUzp90qxysM9Da7lAn-rwcSnwI,7554 +django/contrib/admindocs/views.py,sha256=wziiyS5ZKAt2iLnhlBtzQbHheq4zmJqBl7B0YCoSAS8,18858 +django/contrib/auth/__init__.py,sha256=gq2Ba2T4Z5S7-_Vbo_7GVZ6CZAqawLbuUAMB4y4emgk,9587 +django/contrib/auth/__pycache__/__init__.cpython-310.pyc,, +django/contrib/auth/__pycache__/admin.cpython-310.pyc,, +django/contrib/auth/__pycache__/apps.cpython-310.pyc,, +django/contrib/auth/__pycache__/backends.cpython-310.pyc,, +django/contrib/auth/__pycache__/base_user.cpython-310.pyc,, +django/contrib/auth/__pycache__/checks.cpython-310.pyc,, +django/contrib/auth/__pycache__/context_processors.cpython-310.pyc,, +django/contrib/auth/__pycache__/decorators.cpython-310.pyc,, +django/contrib/auth/__pycache__/forms.cpython-310.pyc,, +django/contrib/auth/__pycache__/hashers.cpython-310.pyc,, +django/contrib/auth/__pycache__/middleware.cpython-310.pyc,, +django/contrib/auth/__pycache__/mixins.cpython-310.pyc,, +django/contrib/auth/__pycache__/models.cpython-310.pyc,, +django/contrib/auth/__pycache__/password_validation.cpython-310.pyc,, +django/contrib/auth/__pycache__/signals.cpython-310.pyc,, +django/contrib/auth/__pycache__/tokens.cpython-310.pyc,, +django/contrib/auth/__pycache__/urls.cpython-310.pyc,, +django/contrib/auth/__pycache__/validators.cpython-310.pyc,, +django/contrib/auth/__pycache__/views.cpython-310.pyc,, +django/contrib/auth/admin.py,sha256=gFrEFlXoSPb276iNUcg73lr2oeTFjAj4bxE43JHWVak,10243 +django/contrib/auth/apps.py,sha256=qpjjFdMH0H3-ialZrRYQ5fnmfCuSh0RiD3bsKzzTEeY,1284 +django/contrib/auth/backends.py,sha256=CimJyPjL4y1hth8WLKg87kJE7WqZYrNRKIZ8qfeaDIM,8535 +django/contrib/auth/base_user.py,sha256=4rB47WSGO4S_W21Tva3JGRq_FYj_cel0Qqqeu5913P0,4919 +django/contrib/auth/checks.py,sha256=yXWvy6kUyj4WfDlkDBtybwEFKuqvNhT9rqHj4FCdTlA,9847 +django/contrib/auth/common-passwords.txt.gz,sha256=MrUGEpphkJZUW9O7s1yYu5g7PnYWd48T5BWySr3CO-c,82262 +django/contrib/auth/context_processors.py,sha256=8BbvdbTVPl8GVgB5-2LTzx6FrGsMzev-E7JMnUgr-rM,1911 +django/contrib/auth/decorators.py,sha256=thqEdZgHN6Sez-O9ki7hUaP839w0QGbpOftxnedTrnk,4800 +django/contrib/auth/forms.py,sha256=L05inb4uSHgqCxneQkLluwhDeCOd3EwGDlTH2s9su7w,20635 +django/contrib/auth/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/auth/handlers/__pycache__/__init__.cpython-310.pyc,, +django/contrib/auth/handlers/__pycache__/modwsgi.cpython-310.pyc,, +django/contrib/auth/handlers/modwsgi.py,sha256=bTXKVMezywsn1KA2MVyDWeHvTNa2KrwIxn2olH7o_5I,1248 +django/contrib/auth/hashers.py,sha256=6P2FN1q8DIJfO1yiGRVlI3WmrgXh6dYmrpvCoZ6E85s,23332 +django/contrib/auth/locale/af/LC_MESSAGES/django.mo,sha256=mVOEfY5dw97Eo1JuCOonKhU1p2Sfhi5QCPkvm_ExbOQ,7514 +django/contrib/auth/locale/af/LC_MESSAGES/django.po,sha256=twHhtsP_x0xV_NbCaTUqF4mBzODjmdjkrawlmn1qwbQ,7739 +django/contrib/auth/locale/ar/LC_MESSAGES/django.mo,sha256=7LhxFfL9y6RAfZ8PU-1lKI2V02LbHxXtB1UAf_vXpuc,10040 +django/contrib/auth/locale/ar/LC_MESSAGES/django.po,sha256=2QIaioY0RedAB0CFKVZLhGoCnhLzgUh84sAR7i6QUnQ,10520 +django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=0UokSPc3WDs_0PozSalfBaq4JFYgF1Rt7b90CKvY5jE,10228 +django/contrib/auth/locale/ar_DZ/LC_MESSAGES/django.po,sha256=GDvm2m1U7NOY5l7FijKGR77DEZt6rYWoSPCxsY5BZ3Y,10574 +django/contrib/auth/locale/ast/LC_MESSAGES/django.mo,sha256=Pt3gYY3j8Eroo4lAEmf-LR6u9U56mpE3vqLhjR4Uq-o,2250 +django/contrib/auth/locale/ast/LC_MESSAGES/django.po,sha256=Kiq4s8d1HnYpo3DQGlgUl3bOkxmgGW8CvGp9AbryRk8,5440 +django/contrib/auth/locale/az/LC_MESSAGES/django.mo,sha256=lSvutBofai-DGk-5quHnAtUdvm8yMDODXE0mHRdXXG8,8758 +django/contrib/auth/locale/az/LC_MESSAGES/django.po,sha256=SCEXf1r7q8P0dXOM36RUM_vlxKzApsfHiN8U-IMUR_Q,9134 +django/contrib/auth/locale/be/LC_MESSAGES/django.mo,sha256=GiAmNOuVSc5mQ9ne8BGNz1BeK2WLZQPzIHTZsJZP6As,11469 +django/contrib/auth/locale/be/LC_MESSAGES/django.po,sha256=shpzgVhb1UC2uoq1IhlYRqm_b_YfGLXqdO-8pZVPBX0,11784 +django/contrib/auth/locale/bg/LC_MESSAGES/django.mo,sha256=qChURIcNm50ePM5nO-Rh44LO-f8ww7lUro0GQRXE_wY,10717 +django/contrib/auth/locale/bg/LC_MESSAGES/django.po,sha256=9Uo19-kzj6jTyvKGyWFk4KdqbXwZOvX4rucEJXRJFGE,11221 +django/contrib/auth/locale/bn/LC_MESSAGES/django.mo,sha256=cJSawQn3rNh2I57zK9vRi0r1xc598Wr26AyHh6D50ZQ,5455 +django/contrib/auth/locale/bn/LC_MESSAGES/django.po,sha256=5Vqd4n9ab98IMev4GHLxpO7f4r9nnhC3Nfx27HQNd8s,7671 +django/contrib/auth/locale/br/LC_MESSAGES/django.mo,sha256=nxLj88BBhT3Hudev1S_BRC8P6Jv7eoR8b6CHGt5eoPo,1436 +django/contrib/auth/locale/br/LC_MESSAGES/django.po,sha256=rFo68wfXMyju633KCAhg0Jcb3GVm3rk4opFQqI89d6Y,5433 +django/contrib/auth/locale/bs/LC_MESSAGES/django.mo,sha256=jDjP1qIs02k6RixY9xy3V7Cr6zi-henR8nDnhqNG18s,3146 +django/contrib/auth/locale/bs/LC_MESSAGES/django.po,sha256=NOICHHU8eFtltH0OBlnasz9TF0uZGZd3hMibRmn158E,5975 +django/contrib/auth/locale/ca/LC_MESSAGES/django.mo,sha256=lqiOLv_LZDLeXbJZYsrWRHzcnwd1vd00tW5Jrh-HHkY,7643 +django/contrib/auth/locale/ca/LC_MESSAGES/django.po,sha256=v-3t7bDTh1835nZnjYh3_HyN4yw4a1HyHpC3-jX79Z0,8216 +django/contrib/auth/locale/ckb/LC_MESSAGES/django.mo,sha256=JCxL4vCR76rQywGn0bbhs0DGltbj-DOF_GTjcWuk2n8,11066 +django/contrib/auth/locale/ckb/LC_MESSAGES/django.po,sha256=SdmYPkVor_sWdOnLkyclkaR52N1IiXUP-0i7xjZs2hk,11254 +django/contrib/auth/locale/cs/LC_MESSAGES/django.mo,sha256=BXWVPB6GeisxXPEq8Pn8wBw9ByZIW-JQAPomzzzx3vo,8888 +django/contrib/auth/locale/cs/LC_MESSAGES/django.po,sha256=Of36j3TXudwYp8to5RpuAoi-_zLcGHIRNkxcDG91AqA,9367 +django/contrib/auth/locale/cy/LC_MESSAGES/django.mo,sha256=lSfCwEVteW4PDaiGKPDxnSnlDUcGMkPfsxIluExZar0,4338 +django/contrib/auth/locale/cy/LC_MESSAGES/django.po,sha256=-LPAKGXNzB77lVHfCRmFlH3SUaLgOXk_YxfC0BomcEs,6353 +django/contrib/auth/locale/da/LC_MESSAGES/django.mo,sha256=VhiC9Xb7XETvGMN3aSnLOE2-VKMKrU3d_WMXjPrgAaE,8509 +django/contrib/auth/locale/da/LC_MESSAGES/django.po,sha256=AKKwK0cjG4SuQh5Rc1LU0b_rZnboXLHgvPreJv1NEVA,8979 +django/contrib/auth/locale/de/LC_MESSAGES/django.mo,sha256=nvwrbU-uvQonGW_UD5zVh7u70csi_5qCehsI-AlTRx4,7607 +django/contrib/auth/locale/de/LC_MESSAGES/django.po,sha256=MJGIuwfkwEs9oiktL4C2uB0XXG6gh2zCI_jr-DcH5Tk,8158 +django/contrib/auth/locale/dsb/LC_MESSAGES/django.mo,sha256=ogesq9DJTHrKXQu4r9oa0CDo7L3WBZLZOG9aXwX7-JQ,9303 +django/contrib/auth/locale/dsb/LC_MESSAGES/django.po,sha256=CmrZ132Xd77O05fxgwqfECh7Za73uHnjoh6z_0U-TBs,9598 +django/contrib/auth/locale/el/LC_MESSAGES/django.mo,sha256=KaP9RLYThwYWLBx0W90HI0zJZ09iNhZ3tk8UVF63n74,10072 +django/contrib/auth/locale/el/LC_MESSAGES/django.po,sha256=O5JsNCUNr1YcNNqMugoM5epN6nC5pgq3E6nKXDh3OY0,10795 +django/contrib/auth/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/auth/locale/en/LC_MESSAGES/django.po,sha256=I3S-zHG_0-rk6CP7Qfv3wPX7U8zJCXfC6yGI_EeYAbY,9064 +django/contrib/auth/locale/en_AU/LC_MESSAGES/django.mo,sha256=7cPKOZX0ZmWCYU2ZwgCp8LwXj7FAdP3lMoI2u4nzgeU,7183 +django/contrib/auth/locale/en_AU/LC_MESSAGES/django.po,sha256=92Q42wfwKhGxDkomv8JlGBHVUdFIc_wvm_LUNBc9Q1k,7467 +django/contrib/auth/locale/en_GB/LC_MESSAGES/django.mo,sha256=p57gDaYVvgEk1x80Hq4Pn2SZbsp9ly3XrJ5Ttlt2yOE,3179 +django/contrib/auth/locale/en_GB/LC_MESSAGES/django.po,sha256=-yDflw5-81VOlyqkmLJN17FRuwDrhYXItFUJwx2aqpE,5787 +django/contrib/auth/locale/eo/LC_MESSAGES/django.mo,sha256=OCEu7qwKb20Cq2UO-dmHjNPXRfDTsQHp9DbyVXCxNMw,7421 +django/contrib/auth/locale/eo/LC_MESSAGES/django.po,sha256=wrvLqKIJycioUFAI7GkCRtDNZ9_OigG_Bf79Dmgpa7c,7868 +django/contrib/auth/locale/es/LC_MESSAGES/django.mo,sha256=c5Z43RTCGGNTYbYlkgLPLM669k5DfWGrqHWDhnB7Dy0,9100 +django/contrib/auth/locale/es/LC_MESSAGES/django.po,sha256=NbzqLfTGlDAQKs-_xBUijLliYyb9FgRA5z4wFnPuo94,9928 +django/contrib/auth/locale/es_AR/LC_MESSAGES/django.mo,sha256=1XY-cVhbpIxWOo3biI56d24QRRJEThPekbzeoz8qcw4,9235 +django/contrib/auth/locale/es_AR/LC_MESSAGES/django.po,sha256=g3YqB09gDHqvCyYhJlErpoOEpPpPzKkIVM_65PaJRWM,9490 +django/contrib/auth/locale/es_CO/LC_MESSAGES/django.mo,sha256=K5VaKTyeV_WoKsLR1x8ZG4VQmk3azj6ZM8Phqjs81So,6529 +django/contrib/auth/locale/es_CO/LC_MESSAGES/django.po,sha256=qJywTaYi7TmeMB1sjwsiwG8GXtxAOaOX0voj7lLVZRw,7703 +django/contrib/auth/locale/es_MX/LC_MESSAGES/django.mo,sha256=dCav1yN5q3bU4PvXZd_NxHQ8cZ9KqQCiNoe4Xi8seoY,7822 +django/contrib/auth/locale/es_MX/LC_MESSAGES/django.po,sha256=_4un21ALfFsFaqpLrkE2_I18iEfJlcAnd_X8YChfdWo,8210 +django/contrib/auth/locale/es_VE/LC_MESSAGES/django.mo,sha256=GwpZytNHtK7Y9dqQKDiVi4SfA1AtPlk824_k7awqrdI,7415 +django/contrib/auth/locale/es_VE/LC_MESSAGES/django.po,sha256=G3mSCo_XGRUfOAKUeP_UNfWVzDPpbQrVYQt8Hv3VZVM,7824 +django/contrib/auth/locale/et/LC_MESSAGES/django.mo,sha256=AeyT2OxqMVsE2qoQz_Q5GTdIIToKgkidn4KA3sTe66s,7216 +django/contrib/auth/locale/et/LC_MESSAGES/django.po,sha256=c9lhLx55iLurFJPybQyEqadVE2hfL_nIpDYazHAkkk4,8370 +django/contrib/auth/locale/eu/LC_MESSAGES/django.mo,sha256=aQfIMZ8FRzP-6OpZCpC2qrd4wbyWiapJOVIWlmyqde0,7181 +django/contrib/auth/locale/eu/LC_MESSAGES/django.po,sha256=AP53NIzFy-aCLnLds70LMg-XW7F_95VSD1ZWCedgkTI,7732 +django/contrib/auth/locale/fa/LC_MESSAGES/django.mo,sha256=yeA_5LAPu7OyQssunvUNlH07bPVCyGLpnvijNenrtHQ,8979 +django/contrib/auth/locale/fa/LC_MESSAGES/django.po,sha256=NChJSgpkXrwAiTrCJzvwlm9mh-LFSD1rR1ESdRQD43o,9513 +django/contrib/auth/locale/fi/LC_MESSAGES/django.mo,sha256=fH_rcYkl9L2dK1G3MjVETXAHunCPhsXQYMTbDcNe-00,7537 +django/contrib/auth/locale/fi/LC_MESSAGES/django.po,sha256=PVwyNBaToxjyHkxy4t4L-kULjJslTe94coSxWNseyn4,7892 +django/contrib/auth/locale/fr/LC_MESSAGES/django.mo,sha256=DUeXSFpP4KknfmgTVyNjdrtAfFGPgvOhcBhdDtvDKcg,9536 +django/contrib/auth/locale/fr/LC_MESSAGES/django.po,sha256=PAV72caHdYNROMLx64MaXJ5u8Tc-s5Vfg0ui0eVlJsE,9894 +django/contrib/auth/locale/fy/LC_MESSAGES/django.mo,sha256=95N-77SHF0AzQEer5LuBKu5n5oWf3pbH6_hQGvDrlP4,476 +django/contrib/auth/locale/fy/LC_MESSAGES/django.po,sha256=8XOzOFx-WerF7whzTie03hgO-dkbUFZneyrpZtat5JY,3704 +django/contrib/auth/locale/ga/LC_MESSAGES/django.mo,sha256=UblN6hhEtT4qBKfH-aMdUKXqOCELTZHp3sCZ8ECxPFM,9476 +django/contrib/auth/locale/ga/LC_MESSAGES/django.po,sha256=X1399hXdhaQLsVQvOr98GYPBWX9l1hY28-SjpT2Ma4Q,9891 +django/contrib/auth/locale/gd/LC_MESSAGES/django.mo,sha256=BLBYJV9Adx1BsXZaM0qZ54mNRAF5s4dxB1TBLtIyMHQ,8743 +django/contrib/auth/locale/gd/LC_MESSAGES/django.po,sha256=rqPK26mtE_U-TG2qyjc5xCR-feI3sGXZR5H6ohNzx4s,9099 +django/contrib/auth/locale/gl/LC_MESSAGES/django.mo,sha256=WTXkzn81WNcJXzDJoPdE3TWDQpKI8WP8GHx1Gq1sHv8,8805 +django/contrib/auth/locale/gl/LC_MESSAGES/django.po,sha256=xl3kbm0rMJ-3UcblwkEmjNLupbUdbNWqXiNNEUYbFYs,9223 +django/contrib/auth/locale/he/LC_MESSAGES/django.mo,sha256=gnP77qGURtGKPgbqmI6JqmX6TExxuCbM6nxZHXwRC58,8716 +django/contrib/auth/locale/he/LC_MESSAGES/django.po,sha256=qlwNJbk638S8p90BiMJyLCHZuReShEJCZTnmbPiJNks,9162 +django/contrib/auth/locale/hi/LC_MESSAGES/django.mo,sha256=7CxV1H37hMbgKIhnAWx-aJmipLRosJe1qg8BH2CABfw,5364 +django/contrib/auth/locale/hi/LC_MESSAGES/django.po,sha256=DU5YM6r1kd5fo40yqFXzEaNh42ezFQFQ-0dmVqkaKQ0,7769 +django/contrib/auth/locale/hr/LC_MESSAGES/django.mo,sha256=GEap3QClwCkuwQZKJE7qOZl93RRxmyyvTTnOTYaAWUo,5894 +django/contrib/auth/locale/hr/LC_MESSAGES/django.po,sha256=ALftoYSaI1U90RNDEvnaFATbw1SL0m8fNXAyl6DkSvo,7355 +django/contrib/auth/locale/hsb/LC_MESSAGES/django.mo,sha256=oJHYLO9gAJHRl_JK1zZYoH17fPpK4E_EynD-HJm09z8,9100 +django/contrib/auth/locale/hsb/LC_MESSAGES/django.po,sha256=-SXqWUuhlp-JLxrAFF7qVpWgkGBU_RlBujdUfII9w14,9386 +django/contrib/auth/locale/hu/LC_MESSAGES/django.mo,sha256=GnQqvpIXhU3emYyLw6MMNbspnvIFzpJsz8Pd-I9jrjg,7714 +django/contrib/auth/locale/hu/LC_MESSAGES/django.po,sha256=zPswCaG-SLvyVa16iRgmPDF6vmd1yxXmTWHbjwhzy0Q,8111 +django/contrib/auth/locale/hy/LC_MESSAGES/django.mo,sha256=zoLe0EqIH8HQYC5XAWd8b8mA2DpbmDSEBsF-WIKX_OQ,8001 +django/contrib/auth/locale/hy/LC_MESSAGES/django.po,sha256=wIWLbz6f0n44ZcjEbZZsgoWTpzXRGND15hudr_DQ3l0,8787 +django/contrib/auth/locale/ia/LC_MESSAGES/django.mo,sha256=OTxh6u0QmsytMrp8IKWBwMnhrYCpyS6qVnF7YBCAWe0,7626 +django/contrib/auth/locale/ia/LC_MESSAGES/django.po,sha256=ue4RXEXweO1-9sZOKkLZsyZe8yxnPWB3JZyyh3qzmlA,7895 +django/contrib/auth/locale/id/LC_MESSAGES/django.mo,sha256=rEtc08pC6VidwzSMWJvZjERYpdTZd6np3-N3YK8uILk,7296 +django/contrib/auth/locale/id/LC_MESSAGES/django.po,sha256=X1pfbeKqnWg-Sw_hycWuXWDqKpdzrDHMt2SVuifAQjQ,7733 +django/contrib/auth/locale/io/LC_MESSAGES/django.mo,sha256=YwAS3aWljAGXWcBhGU_GLVuGJbHJnGY8kUCE89CPdks,464 +django/contrib/auth/locale/io/LC_MESSAGES/django.po,sha256=W36JXuA1HQ72LspixRxeuvxogVxtk7ZBbT0VWI38_oM,3692 +django/contrib/auth/locale/is/LC_MESSAGES/django.mo,sha256=0PBYGqQKJaAG9m2jmJUzcqRVPc16hCe2euECMCrNGgI,7509 +django/contrib/auth/locale/is/LC_MESSAGES/django.po,sha256=o6dQ8WMuPCw4brSzKUU3j8PYhkLBO7XQ3M7RlsIw-VY,7905 +django/contrib/auth/locale/it/LC_MESSAGES/django.mo,sha256=pcBcdOXLqT4shr7Yw5l-pxfYknJyDW6d-jGtkncl24E,7862 +django/contrib/auth/locale/it/LC_MESSAGES/django.po,sha256=f03_tMPiwLF1ZyWfnB_j2vhPR1AXkborGQS2Tbxufzk,8471 +django/contrib/auth/locale/ja/LC_MESSAGES/django.mo,sha256=_iLobe-w4zxA1CQTZ045ZxuUiAsfSM-NL7p9H7C6shU,9229 +django/contrib/auth/locale/ja/LC_MESSAGES/django.po,sha256=JHggNIie2hqLGta327VO0e32U_AL8Ex30bnsS4CXhHY,9564 +django/contrib/auth/locale/ka/LC_MESSAGES/django.mo,sha256=4aJoE1O5jfm5MI7kBqymzb-xOKLDw2mJD5-VhezlMA8,10372 +django/contrib/auth/locale/ka/LC_MESSAGES/django.po,sha256=hvmbD3RS3lOFj2h7A3m23asktwM5zbCdRvs7YvesAkI,11163 +django/contrib/auth/locale/kab/LC_MESSAGES/django.mo,sha256=9qKeQ-gDByoOdSxDpSbLaM4uSP5sIi7qlTn8tJidVDs,2982 +django/contrib/auth/locale/kab/LC_MESSAGES/django.po,sha256=8cq5_rjRXPzTvn1jPo6H_Jcrv6IXkWr8n9fTPvghsS8,5670 +django/contrib/auth/locale/kk/LC_MESSAGES/django.mo,sha256=RJablrXpRba6YVB_8ACSt2q_BjmxrHQZzX6RxMJImlA,3542 +django/contrib/auth/locale/kk/LC_MESSAGES/django.po,sha256=OebwPN9iWBvjDu0P2gQyBbShvIFxFIqCw8DpKuti3xk,6360 +django/contrib/auth/locale/km/LC_MESSAGES/django.mo,sha256=FahcwnCgzEamtWcDEPOiJ4KpXCIHbnSowfSRdRQ2F9U,2609 +django/contrib/auth/locale/km/LC_MESSAGES/django.po,sha256=lvRHHIkClbt_8-9Yn0xY57dMxcS72z4sUkxLb4cohP0,5973 +django/contrib/auth/locale/kn/LC_MESSAGES/django.mo,sha256=u0YygqGJYljBZwI9rm0rRk_DdgaBEMA1etL-Lk-7Mls,4024 +django/contrib/auth/locale/kn/LC_MESSAGES/django.po,sha256=J67MIAas5egVq_FJBNsug3Y7rZ8KakhQt6isyF23HAA,6957 +django/contrib/auth/locale/ko/LC_MESSAGES/django.mo,sha256=8avsa0J96myXPxdFhChPiKpjvMhaQv3EHIjuo6f3jls,7651 +django/contrib/auth/locale/ko/LC_MESSAGES/django.po,sha256=gKhckUZzS1PekOV5Jingxke-3U2dPGRAidkgBbfootg,8422 +django/contrib/auth/locale/ky/LC_MESSAGES/django.mo,sha256=mnBXtpInYxaSNIURJTmx8uBg_PH-NuPN9r54pkQY3q4,8924 +django/contrib/auth/locale/ky/LC_MESSAGES/django.po,sha256=7FeO_Kb2er0S84KnFeXVHO3TgAmEJ0gTQEDHImoxiZ4,9170 +django/contrib/auth/locale/lb/LC_MESSAGES/django.mo,sha256=OFhpMA1ZXhrs5fwZPO5IjubvWDiju4wfwWiV94SFkiA,474 +django/contrib/auth/locale/lb/LC_MESSAGES/django.po,sha256=dOfY9HjTfMQ0nkRYumw_3ZaywbUrTgT-oTXAnrRyfxo,3702 +django/contrib/auth/locale/lt/LC_MESSAGES/django.mo,sha256=-nlZHl7w__TsFUmBb5pQV_XJtKGsi9kzP6CBZXkfM8M,8146 +django/contrib/auth/locale/lt/LC_MESSAGES/django.po,sha256=-rdhB6eroSSemsdZkG1Jl4CruNZc_7dj4m5IVoyRBUQ,8620 +django/contrib/auth/locale/lv/LC_MESSAGES/django.mo,sha256=BRIOgvLPHsfaWGrwYJNGCEKD-erXHTZpI8WNAlVGVBM,8802 +django/contrib/auth/locale/lv/LC_MESSAGES/django.po,sha256=nZJfE5Q4ISl7hsh0MR_vCReE7PGmTJKVYR22cEbHVGE,9322 +django/contrib/auth/locale/mk/LC_MESSAGES/django.mo,sha256=XS9dslnD_YBeD07P8WQkss1gT7GIV-qLiCx4i5_Vd_k,9235 +django/contrib/auth/locale/mk/LC_MESSAGES/django.po,sha256=QOLgcwHub9Uo318P2z6sp69MI8syIIWCcr4VOom9vfs,9799 +django/contrib/auth/locale/ml/LC_MESSAGES/django.mo,sha256=UEaqq7nnGvcZ8vqFicLiuqsuEUhEjd2FpWfyzy2HqdU,12611 +django/contrib/auth/locale/ml/LC_MESSAGES/django.po,sha256=xBROIwJb5h2LmyBLAafZ2tUlPVTAOcMgt-olq5XnPT8,13107 +django/contrib/auth/locale/mn/LC_MESSAGES/django.mo,sha256=hBYT0p3LcvIKKPtIn2NzPk_2di9L8jYrUt9j3TcVvaY,9403 +django/contrib/auth/locale/mn/LC_MESSAGES/django.po,sha256=R3wAEwnefEHZsma8J-XOn4XlLtuWYKDPLwJ99DUYmvE,9913 +django/contrib/auth/locale/mr/LC_MESSAGES/django.mo,sha256=c_W1FsdevGBCJfpcY4MmgSPGUGqFAqWArpXhldn9MA8,10430 +django/contrib/auth/locale/mr/LC_MESSAGES/django.po,sha256=x8RUK6Bymg2o3YDREqEZvaLpw2PIzMbXaQhJqpyGpLA,11068 +django/contrib/auth/locale/ms/LC_MESSAGES/django.mo,sha256=eCAZrzQxsM_pAxr_XQo2fIOsCbj5LjGKpLNCzob2l-I,7654 +django/contrib/auth/locale/ms/LC_MESSAGES/django.po,sha256=FAtyzSGcD1mIhRIg8O_1SHLdisTPGYZK-QUjzgw-wCY,7847 +django/contrib/auth/locale/my/LC_MESSAGES/django.mo,sha256=gYzFJKi15RbphgG1IHbJF3yGz3P2D9vaPoHZpA7LoH8,1026 +django/contrib/auth/locale/my/LC_MESSAGES/django.po,sha256=lH5mrq-MyY8gvrNkH2_20rkjFnbviq23wIUqIjPIgFI,5130 +django/contrib/auth/locale/nb/LC_MESSAGES/django.mo,sha256=vLJ9F73atlexwVRzZJpQjcB9arodHIMCh-z8lP5Ah9w,7023 +django/contrib/auth/locale/nb/LC_MESSAGES/django.po,sha256=c3sTCdzWGZgs94z9dIIpfrFuujBuvWvQ-P0gb1tuqlA,7520 +django/contrib/auth/locale/ne/LC_MESSAGES/django.mo,sha256=pq8dEr1ugF5ldwkCDHOq5sXaXV31InbLHYyXU56U_Ao,7722 +django/contrib/auth/locale/ne/LC_MESSAGES/django.po,sha256=bV-uWvT1ViEejrbRbVTtwC2cZVD2yX-KaESxKBnxeRI,8902 +django/contrib/auth/locale/nl/LC_MESSAGES/django.mo,sha256=mVnVHcT_txoSb49PFTXxGVjtdv6Anmo77Ut7YuXuYU8,8654 +django/contrib/auth/locale/nl/LC_MESSAGES/django.po,sha256=VIN_7kSM-4gJVypjnpuGTvYdtZRHDkpFWtuHnZi1TBQ,9445 +django/contrib/auth/locale/nn/LC_MESSAGES/django.mo,sha256=83HdNOuNQVgJXBZMytPz1jx3wWDy8-e6t_JNEUu6W8w,7147 +django/contrib/auth/locale/nn/LC_MESSAGES/django.po,sha256=4ciwQsZFYSV6CjFqzxxcESAm16huv9XyXvU-nchD-Fs,7363 +django/contrib/auth/locale/os/LC_MESSAGES/django.mo,sha256=DVsYGz-31nofEjZla4YhM5L7qoBnQaYnZ4TBki03AI4,4434 +django/contrib/auth/locale/os/LC_MESSAGES/django.po,sha256=Akc1qelQWRA1DE6xseoK_zsY7SFI8SpiVflsSTUhQLw,6715 +django/contrib/auth/locale/pa/LC_MESSAGES/django.mo,sha256=PeOLukzQ_CZjWBa5FGVyBEysat4Gwv40xGMS29UKRww,3666 +django/contrib/auth/locale/pa/LC_MESSAGES/django.po,sha256=7ts9PUSuvfXGRLpfyVirJLDtsQcsVWFXDepVKUVlmtc,6476 +django/contrib/auth/locale/pl/LC_MESSAGES/django.mo,sha256=NXZZQrnop8eooTdPzfp38tP0EMabV7CfpZgXxhPibyM,9123 +django/contrib/auth/locale/pl/LC_MESSAGES/django.po,sha256=aQho-iU1nlNxHQbCE1kxoz7_qhEHbNNlz4hU3fDl98g,9975 +django/contrib/auth/locale/pt/LC_MESSAGES/django.mo,sha256=wRDb8DfDcvtj6MCrLJ9gxKKF2SlK_QHpqufHfoYaFa8,6953 +django/contrib/auth/locale/pt/LC_MESSAGES/django.po,sha256=suckZxgfaB1G1iXeUI59tc0AsDpdvkLugy52q1qvw9I,7893 +django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.mo,sha256=SbCDXBKvSHkdoVhcfQMXv4U_REmfd_trd6yx1iDUMTE,8790 +django/contrib/auth/locale/pt_BR/LC_MESSAGES/django.po,sha256=CQOyNh0snCEjcdMllEya8aIk3DLo1OJ0xC302hJVnFg,9955 +django/contrib/auth/locale/ro/LC_MESSAGES/django.mo,sha256=GD04tb5R6nEeD6ZMAcZghVhXwr8en1omw0c6BxnyHas,7777 +django/contrib/auth/locale/ro/LC_MESSAGES/django.po,sha256=YfkFuPrMwAR50k6lfOYeBbMosEbvXGWwMBD8B7p_2ZA,8298 +django/contrib/auth/locale/ru/LC_MESSAGES/django.mo,sha256=eCeiUY5awrFu5ih4y-pu8Tvul4vYKmwC0fFi_JXCWNY,11873 +django/contrib/auth/locale/ru/LC_MESSAGES/django.po,sha256=eLgUzuchTermohKhO3WxOHEPdW8IqwqBazgiWDEzkOk,12456 +django/contrib/auth/locale/sk/LC_MESSAGES/django.mo,sha256=FdPkNSXPm8P8iSHY8odyd_m0jFaXLK17SUTodO9FWoA,8862 +django/contrib/auth/locale/sk/LC_MESSAGES/django.po,sha256=K74Uk5HVmd5KRvF87GFL9edBcd0uuHyA8Sv_3qgwMuE,9312 +django/contrib/auth/locale/sl/LC_MESSAGES/django.mo,sha256=_Lx1YcW4tvCpsXXXmcCMhrttpLR4389330tnB1ycCok,7659 +django/contrib/auth/locale/sl/LC_MESSAGES/django.po,sha256=MPEv4Ac5MwcywffmPyLxAzSMLLX1cOdZevPlpIMju28,8136 +django/contrib/auth/locale/sq/LC_MESSAGES/django.mo,sha256=iR5C7Yh5am7z9QLU2jm9V3R9yWawAcu9NbhAvltg_RY,9021 +django/contrib/auth/locale/sq/LC_MESSAGES/django.po,sha256=yWGvT-IIdgXCyJB8dPps02iQDLSS1FVM4yPTckaMFPM,9381 +django/contrib/auth/locale/sr/LC_MESSAGES/django.mo,sha256=70UYT-rE32AZUMPTX2BLVzndmW6PFi9plyuVXV-AmaM,11244 +django/contrib/auth/locale/sr/LC_MESSAGES/django.po,sha256=V4DApTaiWBJmF-a5caRw_F5HZP34kV-N3X7U5IgHQxA,11554 +django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=ErH27vBYfkVl7T9TtnaWTxVGdGSrbIC3cflXko3QIbA,8794 +django/contrib/auth/locale/sr_Latn/LC_MESSAGES/django.po,sha256=bNkHPHLgxmKe5biIdPN_Tgo6q7-u7hJaY0Jk36TU8a0,12715 +django/contrib/auth/locale/sv/LC_MESSAGES/django.mo,sha256=Hxy7f19YQMmOTq9YywhUd5p6Y8Wlfu55bXKw-SElw3I,8542 +django/contrib/auth/locale/sv/LC_MESSAGES/django.po,sha256=c_MyD3bQV8NrBYNDP1fvRoGsjXMZl6uPr55n-r5nmUg,9250 +django/contrib/auth/locale/sw/LC_MESSAGES/django.mo,sha256=I_lEsKuMGm07X1vM3-ReGDx2j09PGLkWcG0onC8q1uQ,5029 +django/contrib/auth/locale/sw/LC_MESSAGES/django.po,sha256=TiZS5mh0oN0e6dFEdh-FK81Vk-tdv35ngJ-EbM1yX80,6455 +django/contrib/auth/locale/ta/LC_MESSAGES/django.mo,sha256=T1t5CKEb8hIumvbOtai-z4LKj2et8sX-PgBMd0B3zuA,2679 +django/contrib/auth/locale/ta/LC_MESSAGES/django.po,sha256=X8UDNmk02X9q1leNV1qWWwPNakhvNd45mCKkQ8EpZQQ,6069 +django/contrib/auth/locale/te/LC_MESSAGES/django.mo,sha256=i9hG4thA0P-Hc-S2oX7GufWFDO4Y_LF4RcdQ22cbLyE,2955 +django/contrib/auth/locale/te/LC_MESSAGES/django.po,sha256=txND8Izv2oEjSlcsx3q6l5fEUqsS-zv-sjVVILB1Bmc,6267 +django/contrib/auth/locale/tg/LC_MESSAGES/django.mo,sha256=MwdyYwC4ILX4MFsqCy46NNfPKLbW1GzRhFxMV0uIbLI,7932 +django/contrib/auth/locale/tg/LC_MESSAGES/django.po,sha256=miOPNThjHZODwjXMbON8PTMQhaCGJ0Gy6FZr6Jcj4J8,8938 +django/contrib/auth/locale/th/LC_MESSAGES/django.mo,sha256=zRpZ2xM5JEQoHtfXm2_XYdhe2FtaqH-hULJadLJ1MHU,6013 +django/contrib/auth/locale/th/LC_MESSAGES/django.po,sha256=Yhh_AQS_aM_9f_yHNNSu_3THbrU-gOoMpfiDKhkaSHo,7914 +django/contrib/auth/locale/tk/LC_MESSAGES/django.mo,sha256=5Rl2GMYL11RMSyro83E2oHNaehHjjGJKAJmp0swjV-0,7467 +django/contrib/auth/locale/tk/LC_MESSAGES/django.po,sha256=HAcou6t1zkXVrzyau7gr4i_H0DYpT5HOh9AxV-tnKD0,7763 +django/contrib/auth/locale/tr/LC_MESSAGES/django.mo,sha256=1qo1gGcZFu3rZESoCGfZX97g8j50qLd8AKDhKvxCOjM,8662 +django/contrib/auth/locale/tr/LC_MESSAGES/django.po,sha256=0-q_75Eibqzcew9-t30cueOuPBpekepDi8edFlzzAcA,9236 +django/contrib/auth/locale/tt/LC_MESSAGES/django.mo,sha256=g4pTk8QLQFCOkU29RZvR1wOd1hkOZe_o5GV9Cg5u8N4,1371 +django/contrib/auth/locale/tt/LC_MESSAGES/django.po,sha256=owkJ7iPT-zJYkuKLykfWsw8j7O8hbgzVTOD0DVv956E,5222 +django/contrib/auth/locale/udm/LC_MESSAGES/django.mo,sha256=zey19UQmS79AJFxHGrOziExPDDpJ1AbUegbCRm0x0hM,462 +django/contrib/auth/locale/udm/LC_MESSAGES/django.po,sha256=gLVgaMGg0GA3Tey1_nWIjV1lnM7czLC0XR9NFBgL2Zk,3690 +django/contrib/auth/locale/ug/LC_MESSAGES/django.mo,sha256=XFiEQj2PPtLCPVa1Ecm-yM-G_vTSe_QIY0zkmxWTY5k,10714 +django/contrib/auth/locale/ug/LC_MESSAGES/django.po,sha256=kLIort7Rfnu4S95YXZ10UKX7G8BB5vI6iF6DQrSSizY,10972 +django/contrib/auth/locale/uk/LC_MESSAGES/django.mo,sha256=hjA-VzGMy8ReYSjuELwK3WEliLLjGsi0iRadzoX8UyU,10146 +django/contrib/auth/locale/uk/LC_MESSAGES/django.po,sha256=8R2bP3QC6jhcz_XSpK-GK1OPTCCb7PN6bz-1ZRX37fs,10850 +django/contrib/auth/locale/ur/LC_MESSAGES/django.mo,sha256=rippTNHoh49W19c4HDUF8G5Yo3SknL3C87Afu8YXxzA,698 +django/contrib/auth/locale/ur/LC_MESSAGES/django.po,sha256=gwSd8noEwbcvDE1Q4ZsrftvoWMwhw1J15gvdtK6E9ns,4925 +django/contrib/auth/locale/uz/LC_MESSAGES/django.mo,sha256=bDkhpvduocjekq6eZiuEfWJqnIt5hQmxxoIMhLQWzqM,2549 +django/contrib/auth/locale/uz/LC_MESSAGES/django.po,sha256=tPp8tRZwSMQCQ9AyAeUDtnRfmOk54UQMwok3HH8VNSQ,5742 +django/contrib/auth/locale/vi/LC_MESSAGES/django.mo,sha256=eBMTwnpRWRj8SZVZ1tN592Re_8CPyJzuF4Vtg9IMmFw,7892 +django/contrib/auth/locale/vi/LC_MESSAGES/django.po,sha256=mOr5WgFpwztdW-pEZ4O80MGlltYQyL2cAMhz6-Esfo0,8246 +django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=buDfU6thF7o39eMCQadRxNKHprr-41PP-Qjdcp-a2m4,7741 +django/contrib/auth/locale/zh_Hans/LC_MESSAGES/django.po,sha256=qNsSA2WWmC9jrg6ABL9jVG3u95qq4ztnML4Nrh3Gugo,8507 +django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=zSv5dAoJH39_y0rvB8TurVwgP3OnEozuOmtoImu5gzA,7683 +django/contrib/auth/locale/zh_Hant/LC_MESSAGES/django.po,sha256=XGPQJfi8A0wHVTkEuIZa6DPr0wLlZr06pMQeAuN12jc,8114 +django/contrib/auth/management/__init__.py,sha256=eeT2I5fsnE23dtfi7UX2ZhUMJ4EeFaGBpZUYmzmuqEY,5391 +django/contrib/auth/management/__pycache__/__init__.cpython-310.pyc,, +django/contrib/auth/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/auth/management/commands/__pycache__/__init__.cpython-310.pyc,, +django/contrib/auth/management/commands/__pycache__/changepassword.cpython-310.pyc,, +django/contrib/auth/management/commands/__pycache__/createsuperuser.cpython-310.pyc,, +django/contrib/auth/management/commands/changepassword.py,sha256=H9onbQvVwzILiRK6Cg96qGrLi8_kdjoxBVMvupX18eI,2686 +django/contrib/auth/management/commands/createsuperuser.py,sha256=cSl8FeoXYBw5DUjtnHRYmybsYIx6WztUkYjgx4ZO1XI,13576 +django/contrib/auth/middleware.py,sha256=0u5YALdQ3V8uD4VMK1Bep5N00sRNn659mKX3djmi0HA,7726 +django/contrib/auth/migrations/0001_initial.py,sha256=hFz_MZYGMy9J7yDOFl0aF-UixCbF5W12FhM-nk6rpe8,7281 +django/contrib/auth/migrations/0002_alter_permission_name_max_length.py,sha256=_q-X4Oj30Ui-w9ubqyNJxeFYiBF8H_KCne_2PvnhbP8,346 +django/contrib/auth/migrations/0003_alter_user_email_max_length.py,sha256=nVZXtNuYctwmwtY0wvWRGj1pqx2FUq9MbWM7xAAd-r8,418 +django/contrib/auth/migrations/0004_alter_user_username_opts.py,sha256=lTjbNCyam-xMoSsxN_uAdyxOpK-4YehkeilisepYNEo,880 +django/contrib/auth/migrations/0005_alter_user_last_login_null.py,sha256=efYKNdwAD91Ce8BchSM65bnEraB4_waI_J94YEv36u4,410 +django/contrib/auth/migrations/0006_require_contenttypes_0002.py,sha256=AMsW40BfFLYtvv-hXGjJAwKR5N3VE9czZIukYNbF54E,369 +django/contrib/auth/migrations/0007_alter_validators_add_error_messages.py,sha256=EV24fcMnUw-14ZZLo9A_l0ZJL5BgBAaUe-OfVPbMBC8,802 +django/contrib/auth/migrations/0008_alter_user_username_max_length.py,sha256=AoV_ZffWSBR6XRJZayAKg-KRRTkdP5hs64SzuGWiw1E,814 +django/contrib/auth/migrations/0009_alter_user_last_name_max_length.py,sha256=GaiVAOfxCKc5famxczGB-SEF91hmOzaFtg9cLaOE124,415 +django/contrib/auth/migrations/0010_alter_group_name_max_length.py,sha256=CWPtZJisCzqEMLbKNMG0pLHV9VtD09uQLxWgP_dLFM0,378 +django/contrib/auth/migrations/0011_update_proxy_permissions.py,sha256=haXd5wjcS2ER4bxxznI-z7p7H4rt7P0TCQD_d4J2VDY,2860 +django/contrib/auth/migrations/0012_alter_user_first_name_max_length.py,sha256=bO-8n4CQN2P_hJKlN6IoNu9p8iJ-GdQCUJuAmdK67LA,411 +django/contrib/auth/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/auth/migrations/__pycache__/0001_initial.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0002_alter_permission_name_max_length.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0003_alter_user_email_max_length.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0004_alter_user_username_opts.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0005_alter_user_last_login_null.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0006_require_contenttypes_0002.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0007_alter_validators_add_error_messages.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0008_alter_user_username_max_length.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0009_alter_user_last_name_max_length.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0010_alter_group_name_max_length.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0011_update_proxy_permissions.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/0012_alter_user_first_name_max_length.cpython-310.pyc,, +django/contrib/auth/migrations/__pycache__/__init__.cpython-310.pyc,, +django/contrib/auth/mixins.py,sha256=rHq9HsX4W8lKtfXsazxM3chhTFLqd3eKI-OVKpbeLjQ,4652 +django/contrib/auth/models.py,sha256=Ye2nx9-YkJI9iaE9jNF74y2N1zvJlwdtrWD-f_zy-ac,16508 +django/contrib/auth/password_validation.py,sha256=bcI_IpJGik69i5evI7ywa9bEPFRSkPTLJZ8Yf1y4mIE,9358 +django/contrib/auth/signals.py,sha256=BFks70O0Y8s6p1fr8SCD4-yk2kjucv7HwTcdRUzVDFM,118 +django/contrib/auth/templates/auth/widgets/read_only_password_hash.html,sha256=xBoBu4pWrFdMbEzkx_5hgVqBrqtrY3YwP3ay6AmXXUo,320 +django/contrib/auth/templates/registration/password_reset_subject.txt,sha256=-TZcy_r0vArBgdPK7feeUY6mr9EkYwy7esQ62_onbBk,132 +django/contrib/auth/tokens.py,sha256=ljqQWO0dAkd45-bBJ6W85oZZU9pEjzNh3VbZfeANwxQ,4328 +django/contrib/auth/urls.py,sha256=Uh8DrSqpJXDA5a17Br9fMmIbEcgLkxdN9FvCRg-vxyg,1185 +django/contrib/auth/validators.py,sha256=VO7MyackTaTiK8OjEm7YyLtsjKrteVjdzPbNZki0irU,722 +django/contrib/auth/views.py,sha256=iZgi5xK8K277BdSj2NIyC_41f1AlC89Ex7vpjZJ6fQ4,14084 +django/contrib/contenttypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/contenttypes/__pycache__/__init__.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/admin.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/apps.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/checks.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/fields.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/forms.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/models.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/prefetch.cpython-310.pyc,, +django/contrib/contenttypes/__pycache__/views.cpython-310.pyc,, +django/contrib/contenttypes/admin.py,sha256=a0KrlT8k2aPIKn54fNwCDTaAVdVr1fLY1BDz_FrE3ts,5200 +django/contrib/contenttypes/apps.py,sha256=1Q1mWjPvfYU7EaO50JvsWuDg_3uK8DoCwpvdIdT7iKY,846 +django/contrib/contenttypes/checks.py,sha256=KKB-4FOfPO60TM-uxqK8m9sIXzB3CRx7Imr-jaauM_U,1268 +django/contrib/contenttypes/fields.py,sha256=IKEJyMOlw5wkh0kFggXDml0M3nix_RbTQy8sLg8Lb4k,31144 +django/contrib/contenttypes/forms.py,sha256=zETkgsUcxavK9D78Cy27cwRs1LaGNKTiJfgy2vxYqjg,3944 +django/contrib/contenttypes/locale/af/LC_MESSAGES/django.mo,sha256=93nlniPFfVcxfBCs_PsLtMKrJ2BqpcofPRNYYTTlels,1070 +django/contrib/contenttypes/locale/af/LC_MESSAGES/django.po,sha256=SY04sW55-xpO_qBjv8pHoN7eqB2C5q_9CxQguMz7Q94,1244 +django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.mo,sha256=2t3y_6wxi0khsYi6s9ZyJwjRB8bnRT1PKvazWOKhJcQ,1271 +django/contrib/contenttypes/locale/ar/LC_MESSAGES/django.po,sha256=t6M3XYQLotNMFCjzB8aWFXnlRI8fU744YZvAoFdScQY,1634 +django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=upFxoSvOvdmqCvC5irRV_8yYpFidanHfRk6i3tPrFAc,1233 +django/contrib/contenttypes/locale/ar_DZ/LC_MESSAGES/django.po,sha256=jUg-4BVi0arx5v-osaUDAfM6cQgaBh7mE8Mr8aVTp5A,1447 +django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.mo,sha256=y88CPGGbwTVRmZYIipCNIWkn4OuzuxEk2QCYsBhc7RY,643 +django/contrib/contenttypes/locale/ast/LC_MESSAGES/django.po,sha256=H-qMo5ikva84ycnlmBT4XXEWhzMIw-r7J_zuqxo3wu4,1088 +django/contrib/contenttypes/locale/az/LC_MESSAGES/django.mo,sha256=eHIU-L0mRAlCpQaQzrShguFlYg5llOv89KEpj14p6-8,1058 +django/contrib/contenttypes/locale/az/LC_MESSAGES/django.po,sha256=h56r0_NK7YccHKrfBWUirSpkIBf4ckXyq1F8-YP1rvs,1375 +django/contrib/contenttypes/locale/be/LC_MESSAGES/django.mo,sha256=Kp1TpXX1v0IgGp9HZxleXJ6y5ZvMZ6AqJrSIVcDs7xA,1353 +django/contrib/contenttypes/locale/be/LC_MESSAGES/django.po,sha256=Oy5QXZBmBM_OYLT5OeXJQzTBCHXBp8NVMYuKmr_TUm0,1615 +django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.mo,sha256=IFghXuYj0yxP5j-LfRsNJXlyS2b2dUNJXD01uhUqxLg,1225 +django/contrib/contenttypes/locale/bg/LC_MESSAGES/django.po,sha256=y-OpKdDHxHDYATSmi8DAUXuhpIwgujKZUe48G8So8AU,1613 +django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.mo,sha256=2Z1GL6c1ukKQCMcls7R0_n4eNdH3YOXZSR8nCct7SLI,1201 +django/contrib/contenttypes/locale/bn/LC_MESSAGES/django.po,sha256=PLjnppx0FxfGBQMuWVjo0N4sW2QYc2DAEMK6ziGWUc8,1491 +django/contrib/contenttypes/locale/br/LC_MESSAGES/django.mo,sha256=kAlOemlwBvCdktgYoV-4NpC7XFDaIue_XN7GJYzDu88,1419 +django/contrib/contenttypes/locale/br/LC_MESSAGES/django.po,sha256=BQmHVQqOc6xJWJLeAo49rl_Ogfv-lFtx18mj82jT_to,1613 +django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.mo,sha256=klj9n7AKBkTf7pIa9m9b-itsy4UlbYPnHiuvSLcFZXY,700 +django/contrib/contenttypes/locale/bs/LC_MESSAGES/django.po,sha256=pmJaMBLWbYtYFFXYBvPEvwXkTPdjQDv2WkFI5jNGmTI,1151 +django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.mo,sha256=uYq1BXdw1AXjnLusUQfN7ox1ld6siiy41C8yKVTry7Q,1095 +django/contrib/contenttypes/locale/ca/LC_MESSAGES/django.po,sha256=-dsOzvzVzEPVvA9lYsIP-782BbtJxGRo-OHtS3fIjmU,1403 +django/contrib/contenttypes/locale/ckb/LC_MESSAGES/django.mo,sha256=_dJ-2B3tupoUHRS7HjC-EIlghIYLWebwsy4IvEXI13w,1213 +django/contrib/contenttypes/locale/ckb/LC_MESSAGES/django.po,sha256=SrQwgQTltnR7OExi6sP5JsnEOg6qDzd8dSPXjX92B-M,1419 +django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.mo,sha256=QexBQDuGdMFhVBtA9XWUs2geFBROcxyzdU_IBUGQ7x4,1108 +django/contrib/contenttypes/locale/cs/LC_MESSAGES/django.po,sha256=8pdPwZmpGOeSZjILGLZEAzqvmmV69ogpkh0c3tukT2g,1410 +django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.mo,sha256=2QyCWeXFyymoFu0Jz1iVFgOIdLtt4N1rCZATZAwiH-8,1159 +django/contrib/contenttypes/locale/cy/LC_MESSAGES/django.po,sha256=ZWDxQTHJcw1UYav1C3MX08wCFrSeJNNI2mKjzRVd6H0,1385 +django/contrib/contenttypes/locale/da/LC_MESSAGES/django.mo,sha256=EyancRrTWxM6KTpLq65gIQB0sO_PLtVr1ESN2v1pSNU,1038 +django/contrib/contenttypes/locale/da/LC_MESSAGES/django.po,sha256=J09u3IjLgv4g77Kea_WQAhevHb8DskGU-nVxyucYf_0,1349 +django/contrib/contenttypes/locale/de/LC_MESSAGES/django.mo,sha256=MGUZ4Gw8rSFjBO2OfFX9ooGGpJYwAapgNkc-GdBMXa0,1055 +django/contrib/contenttypes/locale/de/LC_MESSAGES/django.po,sha256=T5ucSqa6VyfUcoN6nFWBtjUkrSrz7wxr8t0NGTBrWow,1308 +django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.mo,sha256=QpdSZObmfb-DQZb3Oh6I1bFRnaPorXMznNZMyVIM7Hc,1132 +django/contrib/contenttypes/locale/dsb/LC_MESSAGES/django.po,sha256=_tNajamEnnf9FEjI-XBRraKjJVilwvpv2TBf9PAzPxw,1355 +django/contrib/contenttypes/locale/el/LC_MESSAGES/django.mo,sha256=1ySEbSEzhH1lDjHQK9Kv59PMA3ZPdqY8EJe6xEQejIM,1286 +django/contrib/contenttypes/locale/el/LC_MESSAGES/django.po,sha256=8rlMKE5SCLTtm1myjLFBtbEIFyuRmSrL9HS2PA7gneQ,1643 +django/contrib/contenttypes/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po,sha256=BRgOISCCJb4TU0dNxG4eeQJFe-aIe7U3GKLPip03d_Q,1110 +django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTndJxA-F1IE_nMUOtf1sRr7Kq2s_8yjgKk6mkWkVu4,486 +django/contrib/contenttypes/locale/en_AU/LC_MESSAGES/django.po,sha256=wmxyIJtz628AbsxgkB-MjdImcIJWhcW7NV3tWbDpedg,1001 +django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.mo,sha256=_uM-jg43W7Pz8RQhMcR_o15wRkDaYD8aRcl2_NFGoNs,1053 +django/contrib/contenttypes/locale/en_GB/LC_MESSAGES/django.po,sha256=SyzwSvqAgKF8BEhXYh4598GYP583OK2GUXH1lc4iDMk,1298 +django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.mo,sha256=4EgHUHPb4TuK2DKf0dWOf7rNzJNsyT8CG39SQixI0oM,1072 +django/contrib/contenttypes/locale/eo/LC_MESSAGES/django.po,sha256=gbxNuagxW01xLd3DY0Lc5UNNSlw1nEiBExzcElrB61E,1350 +django/contrib/contenttypes/locale/es/LC_MESSAGES/django.mo,sha256=KzgypFDwIlVzr_h9Dq2X8dXu3XnsbdSaHwJKJWZ6qc8,1096 +django/contrib/contenttypes/locale/es/LC_MESSAGES/django.po,sha256=Dpn9dTvdy87bVf3It8pZFOdEEKnO91bDeYyY1YujkIA,1456 +django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.mo,sha256=WkHABVDmtKidPyo6zaYGVGrgXpe6tZ69EkxaIBu6mtg,1084 +django/contrib/contenttypes/locale/es_AR/LC_MESSAGES/django.po,sha256=yVSu_fJSKwS4zTlRud9iDochIaY0zOPILF59biVfkeY,1337 +django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.mo,sha256=aACo1rOrgs_BYK3AWzXEljCdAc4bC3BXpyXrwE4lzAs,1158 +django/contrib/contenttypes/locale/es_CO/LC_MESSAGES/django.po,sha256=vemhoL-sESessGmIlHoRvtWICqF2aO05WvcGesUZBRM,1338 +django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.mo,sha256=vD9rSUAZC_rgkwiOOsrrra07Gnx7yEpNHI96tr8xD3U,840 +django/contrib/contenttypes/locale/es_MX/LC_MESSAGES/django.po,sha256=tLgjAi9Z1kZloJFVQuUdAvyiJy1J-5QHfoWmxbqQZCc,1237 +django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.mo,sha256=TVGDydYVg_jGfnYghk_cUFjCCtpGchuoTB4Vf0XJPYk,1152 +django/contrib/contenttypes/locale/es_VE/LC_MESSAGES/django.po,sha256=vJW37vuKYb_KpXBPmoNSqtNstFgCDlKmw-8iOoSCenU,1342 +django/contrib/contenttypes/locale/et/LC_MESSAGES/django.mo,sha256=TE84lZl6EP54-pgmv275jiTOW0vIsnsGU97qmtxMEVg,1028 +django/contrib/contenttypes/locale/et/LC_MESSAGES/django.po,sha256=KO9fhmRCx25VeHNDGXVNhoFx3VFH-6PSLVXZJ6ohOSA,1368 +django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.mo,sha256=K0f1cXEhfg_djPzgCL9wC0iHGWF_JGIhWGFL0Y970g0,1077 +django/contrib/contenttypes/locale/eu/LC_MESSAGES/django.po,sha256=sSuVV0o8MeWN6BxlaeKcjKA3h4H29fCo1kKEtkczEp4,1344 +django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.mo,sha256=hW3A3_9b-NlLS4u6qDnPS1dmNdn1UJCt-nihXvnXywI,1130 +django/contrib/contenttypes/locale/fa/LC_MESSAGES/django.po,sha256=TPiYsGGN-j-VD--Rentx1p-IcrNJYoYxrxDO_5xeZHI,1471 +django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.mo,sha256=dWar3g1rJAkUG1xRLlmGkH63Fy_h2YqzhMVv0Z25aWc,1036 +django/contrib/contenttypes/locale/fi/LC_MESSAGES/django.po,sha256=yALWMFU8-gFD2G0NdWqIDIenrAMUY4VCW1oi8TJXFAc,1325 +django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.mo,sha256=CTOu_JOAQeC72VX5z9cg8Bn3HtZsdgbtjA7XKcy681o,1078 +django/contrib/contenttypes/locale/fr/LC_MESSAGES/django.po,sha256=6LArEWoBpdaJa7UPcyv4HJKD3YoKUxrwGQGd16bi9DM,1379 +django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/contenttypes/locale/fy/LC_MESSAGES/django.po,sha256=SB07aEGG7n4oX_5rqHB6OnjpK_K0KwFM7YxaWYNpB_4,991 +django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.mo,sha256=7E4WYsYrAh_NhlJva_R0dYG0uX9pTKkYdKRq5seoWAA,1081 +django/contrib/contenttypes/locale/ga/LC_MESSAGES/django.po,sha256=3GcPCINXueCiHWnWJACHrkhiMB07D-36ZkuAWkEBSlo,1425 +django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.mo,sha256=dQz7j45qlY3M1rL2fCVdPnuHMUdUcJ0K6cKgRD7Js2w,1154 +django/contrib/contenttypes/locale/gd/LC_MESSAGES/django.po,sha256=_hwx9XqeX5QYRFtDpEYkChswn8WMdYTQlbzL1LjREbY,1368 +django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.mo,sha256=OS8R8sck0Q__XBw3M9brT4jOHmXYUHH71zU2a0mY0vQ,1080 +django/contrib/contenttypes/locale/gl/LC_MESSAGES/django.po,sha256=i-kmfgIuDtreavYL3mCc_BSRi-GmTklAsqE4AhP3wgk,1417 +django/contrib/contenttypes/locale/he/LC_MESSAGES/django.mo,sha256=oaxWykyc3N63WpxyHPI5CyhCTBqhM5-2Sasp_DNm1xc,1219 +django/contrib/contenttypes/locale/he/LC_MESSAGES/django.po,sha256=wCm08UMCiCa6y1-5E-7bEz-8Kd0oMRMwgzoEJjMwFyw,1486 +django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.mo,sha256=KAZuQMKOvIPj3a7GrNJE3yhT70O2abCEF2GOsbwTE5A,1321 +django/contrib/contenttypes/locale/hi/LC_MESSAGES/django.po,sha256=PcsNgu2YmT0biklhwOF_nSvoGTvWVKw2IsBxIwSVAtI,1577 +django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.mo,sha256=DbOUA8ks3phsEwQvethkwZ9-ymrd36aQ6mP7OnGdpjU,1167 +django/contrib/contenttypes/locale/hr/LC_MESSAGES/django.po,sha256=722KxvayO6YXByAmO4gfsfzyVbT-HqqrLYQsr02KDc8,1445 +django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.mo,sha256=tPtv_lIzCPIUjGkAYalnNIUxVUQFE3MShhVXTnfVx3Q,1106 +django/contrib/contenttypes/locale/hsb/LC_MESSAGES/django.po,sha256=rbI3G8ARG7DF7uEe82SYCfotBnKTRJJ641bGhjdptTQ,1329 +django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.mo,sha256=2nsylOwBIDOnkUjE2GYU-JRvgs_zxent7q3_PuscdXk,1102 +django/contrib/contenttypes/locale/hu/LC_MESSAGES/django.po,sha256=Dzcf94ZSvJtyNW9EUKpmyNJ1uZbXPvc7dIxCccZrDYc,1427 +django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.mo,sha256=hKOErB5dzj44ThQ1_nZHak2-aXZlwMoxYcDWmPb3Xo8,1290 +django/contrib/contenttypes/locale/hy/LC_MESSAGES/django.po,sha256=UeGzaghsEt9Lt5DsEzRb9KCbuphWUQwLayt4AN194ao,1421 +django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.mo,sha256=9B0XhxH0v3FvkEvS5MOHHqVbgV6KQITPrjzx1Sn76GA,1105 +django/contrib/contenttypes/locale/ia/LC_MESSAGES/django.po,sha256=NX8jpTaIhtVbVlwEsOl5aufZ80ljHZZwqtsVVozQb4M,1318 +django/contrib/contenttypes/locale/id/LC_MESSAGES/django.mo,sha256=4-6RBAvrtA1PY3LNxMrgwzBLZE0ZKwWaXa7SmtmAIyk,1031 +django/contrib/contenttypes/locale/id/LC_MESSAGES/django.po,sha256=xdxEOgfta1kaXyQAngmmbL8wDQzJU6boC9HdbmoM1iI,1424 +django/contrib/contenttypes/locale/io/LC_MESSAGES/django.mo,sha256=3SSRXx4tYiMUc00LZ9kGHuvTgaWpsICEf5G208CEqgg,1051 +django/contrib/contenttypes/locale/io/LC_MESSAGES/django.po,sha256=1ku9WPcenn47DOF05HL2eRqghZeRYfklo2huYUrkeJ0,1266 +django/contrib/contenttypes/locale/is/LC_MESSAGES/django.mo,sha256=ZYWbT4qeaco8h_J9SGF2Bs7Rdu3auZ969xZ0RQ_03go,1049 +django/contrib/contenttypes/locale/is/LC_MESSAGES/django.po,sha256=iNdghSbBVPZmfrHu52hRG8vHMgGUfOjLqie09fYcuso,1360 +django/contrib/contenttypes/locale/it/LC_MESSAGES/django.mo,sha256=GSP0BJc3bGLoNS0tnhiz_5dtSh5NXCrBiZbnwEhWbpk,1075 +django/contrib/contenttypes/locale/it/LC_MESSAGES/django.po,sha256=njEgvhDwWOc-CsGBDz1_mtEsXx2aTU6cP3jZzcLkkYk,1457 +django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.mo,sha256=tVH6RvZ5tXz56lEM3aoJtFp5PKsSR-XXpi8ZNCHjiFw,1211 +django/contrib/contenttypes/locale/ja/LC_MESSAGES/django.po,sha256=5_-Uo7Ia3X9gAWm2f72ezQnNr_pQzf6Ax4AUutULuZU,1534 +django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.mo,sha256=1_yGL68sK0QG_mhwFAVdksiDlB57_1W5QkL7NGGE5L0,1429 +django/contrib/contenttypes/locale/ka/LC_MESSAGES/django.po,sha256=6iUBbKjXsIgrq7Dj_xhxzoxItSSSKwQjIZsDayefGr8,1654 +django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.mo,sha256=SNY0vydwLyR2ExofAHjmg1A2ykoLI7vU5Ryq-QFu5Gs,627 +django/contrib/contenttypes/locale/kk/LC_MESSAGES/django.po,sha256=PU-NAl6xUEeGV0jvJx9siVBTZIzHywL7oKc4DgUjNkc,1130 +django/contrib/contenttypes/locale/km/LC_MESSAGES/django.mo,sha256=BXifukxf48Lr0t0V3Y0GJUMhD1KiHN1wwbueoK0MW1A,678 +django/contrib/contenttypes/locale/km/LC_MESSAGES/django.po,sha256=fTPlBbnaNbLZxjzJutGvqe33t6dWsEKiHQYaw27m7KQ,1123 +django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.mo,sha256=a4sDGaiyiWn-1jFozYI4vdAvuHXrs8gbZErP_SAUk9Y,714 +django/contrib/contenttypes/locale/kn/LC_MESSAGES/django.po,sha256=A6Vss8JruQcPUKQvY-zaubVZDTLEPwHsnd_rXcyzQUs,1168 +django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.mo,sha256=myRfFxf2oKcbpmCboongTsL72RTM95nEmAC938M-ckE,1089 +django/contrib/contenttypes/locale/ko/LC_MESSAGES/django.po,sha256=uui_LhgGTrW0uo4p-oKr4JUzhjvkLbFCqRVLNMrptzY,1383 +django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.mo,sha256=ULoIe36zGKPZZs113CenA6J9HviYcBOKagXrPGxyBUI,1182 +django/contrib/contenttypes/locale/ky/LC_MESSAGES/django.po,sha256=FnW5uO8OrTYqbvoRuZ6gnCD6CHnuLjN00s2Jo1HX1NE,1465 +django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/contenttypes/locale/lb/LC_MESSAGES/django.po,sha256=dwVKpCRYmXTD9h69v5ivkZe-yFtvdZNZ3VfuyIl4olY,989 +django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.mo,sha256=HucsRl-eqfxw6ESTuXvl7IGjPGYSI9dxM5lMly_P1sc,1215 +django/contrib/contenttypes/locale/lt/LC_MESSAGES/django.po,sha256=odzYqHprxKFIrR8TzdxA4WeeMK0W0Nvn2gAVuzAsEqI,1488 +django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.mo,sha256=nWfy7jv2VSsKYT6yhk_xqxjk1TlppJfsQcurC40CeTs,1065 +django/contrib/contenttypes/locale/lv/LC_MESSAGES/django.po,sha256=pHlbzgRpIJumDMp2rh1EKrxFBg_DRcvLLgkQ3mi_L0s,1356 +django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.mo,sha256=KTFZWm0F4S6lmi1FX76YKOyJqIZN5cTsiTBI_D4ADHs,1258 +django/contrib/contenttypes/locale/mk/LC_MESSAGES/django.po,sha256=mQZosS90S-Bil6-EoGjs9BDWYlvOF6mtUDZ8h9NxEdE,1534 +django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.mo,sha256=rtmLWfuxJED-1KuqkUT8F5CU1KGJP0Of718n2Gl_gI0,1378 +django/contrib/contenttypes/locale/ml/LC_MESSAGES/django.po,sha256=Z-kL9X9CD7rYfa4Uoykye2UgCNQlgyql0HTv1eUXAf4,1634 +django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.mo,sha256=J6kKYjUOsQxptNXDcCaY4d3dHJio4HRibRk3qfwO6Xc,1225 +django/contrib/contenttypes/locale/mn/LC_MESSAGES/django.po,sha256=x8aRJH2WQvMBBWlQt3T3vpV4yHeZXLmRTT1U0at4ZIk,1525 +django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.mo,sha256=G7yoBvkVNtyQxT2RCCPjBeI8C3lAzVcPxW0OkDeVyz0,1004 +django/contrib/contenttypes/locale/mr/LC_MESSAGES/django.po,sha256=BKgamLogZ-F3gBYeTZy1rGCkNe5AjOew8Nm1LTVkhEs,1348 +django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.mo,sha256=EIwbOZ0QahW9AFFWRmRdKGKBtYYY_eTcfU4eqDVSVxw,1035 +django/contrib/contenttypes/locale/ms/LC_MESSAGES/django.po,sha256=t7nKsOMxycn_CsXw2nIfU-owJRge3FAixgbTsDhffvo,1225 +django/contrib/contenttypes/locale/my/LC_MESSAGES/django.mo,sha256=YYa2PFe9iJygqL-LZclfpgR6rBmIvx61JRpBkKS6Hrs,1554 +django/contrib/contenttypes/locale/my/LC_MESSAGES/django.po,sha256=6F3nXd9mBc-msMchkC8OwAHME1x1O90xrsZp7xmynpU,1732 +django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.mo,sha256=EHU9Lm49U7WilR5u-Lq0Fg8ChR_OzOce4UyPlkZ6Zs4,1031 +django/contrib/contenttypes/locale/nb/LC_MESSAGES/django.po,sha256=lbktPYsJudrhe4vxnauzpzN9eNwyoVs0ZmZSdkwjkOk,1403 +django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.mo,sha256=-zZAn5cex4PkScoZVqS74PUMThJJuovZSk3WUKZ8hnw,1344 +django/contrib/contenttypes/locale/ne/LC_MESSAGES/django.po,sha256=1ZCUkulQ9Gxb50yMKFKWaTJli2SinBeNj0KpXkKpsNE,1519 +django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.mo,sha256=aXDHgg891TyTiMWNcbNaahfZQ2hqtl5yTkx5gNRocMU,1040 +django/contrib/contenttypes/locale/nl/LC_MESSAGES/django.po,sha256=zDJ_vyQxhP0mP06U-e4p6Uj6v1g863s8oaxc0JIAMjg,1396 +django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.mo,sha256=a_X8e2lMieWwUtENJueBr8wMvkw6at0QSaWXd5AM6yQ,1040 +django/contrib/contenttypes/locale/nn/LC_MESSAGES/django.po,sha256=xFSirHUAKv78fWUpik6xv-6WQSEoUgN5jjPbTOy58C4,1317 +django/contrib/contenttypes/locale/os/LC_MESSAGES/django.mo,sha256=QV533Wu-UpjV3XiCe83jlz7XGuwgRviV0ggoeMaIOIY,1116 +django/contrib/contenttypes/locale/os/LC_MESSAGES/django.po,sha256=UZahnxo8z6oWJfEz4JNHGng0EAifXYtJupB6lx0JB60,1334 +django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.mo,sha256=qacd7eywof8rvJpstNfEmbHgvDiQ9gmkcyG7gfato8s,697 +django/contrib/contenttypes/locale/pa/LC_MESSAGES/django.po,sha256=Kq2NTzdbgq8Q9jLLgV-ZJaSRj43D1dDHcRIgNnJXu-s,1145 +django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.mo,sha256=J5sC36QwKLvrMB4adsojhuw2kYuEckHz6eoTrZwYcnI,1208 +django/contrib/contenttypes/locale/pl/LC_MESSAGES/django.po,sha256=gxP59PjlIHKSiYZcbgIY4PUZSoKYx4YKCpm4W4Gj22g,1577 +django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.mo,sha256=k7cJHLP3avrBD50o5oxaZmLlT9Uv_XgxzDn4YhvNeDM,1154 +django/contrib/contenttypes/locale/pt/LC_MESSAGES/django.po,sha256=O087gXKjUtRwCrYHERr-m8smmuJg-eo4OAOL2vRDBj4,1446 +django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.mo,sha256=qjl-3fBqNcAuoviGejjILC7Z8XmrRd7gHwOgwu1x1zw,1117 +django/contrib/contenttypes/locale/pt_BR/LC_MESSAGES/django.po,sha256=Xp0iBhseS8v13zjDcNQv4BDaroMtDJVs4-BzNc0UOpU,1494 +django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.mo,sha256=sCthDD10v7GY2cui9Jj9HK8cofVEg2WERCm6aktOM-4,1142 +django/contrib/contenttypes/locale/ro/LC_MESSAGES/django.po,sha256=n-BPEfua0Gd6FN0rsP7qAlTGbQEZ14NnDMA8jI2844Y,1407 +django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.mo,sha256=OSf206SFmVLULHmwVhTaRhWTQtyDKsxe03gIzuvAUnY,1345 +django/contrib/contenttypes/locale/ru/LC_MESSAGES/django.po,sha256=xHyJYD66r8We3iN5Hqo69syWkjhz4zM7X9BWPIiI6mU,1718 +django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.mo,sha256=osKXPEE0x-oahNDjgr4aea3dzmLddTT_RLQ8TnbsIOg,1115 +django/contrib/contenttypes/locale/sk/LC_MESSAGES/django.po,sha256=nZBxZH3r93fbtth15iP-Q2tNLrZrYqc8V0B9c4XMRNI,1433 +django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.mo,sha256=sMML-ubI_9YdKptzeri1du8FOdKcEzJbe4Tt0J4ePFI,1147 +django/contrib/contenttypes/locale/sl/LC_MESSAGES/django.po,sha256=0zxiyzRWWDNVpNNLlcwl-OLh5sLukma1vm-kYrGHYrE,1392 +django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.mo,sha256=jYDQH3OpY4Vx9hp6ISFMI88uxBa2GDQK0BkLGm8Qulk,1066 +django/contrib/contenttypes/locale/sq/LC_MESSAGES/django.po,sha256=JIvguXVOFpQ3MRqRXHpxlg8_YhEzCsZBBMdpekYTxlk,1322 +django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.mo,sha256=GUXj97VN15HdY7XMy5jmMLEu13juD3To5NsztcoyPGs,1204 +django/contrib/contenttypes/locale/sr/LC_MESSAGES/django.po,sha256=T1w_EeB6yT-PXr7mrwzqu270linf_KY3_ZCgl4wfLAQ,1535 +django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=m2plistrI8O-ztAs5HmDYXG8N_wChaDfXFev0GYWVys,1102 +django/contrib/contenttypes/locale/sr_Latn/LC_MESSAGES/django.po,sha256=lJrhLPDbJAcXgBPco-_lfUXqs31imj_vGwE5p1EXZjk,1390 +django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.mo,sha256=J5ha8X6jnQ4yuafk-JCqPM5eIGNwKpDOpTwIVCrnGNE,1055 +django/contrib/contenttypes/locale/sv/LC_MESSAGES/django.po,sha256=HeKnQJaRNflAbKxTiC_2EFAg2Sx-e3nDXrReJyVoNTQ,1400 +django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.mo,sha256=XLPle0JYPPkmm5xpJRmWztMTF1_3a2ZubWE4ur2sav8,563 +django/contrib/contenttypes/locale/sw/LC_MESSAGES/django.po,sha256=jRc8Eh6VuWgqc4kM-rxjbVE3yV9uip6mOJLdD6yxGLM,1009 +django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.mo,sha256=L3eF4z9QSmIPqzEWrNk8-2uLteQUMsuxiD9VZyRuSfo,678 +django/contrib/contenttypes/locale/ta/LC_MESSAGES/django.po,sha256=iDb9lRU_-YPmO5tEQeXEZeGeFe-wVZy4k444sp_vTgw,1123 +django/contrib/contenttypes/locale/te/LC_MESSAGES/django.mo,sha256=S_UF_mZbYfScD6Z36aB-kwtTflTeX3Wt4k7z_pEcOV8,690 +django/contrib/contenttypes/locale/te/LC_MESSAGES/django.po,sha256=aAGMMoJPg_pF9_rCNZmda5A_TvDCvQfYEL64Xdoa4jo,1135 +django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.mo,sha256=dkLic6fD2EMzrB7m7MQazaGLoJ_pBw55O4nYZc5UYEs,864 +django/contrib/contenttypes/locale/tg/LC_MESSAGES/django.po,sha256=1nv1cVJewfr44gbQh1Szzy3DT4Y9Dy7rUgAZ81otJQs,1232 +django/contrib/contenttypes/locale/th/LC_MESSAGES/django.mo,sha256=qilt-uZMvt0uw-zFz7-eCmkGEx3XYz7NNo9Xbq3s7uI,1186 +django/contrib/contenttypes/locale/th/LC_MESSAGES/django.po,sha256=42F34fNEn_3yQKBBJnCLttNeyktuLVpilhMyepOd6dg,1444 +django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.mo,sha256=0fuA3E487-pceoGpX9vMCwSnCItN_pbLUIUzzcrAGOE,1068 +django/contrib/contenttypes/locale/tk/LC_MESSAGES/django.po,sha256=pS8wX9dzxys3q8Vvz3PyoVJYqplXhNuAqfq7Dsb07fw,1283 +django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.mo,sha256=gKg2FCxs2fHpDB1U6gh9xrP7mOpYG65pB4CNmdPYiDg,1057 +django/contrib/contenttypes/locale/tr/LC_MESSAGES/django.po,sha256=gmI3RDhq39IlDuvNohT_FTPY5QG8JD0gFxG5CTsvVZs,1345 +django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.mo,sha256=_LQ1N04FgosdDLUYXJOEqpCB2Mg92q95cBRgYPi1MyY,659 +django/contrib/contenttypes/locale/tt/LC_MESSAGES/django.po,sha256=L7wMMpxGnpQiKd_mjv2bJpE2iqCJ8XwiXK0IN4EHSbM,1110 +django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/contenttypes/locale/udm/LC_MESSAGES/django.po,sha256=YVyej0nAhhEf7knk4vCeRQhmSQeGZLhMPPXyIyWObnM,977 +django/contrib/contenttypes/locale/ug/LC_MESSAGES/django.mo,sha256=hddqwGR9yrDZye5FZSatvlBBGerLsxS0x1HRodFmwkk,1182 +django/contrib/contenttypes/locale/ug/LC_MESSAGES/django.po,sha256=DoAswgu8-Ukl5e5TLhMcMQRuWEalnmokpKZsKSN9RYk,1397 +django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.mo,sha256=GgAuuLexfhYl1fRKPfZI5uMTkt2H42Ogil6MQHcejkU,1404 +django/contrib/contenttypes/locale/uk/LC_MESSAGES/django.po,sha256=1HzO_Wmxqk0Kd5gtACKZODiH8ZEpOf5Eh8Mkrg3IMf8,1779 +django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.mo,sha256=OJs_EmDBps-9a_KjFJnrS8IqtJfd25LaSWeyG8u8UfI,671 +django/contrib/contenttypes/locale/ur/LC_MESSAGES/django.po,sha256=f0FnsaAM_qrBuCXzLnkBrW5uFfVc6pUh7S-qp4918Ng,1122 +django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.mo,sha256=kGYgEI1gHkyU4y_73mBJN1hlKC2JujVXMg6iCdWncDg,1155 +django/contrib/contenttypes/locale/vi/LC_MESSAGES/django.po,sha256=RIDUgsElfRF8bvBdUKtshizuMnupdMGAM896s7qZKD4,1439 +django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=RviK0bqLZzPrZ46xUpc0f8IKkw3JLtsrt0gNA74Ypj0,1015 +django/contrib/contenttypes/locale/zh_Hans/LC_MESSAGES/django.po,sha256=vSKJDEQ_ANTj3-W8BFJd9u_QGdTMF12iS15rVgeujOs,1380 +django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=NMumOJ9dPX-7YjQH5Obm4Yj0-lnGXJmCMN5DGbsLQG4,1046 +django/contrib/contenttypes/locale/zh_Hant/LC_MESSAGES/django.po,sha256=7WIqYRpcs986MjUsegqIido5k6HG8d3FVvkrOQCRVCI,1338 +django/contrib/contenttypes/management/__init__.py,sha256=ZVHVJAYi_jCIXxWUZSkxq0IDECe6bvbFsWayrqbutfc,4937 +django/contrib/contenttypes/management/__pycache__/__init__.cpython-310.pyc,, +django/contrib/contenttypes/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/contenttypes/management/commands/__pycache__/__init__.cpython-310.pyc,, +django/contrib/contenttypes/management/commands/__pycache__/remove_stale_contenttypes.cpython-310.pyc,, +django/contrib/contenttypes/management/commands/remove_stale_contenttypes.py,sha256=F6rm6MTMLuZVXCsn6L3ln3ouehsUTaVGaNeaZ4cRW7I,4643 +django/contrib/contenttypes/migrations/0001_initial.py,sha256=Ne2EiaFH4LQqFcIbXU8OiUDeb3P7Mm6dbeqRtNC5U8w,1434 +django/contrib/contenttypes/migrations/0002_remove_content_type_name.py,sha256=fTZJQHV1Dw7TwPaNDLFUjrpZzFk_UvaR9sw3oEMIN2Y,1199 +django/contrib/contenttypes/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/contenttypes/migrations/__pycache__/0001_initial.cpython-310.pyc,, +django/contrib/contenttypes/migrations/__pycache__/0002_remove_content_type_name.cpython-310.pyc,, +django/contrib/contenttypes/migrations/__pycache__/__init__.cpython-310.pyc,, +django/contrib/contenttypes/models.py,sha256=VKXWweIQQ6eX88YX96nlcMo9ESaW7p_wUPJSalGInsc,6844 +django/contrib/contenttypes/prefetch.py,sha256=cORwKClKS-wzGrmRj2BlSBuuJz6iRBWOVl4tBYHRrtA,1358 +django/contrib/contenttypes/views.py,sha256=HBoIbNpgHTQN5pH8mul77UMEMZHbbkEH_Qdln-XFgd0,3549 +django/contrib/flatpages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/flatpages/__pycache__/__init__.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/admin.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/apps.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/forms.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/middleware.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/models.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/sitemaps.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/urls.cpython-310.pyc,, +django/contrib/flatpages/__pycache__/views.cpython-310.pyc,, +django/contrib/flatpages/admin.py,sha256=ynemOSDgvKoCfRFLXZrPwj27U0mPUXmxdrue7SOZeqQ,701 +django/contrib/flatpages/apps.py,sha256=_OlaDxWbMrUmFNCS4u-RnBsg67rCWs8Qzh_c58wvtXA,252 +django/contrib/flatpages/forms.py,sha256=r9yUG_-zAnI7Ubr836aiWgScYpKxHhJbNLhHRkZQOzY,2492 +django/contrib/flatpages/locale/af/LC_MESSAGES/django.mo,sha256=AG2eKl6o50fG3wWYS7D4-m3gWi9_yfPwEHp-HjB4Sr8,2282 +django/contrib/flatpages/locale/af/LC_MESSAGES/django.po,sha256=EVgUOspHqS4FuFggANzWpyQEutGV4kSx2zUWoOjBF9w,2459 +django/contrib/flatpages/locale/ar/LC_MESSAGES/django.mo,sha256=dBHaqsaKH9QOIZ0h2lIDph8l9Bv2UAcD-Hr9TAxj8Ac,2636 +django/contrib/flatpages/locale/ar/LC_MESSAGES/django.po,sha256=-0ZdfA-sDU8fOucgT2Ow1iM3QnRMuQeslMOSwYhAH9M,2958 +django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=jp6sS05alESJ4-SbEIf574UPVcbllAd_J-FW802lGyk,2637 +django/contrib/flatpages/locale/ar_DZ/LC_MESSAGES/django.po,sha256=yezpjWcROwloS08TEMo9oPXDKS1mfFE9NYI66FUuLaA,2799 +django/contrib/flatpages/locale/ast/LC_MESSAGES/django.mo,sha256=4SEsEE2hIZJwQUNs8jDgN6qVynnUYJUIE4w-usHKA6M,924 +django/contrib/flatpages/locale/ast/LC_MESSAGES/django.po,sha256=5UlyS59bVo1lccM6ZgdYSgHe9NLt_WeOdXX-swLKubU,1746 +django/contrib/flatpages/locale/az/LC_MESSAGES/django.mo,sha256=s3YhszIU5rdigUVVPB3Jpfn3jbH5L1NXWXky_Q3slvY,2378 +django/contrib/flatpages/locale/az/LC_MESSAGES/django.po,sha256=tDALtASG8n7uaJT7yFsM-rz7FN5rONXlCKqCQIrIcPY,2707 +django/contrib/flatpages/locale/be/LC_MESSAGES/django.mo,sha256=mOQlbfwwIZiwWCrFStwag2irCwsGYsXIn6wZDsPRvyA,2978 +django/contrib/flatpages/locale/be/LC_MESSAGES/django.po,sha256=wlIfhun5Jd6gxbkmmYPSIy_tzPVmSu4CjMwPzBNnvpo,3161 +django/contrib/flatpages/locale/bg/LC_MESSAGES/django.mo,sha256=9Un5mKtsAuNeYWFQKFkIyCpQquE6qVD3zIrFoq8sCDI,2802 +django/contrib/flatpages/locale/bg/LC_MESSAGES/django.po,sha256=Vr6d-9XjgK4_eXdWY3FEpdTlCEGgbCv93bLGyMTE9hs,3104 +django/contrib/flatpages/locale/bn/LC_MESSAGES/django.mo,sha256=2oK2Rm0UtAI7QFRwpUR5aE3-fOltE6kTilsTbah737Y,2988 +django/contrib/flatpages/locale/bn/LC_MESSAGES/django.po,sha256=QrbX69iqXOD6oByLcgPkD1QzAkfthpfTjezIFQ-6kVg,3172 +django/contrib/flatpages/locale/br/LC_MESSAGES/django.mo,sha256=SKbykdilX_NcpkVi_lHF8LouB2G49ZAzdF09xw49ERc,2433 +django/contrib/flatpages/locale/br/LC_MESSAGES/django.po,sha256=O_mwrHIiEwV4oB1gZ7Yua4nVKRgyIf3j5UtedZWAtwk,2783 +django/contrib/flatpages/locale/bs/LC_MESSAGES/django.mo,sha256=bd7ID7OsEhp57JRw_TXoTwsVQNkFYiR_sxSkgi4WvZU,1782 +django/contrib/flatpages/locale/bs/LC_MESSAGES/django.po,sha256=IyFvI5mL_qesEjf6NO1nNQbRHhCAZQm0UhIpmGjrSwQ,2233 +django/contrib/flatpages/locale/ca/LC_MESSAGES/django.mo,sha256=GcMVbg4i5zKCd2Su7oN30WVJN7Q9K7FsFifgTB8jDPI,2237 +django/contrib/flatpages/locale/ca/LC_MESSAGES/django.po,sha256=-aJHSbWPVyNha_uF6R35Q6yn4-Hse3jTInr9jtaxKOI,2631 +django/contrib/flatpages/locale/ckb/LC_MESSAGES/django.mo,sha256=ds26zJRsUHDNdhoUJ8nsLtBdKDhN29Kb51wNiB8Llgo,2716 +django/contrib/flatpages/locale/ckb/LC_MESSAGES/django.po,sha256=jqqMYjrplyX8jtyBLd1ObMEwoFmaETmNXrO3tg2S0BY,2918 +django/contrib/flatpages/locale/cs/LC_MESSAGES/django.mo,sha256=8nwep22P86bMCbW7sj4n0BMGl_XaJIJV0fjnVp-_dqY,2340 +django/contrib/flatpages/locale/cs/LC_MESSAGES/django.po,sha256=1agUeRthwpam1UvZY4vRnZtLLbiop75IEXb6ul_e3mg,2611 +django/contrib/flatpages/locale/cy/LC_MESSAGES/django.mo,sha256=zr_2vsDZsrby3U8AmvlJMU3q1U_4IrrTmz6oS29OWtQ,2163 +django/contrib/flatpages/locale/cy/LC_MESSAGES/django.po,sha256=E_NC_wtuhWKYKB3YvYGB9ccJgKI3AfIZlB2HpXSyOsk,2370 +django/contrib/flatpages/locale/da/LC_MESSAGES/django.mo,sha256=nALoI50EvFPa4f3HTuaHUHATF1zHMjo4v5zcHj4n6sA,2277 +django/contrib/flatpages/locale/da/LC_MESSAGES/django.po,sha256=j4dpnreB7LWdZO7Drj7E9zBwFx_Leuj7ZLyEPi-ccAQ,2583 +django/contrib/flatpages/locale/de/LC_MESSAGES/django.mo,sha256=I4CHFzjYM_Wd-vuIYOMf8E58ntOgkLmgOAg35Chdz3s,2373 +django/contrib/flatpages/locale/de/LC_MESSAGES/django.po,sha256=P6tPVPumP9JwBIv-XXi1QQYJyj1PY3OWoM4yOAmgTRE,2592 +django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.mo,sha256=oTILSe5teHa9XTYWoamstpyPu02yb_xo8S0AtkP7WP8,2391 +django/contrib/flatpages/locale/dsb/LC_MESSAGES/django.po,sha256=1xD2aH5alerranvee6QLZqgxDVXxHThXCHR4kOJAV48,2576 +django/contrib/flatpages/locale/el/LC_MESSAGES/django.mo,sha256=LQ8qIGwzoKwewtLz_1NhnhEeR4dPx2rrQ_hAN4BF6Og,2864 +django/contrib/flatpages/locale/el/LC_MESSAGES/django.po,sha256=gbLO52fcZK7LoG5Rget2Aq5PTFoz467ackXpSsR81kY,3221 +django/contrib/flatpages/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/flatpages/locale/en/LC_MESSAGES/django.po,sha256=0bNWKiu-1MkHFJ_UWrCLhp9ENr-pHzBz1lkhBkkrhJM,2169 +django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.mo,sha256=dTt7KtwiEyMEKYVzkPSqs6VS0CiUfK7ISz2c6rV2erA,2210 +django/contrib/flatpages/locale/en_AU/LC_MESSAGES/django.po,sha256=_V4RTf0JtmyU7DRQv7jIwtPJs05KA2THPid5nKQ0ego,2418 +django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.mo,sha256=7zyXYOsqFkUGxclW-VPPxrQTZKDuiYQ7MQJy4m8FClo,1989 +django/contrib/flatpages/locale/en_GB/LC_MESSAGES/django.po,sha256=oHrBd6lVnO7-SdnO-Taa7iIyiqp_q2mQZjkuuU3Qa_s,2232 +django/contrib/flatpages/locale/eo/LC_MESSAGES/django.mo,sha256=W8TkkQkV58oOvFdKCPAyoQNyCxSmfErwik1U8a_W5nE,2333 +django/contrib/flatpages/locale/eo/LC_MESSAGES/django.po,sha256=e54WOtIcIQLjB4bJGol51z6d6dwLBiiJN2k-nrTQlaI,2750 +django/contrib/flatpages/locale/es/LC_MESSAGES/django.mo,sha256=9Q7Qf1eSPvAfPTZSGWq7QMWrROY-CnpUkeRpiH8rpJw,2258 +django/contrib/flatpages/locale/es/LC_MESSAGES/django.po,sha256=3vGZ3uVCyWnIkDSUt6DMMOqyphv3EQteTPLx7e9J_sU,2663 +django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.mo,sha256=bUnFDa5vpxl27kn2ojTbNaCmwRkBCH-z9zKXAvXe3Z0,2275 +django/contrib/flatpages/locale/es_AR/LC_MESSAGES/django.po,sha256=vEg3wjL_7Ee-PK4FZTaGRCXFscthkoH9szJ7H01K8w8,2487 +django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.mo,sha256=jt8wzeYky5AEnoNuAv8W4nGgd45XsMbpEdRuLnptr3U,2140 +django/contrib/flatpages/locale/es_CO/LC_MESSAGES/django.po,sha256=xrbAayPoxT7yksXOGPb-0Nc-4g14UmWANaKTD4ItAFA,2366 +django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.mo,sha256=Y5IOKRzooJHIhJzD9q4PKOe39Z4Rrdz8dBKuvmGkqWU,2062 +django/contrib/flatpages/locale/es_MX/LC_MESSAGES/django.po,sha256=Y-EXhw-jISttA9FGMz7gY_kB-hQ3wEyKEaOc2gu2hKQ,2246 +django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.mo,sha256=EI6WskepXUmbwCPBNFKqLGNcWFVZIbvXayOHxOCLZKo,2187 +django/contrib/flatpages/locale/es_VE/LC_MESSAGES/django.po,sha256=ipG6a0A2d0Pyum8GcknA-aNExVLjSyuUqbgHM9VdRQo,2393 +django/contrib/flatpages/locale/et/LC_MESSAGES/django.mo,sha256=zriqETEWD-DDPiNzXgAzgEhjvPAaTo7KBosyvBebyc0,2233 +django/contrib/flatpages/locale/et/LC_MESSAGES/django.po,sha256=tMuITUlzy6LKJh3X3CxssFpTQogg8OaGHlKExzjwyOI,2525 +django/contrib/flatpages/locale/eu/LC_MESSAGES/django.mo,sha256=FoKazUkuPpDgsEEI6Gm-xnZYVHtxILiy6Yzvnu8y-L0,2244 +django/contrib/flatpages/locale/eu/LC_MESSAGES/django.po,sha256=POPFB5Jd8sE9Z_ivYSdnet14u-aaXneTUNDMuOrJy00,2478 +django/contrib/flatpages/locale/fa/LC_MESSAGES/django.mo,sha256=2rA7-OR8lQbl_ZhlAC4cmHEmQ9mwxnA8q5M-gx3NmVQ,2612 +django/contrib/flatpages/locale/fa/LC_MESSAGES/django.po,sha256=_-yKW2xIN9XSXEwZTdkhEpRHJoacN8f56D3AkCvlFs0,3006 +django/contrib/flatpages/locale/fi/LC_MESSAGES/django.mo,sha256=VsQdof8hE_AKQGS-Qp82o8PTN_7NxxEdxelGenIAE-8,2256 +django/contrib/flatpages/locale/fi/LC_MESSAGES/django.po,sha256=RL7eruNkgDjr1b3cF2yCqeM8eDKHwAqF6h8hYuxl6R4,2552 +django/contrib/flatpages/locale/fr/LC_MESSAGES/django.mo,sha256=ZqD4O3_Ny8p5i6_RVHlANCnPiowMd19Qi_LOPfTHav4,2430 +django/contrib/flatpages/locale/fr/LC_MESSAGES/django.po,sha256=liAoOgT2CfpANL_rYzyzsET1MhsM19o7wA2GBnoDvMA,2745 +django/contrib/flatpages/locale/fy/LC_MESSAGES/django.mo,sha256=DRsFoZKo36F34XaiQg_0KUOr3NS_MG3UHptzOI4uEAU,476 +django/contrib/flatpages/locale/fy/LC_MESSAGES/django.po,sha256=9JIrRVsPL1m0NPN6uHiaAYxJXHp5IghZmQhVSkGo5g8,1523 +django/contrib/flatpages/locale/ga/LC_MESSAGES/django.mo,sha256=f4552jyACX8w17CU4QAwoPmj05A8nNaTiy-2cbmegSk,2351 +django/contrib/flatpages/locale/ga/LC_MESSAGES/django.po,sha256=oPLJhdAZd2zwKo4o12vDJU-7MQ_CiC9wqszFHmV7LXo,2613 +django/contrib/flatpages/locale/gd/LC_MESSAGES/django.mo,sha256=KbaTL8kF9AxDBLDQWlxcP5hZ4zWnbkvY0l2xRKZ9Dg0,2469 +django/contrib/flatpages/locale/gd/LC_MESSAGES/django.po,sha256=DVY_1R0AhIaI1qXIeRej3XSHMtlimeKNUwzFjc4OmwA,2664 +django/contrib/flatpages/locale/gl/LC_MESSAGES/django.mo,sha256=e8hfOxRyLtCsvdd1FVGuI_dnsptVhfW_O9KyuPT0ENk,2256 +django/contrib/flatpages/locale/gl/LC_MESSAGES/django.po,sha256=YqyR8qnKho8jK03igqPv9KlJw5yVIIDCAGc5z2QxckE,2583 +django/contrib/flatpages/locale/he/LC_MESSAGES/django.mo,sha256=PbypHBhT3W_rp37u8wvaCJdtYB4IP-UeE02VUvSHPf0,2517 +django/contrib/flatpages/locale/he/LC_MESSAGES/django.po,sha256=f7phCRqJPFL7CsuSE1xg9xlaBoOpdd-0zoTYotff29M,2827 +django/contrib/flatpages/locale/hi/LC_MESSAGES/django.mo,sha256=w29ukoF48C7iJ6nE045YoWi7Zcrgu_oXoxT-r6gcQy8,2770 +django/contrib/flatpages/locale/hi/LC_MESSAGES/django.po,sha256=nXq5y1FqMGVhpXpQVdV3uU5JcUtBc2BIrf-n__C2q30,3055 +django/contrib/flatpages/locale/hr/LC_MESSAGES/django.mo,sha256=Mt4gpBuUXvcBl8K714ls4PimHQqee82jFxY1BEAYQOE,2188 +django/contrib/flatpages/locale/hr/LC_MESSAGES/django.po,sha256=ZbUMJY6a-os-xDmcDCJNrN4-YqRe9b_zJ4V5gt2wlGI,2421 +django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.mo,sha256=Pk44puT-3LxzNdGYxMALWpFdw6j6W0G-dWwAfv8sopI,2361 +django/contrib/flatpages/locale/hsb/LC_MESSAGES/django.po,sha256=mhnBXgZSK19E4JU8p2qzqyZqozSzltK-3iY5glr9WG8,2538 +django/contrib/flatpages/locale/hu/LC_MESSAGES/django.mo,sha256=rZxICk460iWBubNq53g9j2JfKIw2W7OqyPG5ylGE92s,2363 +django/contrib/flatpages/locale/hu/LC_MESSAGES/django.po,sha256=DDP7OLBkNbWXr-wiulmQgG461qAubJ8VrfCCXbyPk2g,2700 +django/contrib/flatpages/locale/hy/LC_MESSAGES/django.mo,sha256=qocNtyLcQpjmGqQ130VGjJo-ruaOCtfmZehS9If_hWk,2536 +django/contrib/flatpages/locale/hy/LC_MESSAGES/django.po,sha256=WD8ohMnsaUGQItyqQmS46d76tKgzhQ17X_tGevqULO0,2619 +django/contrib/flatpages/locale/ia/LC_MESSAGES/django.mo,sha256=bochtCPlc268n0WLF0bJtUUT-XveZLPOZPQUetnOWfU,500 +django/contrib/flatpages/locale/ia/LC_MESSAGES/django.po,sha256=gOJ850e8sFcjR2G79zGn3_0-9-KSy591i7ketBRFjyw,1543 +django/contrib/flatpages/locale/id/LC_MESSAGES/django.mo,sha256=2kRHbcmfo09pIEuBb8q5AOkgC0sISJrAG37Rb5F0vts,2222 +django/contrib/flatpages/locale/id/LC_MESSAGES/django.po,sha256=1avfX88CkKMh2AjzN7dxRwj9pgohIBgKE0aXB_shZfc,2496 +django/contrib/flatpages/locale/io/LC_MESSAGES/django.mo,sha256=N8R9dXw_cnBSbZtwRbX6Tzw5XMr_ZdRkn0UmsQFDTi4,464 +django/contrib/flatpages/locale/io/LC_MESSAGES/django.po,sha256=_pJveonUOmMu3T6WS-tV1OFh-8egW0o7vU3i5YqgChA,1511 +django/contrib/flatpages/locale/is/LC_MESSAGES/django.mo,sha256=lFtP1N5CN-x2aMtBNpB6j5HsZYZIZYRm6Y-22gNe1Ek,2229 +django/contrib/flatpages/locale/is/LC_MESSAGES/django.po,sha256=9e132zDa-n6IZxB8jO5H8I0Wr7ubYxrFEMBYj2W49vI,2490 +django/contrib/flatpages/locale/it/LC_MESSAGES/django.mo,sha256=oOEG327VGpi0K5P2UOQgQa39ln15t0lAz2Z36MIQQAc,2209 +django/contrib/flatpages/locale/it/LC_MESSAGES/django.po,sha256=ar8i-bTtAKhiXLULCsKMddpmYBjKyg2paYxBI6ImY1s,2526 +django/contrib/flatpages/locale/ja/LC_MESSAGES/django.mo,sha256=Qax3t7FFRonMrszVEeiyQNMtYyWQB3dmOeeIklEmhAg,2469 +django/contrib/flatpages/locale/ja/LC_MESSAGES/django.po,sha256=N6PBvnXLEWELKTx8nHm5KwydDuFFKq5pn6AIHsBSM5M,2848 +django/contrib/flatpages/locale/ka/LC_MESSAGES/django.mo,sha256=R4OSbZ-lGxMdeJYsaXVXpo6-KSZWeKPuErKmEsUvEQE,3022 +django/contrib/flatpages/locale/ka/LC_MESSAGES/django.po,sha256=TWKtkRamM6YD-4WMoqfZ7KY-ZPs5ny7G82Wst6vQRko,3306 +django/contrib/flatpages/locale/kk/LC_MESSAGES/django.mo,sha256=lMPryzUQr21Uy-NAGQhuIZjHz-4LfBHE_zxEc2_UPaw,2438 +django/contrib/flatpages/locale/kk/LC_MESSAGES/django.po,sha256=3y9PbPw-Q8wM7tCq6u3KeYUT6pfTqcQwlNlSxpAXMxQ,2763 +django/contrib/flatpages/locale/km/LC_MESSAGES/django.mo,sha256=FYRfhNSqBtavYb10sHZNfB-xwLwdZEfVEzX116nBs-k,1942 +django/contrib/flatpages/locale/km/LC_MESSAGES/django.po,sha256=d2AfbR78U0rJqbFmJQvwiBl_QvYIeSwsPKEnfYM4JZA,2471 +django/contrib/flatpages/locale/kn/LC_MESSAGES/django.mo,sha256=n5HCZEPYN_YIVCXrgA1qhxvfhZtDbhfiannJy5EkHkI,1902 +django/contrib/flatpages/locale/kn/LC_MESSAGES/django.po,sha256=-CHwu13UuE2-Qg6poG949I_dw3YiPI9ZhMh5h2vP4xw,2443 +django/contrib/flatpages/locale/ko/LC_MESSAGES/django.mo,sha256=M-IInVdIH24ORarb-KgY60tEorJZgrThDfJQOxW-S0c,2304 +django/contrib/flatpages/locale/ko/LC_MESSAGES/django.po,sha256=DjAtWVAN_fwOvZb-7CUSLtO8WN0Sr08z3jQLNqZ98wY,2746 +django/contrib/flatpages/locale/ky/LC_MESSAGES/django.mo,sha256=WmdWR6dRgmJ-nqSzFDUETypf373fj62igDVHC4ww7hQ,2667 +django/contrib/flatpages/locale/ky/LC_MESSAGES/django.po,sha256=0XDF6CjQTGkuaHADytG95lpFRVndlf_136q0lrQiU1U,2907 +django/contrib/flatpages/locale/lb/LC_MESSAGES/django.mo,sha256=Wkvlh5L_7CopayfNM5Z_xahmyVje1nYOBfQJyqucI_0,502 +django/contrib/flatpages/locale/lb/LC_MESSAGES/django.po,sha256=gGeTuniu3ZZ835t9HR-UtwCcd2s_Yr7ihIUm3jgQ7Y0,1545 +django/contrib/flatpages/locale/lt/LC_MESSAGES/django.mo,sha256=es6xV6X1twtqhIMkV-MByA7KZ5SoVsrx5Qh8BuzJS0Q,2506 +django/contrib/flatpages/locale/lt/LC_MESSAGES/django.po,sha256=T__44veTC_u4hpPvkLekDOWfntXYAMzCd5bffRtGxWA,2779 +django/contrib/flatpages/locale/lv/LC_MESSAGES/django.mo,sha256=RJbVUR8qS8iLL3dD5x1TOau4hcdscHUJBfxge3p3dsM,2359 +django/contrib/flatpages/locale/lv/LC_MESSAGES/django.po,sha256=M6GT6S-5-7__RtSbJ9oqkIlxfU3FIWMlGAQ03NEfcKo,2610 +django/contrib/flatpages/locale/mk/LC_MESSAGES/django.mo,sha256=55H8w6fB-B-RYlKKkGw3fg2m-djxUoEp_XpupK-ZL70,2699 +django/contrib/flatpages/locale/mk/LC_MESSAGES/django.po,sha256=OhHJ5OVWb0jvNaOB3wip9tSIZ1yaPPLkfQR--uUEyUI,2989 +django/contrib/flatpages/locale/ml/LC_MESSAGES/django.mo,sha256=VMMeOujp5fiLzrrbDeH24O2qKBPUkvI_YTSPH-LQjZc,3549 +django/contrib/flatpages/locale/ml/LC_MESSAGES/django.po,sha256=KR2CGnZ1sVuRzSGaPj5IlspoAkVuVEdf48XsAzt1se0,3851 +django/contrib/flatpages/locale/mn/LC_MESSAGES/django.mo,sha256=tqwROY6D-bJ4gbDQIowKXfuLIIdCWksGwecL2sj_wco,2776 +django/contrib/flatpages/locale/mn/LC_MESSAGES/django.po,sha256=jqiBpFLXlptDyU4F8ZWbP61S4APSPh0-nuTpNOejA6c,3003 +django/contrib/flatpages/locale/mr/LC_MESSAGES/django.mo,sha256=fuDy9vFLn5Mb3wVNUg8IvLyTwmyPr3M-GThzgkphJjg,2040 +django/contrib/flatpages/locale/mr/LC_MESSAGES/django.po,sha256=L_1vnLh4AjoaXdb4p_XfDnbKAAWkdQFSpE_8cKGZSm8,2593 +django/contrib/flatpages/locale/ms/LC_MESSAGES/django.mo,sha256=5t_67bMQhux6v6SSWqHfzzCgc6hm3olxgHAsKOMGGZU,2184 +django/contrib/flatpages/locale/ms/LC_MESSAGES/django.po,sha256=-ZzZ8lfAglGkO_BRYz1lRlywxaF1zZ28-Xv74O2nT04,2336 +django/contrib/flatpages/locale/my/LC_MESSAGES/django.mo,sha256=OcbiA7tJPkyt_WNrqyvoFjHt7WL7tMGHV06AZSxzkho,507 +django/contrib/flatpages/locale/my/LC_MESSAGES/django.po,sha256=EPWE566Vn7tax0PYUKq93vtydvmt-A4ooIau9Cwcdfc,1550 +django/contrib/flatpages/locale/nb/LC_MESSAGES/django.mo,sha256=L_XICESZ0nywkk1dn6RqzdUbFTcR92ju-zHCT1g3iEg,2208 +django/contrib/flatpages/locale/nb/LC_MESSAGES/django.po,sha256=ZtcBVD0UqIcsU8iLu5a2wnHLqu5WRLLboVFye2IuQew,2576 +django/contrib/flatpages/locale/ne/LC_MESSAGES/django.mo,sha256=gDZKhcku1NVlSs5ZPPupc7RI8HOF7ex0R4Rs8tMmrYE,1500 +django/contrib/flatpages/locale/ne/LC_MESSAGES/django.po,sha256=GWlzsDaMsJkOvw2TidJOEf1Fvxx9WxGdGAtfZIHkHwk,2178 +django/contrib/flatpages/locale/nl/LC_MESSAGES/django.mo,sha256=_yV_-SYYjpbo-rOHp8NlRzVHFPOSrfS-ndHOEJ9JP3Y,2231 +django/contrib/flatpages/locale/nl/LC_MESSAGES/django.po,sha256=xUuxx2b4ZTCA-1RIdoMqykLgjLLkmpO4ur1Vh93IITU,2669 +django/contrib/flatpages/locale/nn/LC_MESSAGES/django.mo,sha256=sHkuZneEWo1TItSlarlnOUR7ERjc76bJfHUcuFgd9mQ,2256 +django/contrib/flatpages/locale/nn/LC_MESSAGES/django.po,sha256=MpI9qkWqj4rud__xetuqCP-eFHUgMYJpfBhDnWRKPK4,2487 +django/contrib/flatpages/locale/os/LC_MESSAGES/django.mo,sha256=cXGTA5M229UFsgc7hEiI9vI9SEBrNQ8d3A0XrtazO6w,2329 +django/contrib/flatpages/locale/os/LC_MESSAGES/django.po,sha256=m-qoTiKePeFviKGH1rJRjZRH-doJ2Fe4DcZ6W52rG8s,2546 +django/contrib/flatpages/locale/pa/LC_MESSAGES/django.mo,sha256=69_ZsZ4nWlQ0krS6Mx3oL6c4sP5W9mx-yAmOhZOnjPU,903 +django/contrib/flatpages/locale/pa/LC_MESSAGES/django.po,sha256=N6gkoRXP5MefEnjywzRiE3aeU6kHQ0TUG6IGdLV7uww,1780 +django/contrib/flatpages/locale/pl/LC_MESSAGES/django.mo,sha256=5M5-d-TOx2WHlD6BCw9BYIU6bYrSR0Wlem89ih5k3Pc,2448 +django/contrib/flatpages/locale/pl/LC_MESSAGES/django.po,sha256=oKeeo-vNfPaCYVUbufrJZGk0vsgzAE0kLQOTF5qHAK4,2793 +django/contrib/flatpages/locale/pt/LC_MESSAGES/django.mo,sha256=xD2pWdS3XMg7gAqBrUBmCEXFsOzEs0Npe8AJnlpueRY,2115 +django/contrib/flatpages/locale/pt/LC_MESSAGES/django.po,sha256=-K2jipPUWjXpfSPq3upnC_bvtaRAeOw0OLRFv03HWFY,2326 +django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.mo,sha256=YGyagSFIc-ssFN8bnqVRce1_PsybvLmI8RVCygjow8E,2291 +django/contrib/flatpages/locale/pt_BR/LC_MESSAGES/django.po,sha256=pFA8RPNefZpuhbxBHLt9KrI2RiHxct5V-DnZA-XqBv0,2942 +django/contrib/flatpages/locale/ro/LC_MESSAGES/django.mo,sha256=oS3MXuRh2USyLOMrMH0WfMSFpgBcZWfrbCrovYgbONo,2337 +django/contrib/flatpages/locale/ro/LC_MESSAGES/django.po,sha256=UNKGNSZKS92pJDjxKDLqVUW87DKCWP4_Q51xS16IZl0,2632 +django/contrib/flatpages/locale/ru/LC_MESSAGES/django.mo,sha256=AACtHEQuytEohUZVgk-o33O7rJTFAluq22VJOw5JqII,2934 +django/contrib/flatpages/locale/ru/LC_MESSAGES/django.po,sha256=H6JOPAXNxji1oni9kfga_hNZevodStpEl0O6cDnZ148,3312 +django/contrib/flatpages/locale/sk/LC_MESSAGES/django.mo,sha256=P1192D_B2kDQ6nF_tGEW7WCoTodB3_9rMTaqEQSMO4E,2353 +django/contrib/flatpages/locale/sk/LC_MESSAGES/django.po,sha256=--_DaPB_aSZHn_uxzmCpITO7VPCpP4Nq2rdQGgN14r8,2638 +django/contrib/flatpages/locale/sl/LC_MESSAGES/django.mo,sha256=kOrhhBdM9nbQbCLN49bBn23hCrzpAPrfKvPs4QMHgvo,2301 +django/contrib/flatpages/locale/sl/LC_MESSAGES/django.po,sha256=oyTrOVH0v76Ttc93qfeyu3FHcWLh3tTiz2TefGkmoq4,2621 +django/contrib/flatpages/locale/sq/LC_MESSAGES/django.mo,sha256=Jv2sebdAM6CfiLzgi1b7rHo5hp-6_BFeeMQ4_BwYpjk,2328 +django/contrib/flatpages/locale/sq/LC_MESSAGES/django.po,sha256=Xm87FbWaQ1JGhhGx8uvtqwUltkTkwk5Oysagu8qIPUA,2548 +django/contrib/flatpages/locale/sr/LC_MESSAGES/django.mo,sha256=p--v7bpD8Pp6zeP3cdh8fnfC8g2nuhbzGJTdN9eoE58,2770 +django/contrib/flatpages/locale/sr/LC_MESSAGES/django.po,sha256=jxcyMN2Qh_osmo4Jf_6QUC2vW3KVKt1BupDWMMZyAXA,3071 +django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=3N4mGacnZj0tI5tFniLqC2LQCPSopDEM1SGaw5N1bsw,2328 +django/contrib/flatpages/locale/sr_Latn/LC_MESSAGES/django.po,sha256=od7r3dPbZ7tRAJUW80Oe-nm_tHcmIiG6b2OZMsFg53s,2589 +django/contrib/flatpages/locale/sv/LC_MESSAGES/django.mo,sha256=1pFmNWiExWo5owNijZHZb8-Tbd0nYPqqvTmIitcFPbY,2252 +django/contrib/flatpages/locale/sv/LC_MESSAGES/django.po,sha256=l3anvdgLQJzYehCalwr1AAh8e-hRKrL_bSNwmkfgbbc,2613 +django/contrib/flatpages/locale/sw/LC_MESSAGES/django.mo,sha256=Lhf99AGmazKJHzWk2tkGrMInoYOq0mtdCd8SGblnVCQ,1537 +django/contrib/flatpages/locale/sw/LC_MESSAGES/django.po,sha256=cos3eahuznpTfTdl1Vj_07fCOSYE8C9CRYHCBLYZrVw,1991 +django/contrib/flatpages/locale/ta/LC_MESSAGES/django.mo,sha256=nNuoOX-FPAmTvM79o7colM4C7TtBroTFxYtETPPatcQ,1945 +django/contrib/flatpages/locale/ta/LC_MESSAGES/django.po,sha256=XE4SndPZPLf1yXGl5xQSb0uor4OE8CKJ0EIXBRDA3qU,2474 +django/contrib/flatpages/locale/te/LC_MESSAGES/django.mo,sha256=bMxhDMTQc_WseqoeqJMCSNy71o4U5tJZYgD2G0p-jD0,1238 +django/contrib/flatpages/locale/te/LC_MESSAGES/django.po,sha256=tmUWOrAZ98B9T6Cai8AgLCfb_rLeoPVGjDTgdsMOY1Y,2000 +django/contrib/flatpages/locale/tg/LC_MESSAGES/django.mo,sha256=gpzjf_LxwWX6yUrcUfNepK1LGez6yvnuYhmfULDPZ6E,2064 +django/contrib/flatpages/locale/tg/LC_MESSAGES/django.po,sha256=lZFLes8BWdJ-VbczHFDWCSKhKg0qmmk10hTjKcBNr5o,2572 +django/contrib/flatpages/locale/th/LC_MESSAGES/django.mo,sha256=mct17_099pUn0aGuHu8AlZG6UqdKDpYLojqGYDLRXRg,2698 +django/contrib/flatpages/locale/th/LC_MESSAGES/django.po,sha256=PEcRx5AtXrDZvlNGWFH-0arroD8nZbutdJBe8_I02ag,2941 +django/contrib/flatpages/locale/tk/LC_MESSAGES/django.mo,sha256=_AfI4FH0jkeeCDgujfkx4xHMGSwGi5fs9iqr3HLUVVs,835 +django/contrib/flatpages/locale/tk/LC_MESSAGES/django.po,sha256=28Af2gU6Wmo2DvjxLZrpbXq0HBFrcP7yzfh5IlL4DJg,1881 +django/contrib/flatpages/locale/tr/LC_MESSAGES/django.mo,sha256=pPNGylfG8S0iBI4ONZbky3V2Q5AG-M1njp27tFrhhZc,2290 +django/contrib/flatpages/locale/tr/LC_MESSAGES/django.po,sha256=0ULZu3Plp8H9zdirHy3MSduJ_QRdpoaaivf3bL9MCwA,2588 +django/contrib/flatpages/locale/tt/LC_MESSAGES/django.mo,sha256=9RfCKyn0ZNYsqLvFNmY18xVMl7wnmDq5uXscrsFfupk,2007 +django/contrib/flatpages/locale/tt/LC_MESSAGES/django.po,sha256=SUwalSl8JWI9tuDswmnGT8SjuWR3DQGND9roNxJtH1o,2402 +django/contrib/flatpages/locale/udm/LC_MESSAGES/django.mo,sha256=7KhzWgskBlHmi-v61Ax9fjc3NBwHB17WppdNMuz-rEc,490 +django/contrib/flatpages/locale/udm/LC_MESSAGES/django.po,sha256=zidjP05Hx1OpXGqWEmF2cg9SFxASM4loOV85uW7zV5U,1533 +django/contrib/flatpages/locale/ug/LC_MESSAGES/django.mo,sha256=FL8P63c7BRO5hNABEzurk91v01ceRBhC1DJyjFJkiwg,2644 +django/contrib/flatpages/locale/ug/LC_MESSAGES/django.po,sha256=TxlRCGW-6fyxOO3YzAzKJa4utQp4NOOZ08YZxSit9E8,2774 +django/contrib/flatpages/locale/uk/LC_MESSAGES/django.mo,sha256=r2RZT8xQ1Gi9Yp0nnoNALqQ4zrEJ0JC7m26E5gSeq4g,3002 +django/contrib/flatpages/locale/uk/LC_MESSAGES/django.po,sha256=qcVizoTiKYc1c9KwSTwSALHgjjSGVY2oito_bBRLVTE,3405 +django/contrib/flatpages/locale/ur/LC_MESSAGES/django.mo,sha256=Li4gVdFoNOskGKAKiNuse6B2sz6ePGqGvZu7aGXMNy0,1976 +django/contrib/flatpages/locale/ur/LC_MESSAGES/django.po,sha256=hDasKiKrYov9YaNIHIpoooJo0Bzba___IuN2Hl6ofSc,2371 +django/contrib/flatpages/locale/vi/LC_MESSAGES/django.mo,sha256=FsFUi96oGTWGlZwM4qSMpuL1M2TAxsW51qO70TrybSM,1035 +django/contrib/flatpages/locale/vi/LC_MESSAGES/django.po,sha256=ITX3MWd7nlWPxTCoNPl22_OMLTt0rfvajGvTVwo0QC8,1900 +django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=UTCQr9t2wSj6dYLK1ftpF8-pZ25dAMYLRE2wEUQva-o,2124 +django/contrib/flatpages/locale/zh_Hans/LC_MESSAGES/django.po,sha256=loi9RvOnrgFs4qp8FW4RGis7wgDzBBXuwha5pFfLRxY,2533 +django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=INt9_smj4Zwo3hkn3kemuE85lfvwjUrIxbkIHa7Cd_E,2176 +django/contrib/flatpages/locale/zh_Hant/LC_MESSAGES/django.po,sha256=d9De9F9YWkc8YZt51Cg5Xtslwg04G0aRMqxTMAXqQI8,2477 +django/contrib/flatpages/middleware.py,sha256=aXeOeOkUmpdkGOyqZnkR-l1VrDQ161RWIWa3WPBhGac,784 +django/contrib/flatpages/migrations/0001_initial.py,sha256=4xhMsKaXOycsfo9O1QIuknS9wf7r0uVsshAJ7opeqsM,2408 +django/contrib/flatpages/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/flatpages/migrations/__pycache__/0001_initial.cpython-310.pyc,, +django/contrib/flatpages/migrations/__pycache__/__init__.cpython-310.pyc,, +django/contrib/flatpages/models.py,sha256=3ugRRsDwB5C3GHOWvtOzjJl-y0yqqjYZBSOMt24QYuw,1764 +django/contrib/flatpages/sitemaps.py,sha256=CEhZOsLwv3qIJ1hs4eHlE_0AAtYjicb_yRzsstY19eg,584 +django/contrib/flatpages/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/flatpages/templatetags/__pycache__/__init__.cpython-310.pyc,, +django/contrib/flatpages/templatetags/__pycache__/flatpages.cpython-310.pyc,, +django/contrib/flatpages/templatetags/flatpages.py,sha256=QH-suzsoPIMSrgyHR9O8uOdmfIkBv_w3LM-hGfQvnU8,3552 +django/contrib/flatpages/urls.py,sha256=Rs37Ij192SOtSBjd4Lx9YtpINfEMg7XRY01dEOY8Rgg,179 +django/contrib/flatpages/views.py,sha256=H4LG7Janb6Dcn-zINLmp358hR60JigAKGzh4A4PMPaM,2724 +django/contrib/gis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/__pycache__/apps.cpython-310.pyc,, +django/contrib/gis/__pycache__/feeds.cpython-310.pyc,, +django/contrib/gis/__pycache__/geoip2.cpython-310.pyc,, +django/contrib/gis/__pycache__/geometry.cpython-310.pyc,, +django/contrib/gis/__pycache__/measure.cpython-310.pyc,, +django/contrib/gis/__pycache__/ptr.cpython-310.pyc,, +django/contrib/gis/__pycache__/shortcuts.cpython-310.pyc,, +django/contrib/gis/__pycache__/views.cpython-310.pyc,, +django/contrib/gis/admin/__init__.py,sha256=bCUsC6Hh7hztchqRKuaiTgk3nL0B4H053bVII-olB7k,486 +django/contrib/gis/admin/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/admin/__pycache__/options.cpython-310.pyc,, +django/contrib/gis/admin/options.py,sha256=r60rycdAgcGSB21KQS_V0X78ulUjATYzws-JKLYd_lc,689 +django/contrib/gis/apps.py,sha256=dbAFKx9jj9_QdhdNfL5KCC47puH_ZTw098jsJFwDO9Y,417 +django/contrib/gis/db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/backends/__pycache__/utils.cpython-310.pyc,, +django/contrib/gis/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/base/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/backends/base/__pycache__/adapter.cpython-310.pyc,, +django/contrib/gis/db/backends/base/__pycache__/features.cpython-310.pyc,, +django/contrib/gis/db/backends/base/__pycache__/models.cpython-310.pyc,, +django/contrib/gis/db/backends/base/__pycache__/operations.cpython-310.pyc,, +django/contrib/gis/db/backends/base/adapter.py,sha256=qbLG-sLB6EZ_sA6-E_uIClyp5E5hz9UQ-CsR3BWx8W8,592 +django/contrib/gis/db/backends/base/features.py,sha256=fF-AKB6__RjkxVRadNkOP7Av4wMaRGkXKybYV6ES2Gk,3718 +django/contrib/gis/db/backends/base/models.py,sha256=WqpmVLqK21m9J6k_N-SGPXq1VZMuNHafyB9xqxUwR4k,4009 +django/contrib/gis/db/backends/base/operations.py,sha256=_g_B-_AN1OVmarA3O8FdU7hnAgBCX0d4gvqalNRJAYg,6859 +django/contrib/gis/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/mysql/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/base.cpython-310.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/features.cpython-310.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/introspection.cpython-310.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/operations.cpython-310.pyc,, +django/contrib/gis/db/backends/mysql/__pycache__/schema.cpython-310.pyc,, +django/contrib/gis/db/backends/mysql/base.py,sha256=z75wKhm-e9JfRLCvgDq-iv9OqOjBBAS238JTTrWfHRQ,498 +django/contrib/gis/db/backends/mysql/features.py,sha256=dVRo3CuV8Zp5822h9l48nApiXyn3lCuXQV3vsRZKeao,866 +django/contrib/gis/db/backends/mysql/introspection.py,sha256=ZihcSzwN0f8iqKOYKMHuQ_MY41ERSswjP46dvCF0v68,1602 +django/contrib/gis/db/backends/mysql/operations.py,sha256=FLm31EQ4dH5p94SIMaIBlIOWR6QQf7gmD-T9vSA-Pkg,4796 +django/contrib/gis/db/backends/mysql/schema.py,sha256=taCGJ5sEe8GJqd4bi1ODGWFJFCjYJq7rWjMaFeN3GSM,3051 +django/contrib/gis/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/oracle/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/adapter.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/base.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/features.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/introspection.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/models.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/operations.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/__pycache__/schema.cpython-310.pyc,, +django/contrib/gis/db/backends/oracle/adapter.py,sha256=AjD0eMuptu8BqkE2LshTizkf5iv9ArYVP9PoOTHfNao,2066 +django/contrib/gis/db/backends/oracle/base.py,sha256=_7qhvEdbnrJQEKL51sg8YYu8kRYmQNAlBgNb2OUbBkw,507 +django/contrib/gis/db/backends/oracle/features.py,sha256=3yCDutKz4iX01eOjLf0CLe_cemMaRjDmH8ZKNy_Sbyk,1021 +django/contrib/gis/db/backends/oracle/introspection.py,sha256=fW9FTIW_yAQQZwk0LzdoTtj6QQpFN6fgUQzv8dCmFEo,1939 +django/contrib/gis/db/backends/oracle/models.py,sha256=AqtTfN04n3_3zYx79_nawy3CiIO47vqRq7MSiJ9-MaQ,2085 +django/contrib/gis/db/backends/oracle/operations.py,sha256=3-rl7MJQHEAYwpdGhvrgxWqoLubGqvE5pP6rxgsNWNg,8791 +django/contrib/gis/db/backends/oracle/schema.py,sha256=o7fa2jefeT0zajqkLtEwOnvtjuATwCiaIvpVnns4YR4,4271 +django/contrib/gis/db/backends/postgis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/postgis/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/adapter.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/base.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/const.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/features.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/introspection.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/models.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/operations.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/pgraster.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/__pycache__/schema.cpython-310.pyc,, +django/contrib/gis/db/backends/postgis/adapter.py,sha256=3ytnzyTAqB8rmczZE-CPePoG4Pf7lo7glBHdENba6rg,1981 +django/contrib/gis/db/backends/postgis/base.py,sha256=37t0_fDD4IeFsQrMrKoQRW01e8KJeXCSkbv5sOpreR8,5793 +django/contrib/gis/db/backends/postgis/const.py,sha256=ekJc9pvJwQ0tmxENkJsZFdP03uEUEneloR23SJcnTIc,2008 +django/contrib/gis/db/backends/postgis/features.py,sha256=qOEJLQTIC1YdlDoJkpLCiVQU4GAy0d9_Dneui7w41bM,455 +django/contrib/gis/db/backends/postgis/introspection.py,sha256=ihrNd_qHQ64DRjoaPj9-1a0y3H8Ko4gWbK2N5fDA3_g,3164 +django/contrib/gis/db/backends/postgis/models.py,sha256=DfKkmur-8lvr_cflDKE3pTV_vH3Wtxr4bSiXuwPIWhU,2003 +django/contrib/gis/db/backends/postgis/operations.py,sha256=TSta36rbN3HGGG40zTD42oY_e8fwIgwzXPRky8LLyjY,16576 +django/contrib/gis/db/backends/postgis/pgraster.py,sha256=eCa2y-v3qGLeNbFI4ERFj2UmqgYAE19nuL3SgDFmm0o,4588 +django/contrib/gis/db/backends/postgis/schema.py,sha256=dU-o1GQh2lPdiNYmBgd7QTnKq3L3JYqZck5pKn-BA0o,3020 +django/contrib/gis/db/backends/spatialite/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/db/backends/spatialite/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/adapter.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/base.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/client.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/features.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/introspection.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/models.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/operations.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/__pycache__/schema.cpython-310.pyc,, +django/contrib/gis/db/backends/spatialite/adapter.py,sha256=qTiA5BBGUFND3D7xGK_85oo__HSexTH32XF4uin3ZV0,318 +django/contrib/gis/db/backends/spatialite/base.py,sha256=wU1fgp68CLyKELsMfO6zYM85ox4g_GloWESEK8EPrfM,3218 +django/contrib/gis/db/backends/spatialite/client.py,sha256=dNM7mqDyTzFlgQR1XhqZIftnR9VRH7AfcSvvy4vucEs,138 +django/contrib/gis/db/backends/spatialite/features.py,sha256=zkmJPExFtRqjRj608ZTlsSpxkYaPbV3A3SEfX3PcaFY,876 +django/contrib/gis/db/backends/spatialite/introspection.py,sha256=V_iwkz0zyF1U-AKq-UlxvyDImqQCsitcmvxk2cUw81A,3118 +django/contrib/gis/db/backends/spatialite/models.py,sha256=mOQ1cNkmLFCiKYyDjkhbs6Gf20qeFC5joSk7RIdIk-s,1931 +django/contrib/gis/db/backends/spatialite/operations.py,sha256=jaLhSEYHqEewdx1AbaQpwy-S6lZOJiuY2ZwHb1euJ5M,8520 +django/contrib/gis/db/backends/spatialite/schema.py,sha256=URhFfLQM7FH39wmkViD8MZJ1qG3cixhNdWmjuM9ZB44,7340 +django/contrib/gis/db/backends/utils.py,sha256=rLwSv79tKJPxvDHACY8rhPDLFZC79mEIlIySTyl_qqc,785 +django/contrib/gis/db/models/__init__.py,sha256=TrCS27JdVa-Q7Hok-YaJxb4eLrPdyvRmasJGIu05fvA,865 +django/contrib/gis/db/models/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/models/__pycache__/aggregates.cpython-310.pyc,, +django/contrib/gis/db/models/__pycache__/fields.cpython-310.pyc,, +django/contrib/gis/db/models/__pycache__/functions.cpython-310.pyc,, +django/contrib/gis/db/models/__pycache__/lookups.cpython-310.pyc,, +django/contrib/gis/db/models/__pycache__/proxy.cpython-310.pyc,, +django/contrib/gis/db/models/aggregates.py,sha256=ImbuX2AhL6PkEyrGDv_qKIgR9FSeIur7cIMIVKUYnlM,3147 +django/contrib/gis/db/models/fields.py,sha256=n40s9HYbqVpFKIW9b4X4IQ8INWUus7QZi5QdiWVPsTI,14312 +django/contrib/gis/db/models/functions.py,sha256=1zoJCVjBlFK6jjeOHVWHMLW1p1EHyoLM4DmspUqO94w,19606 +django/contrib/gis/db/models/lookups.py,sha256=FOb501DBuopcbLy175O1BwD2ZoaVa2optogbXmvwv3o,11797 +django/contrib/gis/db/models/proxy.py,sha256=qckCc10o_W1qJ7yH5VpNo6huhPfVMAz3nJSEyLfk4oo,3174 +django/contrib/gis/db/models/sql/__init__.py,sha256=-rzcC3izMJi2bnvyQUCMzIOrigBnY6N_5EQIim4wCSY,134 +django/contrib/gis/db/models/sql/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/db/models/sql/__pycache__/conversion.cpython-310.pyc,, +django/contrib/gis/db/models/sql/conversion.py,sha256=ZiMRzEf7_kOWJ4IITXFq6dL-wDwMhIEwvbE705afgaU,2433 +django/contrib/gis/feeds.py,sha256=0vNVVScIww13bOxvlQfXAOCItIOGWSXroKKl6QXGB58,5995 +django/contrib/gis/forms/__init__.py,sha256=Zyid_YlZzHUcMYkfGX1GewmPPDNc0ni7HyXKDTeIkjo,318 +django/contrib/gis/forms/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/forms/__pycache__/fields.cpython-310.pyc,, +django/contrib/gis/forms/__pycache__/widgets.cpython-310.pyc,, +django/contrib/gis/forms/fields.py,sha256=FrZaZWXFUdWK1QEu8wlda3u6EtqaVHjQRYrSKKu66PA,4608 +django/contrib/gis/forms/widgets.py,sha256=jV0TSxB6quB0rbkyAq4QJCdrZt4rA_LaZnO9CHRFdgI,3917 +django/contrib/gis/gdal/LICENSE,sha256=VwoEWoNyts1qAOMOuv6OPo38Cn_j1O8sxfFtQZ62Ous,1526 +django/contrib/gis/gdal/__init__.py,sha256=wpf_P8fG88Bg8vF9uyNfah5QKDD2L5mlFlIOlmwJibc,1828 +django/contrib/gis/gdal/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/base.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/datasource.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/driver.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/envelope.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/error.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/feature.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/field.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/geometries.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/geomtype.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/layer.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/libgdal.cpython-310.pyc,, +django/contrib/gis/gdal/__pycache__/srs.cpython-310.pyc,, +django/contrib/gis/gdal/base.py,sha256=yymyL0vZRMBfiFUzrehvaeaunIxMH5ucGjPRfKj-rAo,181 +django/contrib/gis/gdal/datasource.py,sha256=tlbiem36QDKmWKSDD5uQFSY7kye8Q40gxXcE2EmdFmA,4669 +django/contrib/gis/gdal/driver.py,sha256=wu2m_-lGPO4MDmJrUPBYrGDUD7BnNPFx0RROeE3-qP0,2983 +django/contrib/gis/gdal/envelope.py,sha256=_dLqUUsQpU7WnmYwbkCQai1vkqu-i6NuKlF5BL8iV5U,7324 +django/contrib/gis/gdal/error.py,sha256=Vt-Uis9z786UGE3tD7fjiH8_0P5HSTO81n4fad4l6kw,1578 +django/contrib/gis/gdal/feature.py,sha256=HPWoCZjwzsUnhc7QmKh-BBMRqJCjj07RcFI6vjbdnp4,4017 +django/contrib/gis/gdal/field.py,sha256=EKE-Ioj5L79vo93Oixz_JE4TIZbDTRy0YVGvZH-I1z4,6886 +django/contrib/gis/gdal/geometries.py,sha256=JUnxiv1qVQC3LHiI7PZzqmODnTqXqHkvaSUU3OVM9cY,27567 +django/contrib/gis/gdal/geomtype.py,sha256=CWqbe5XtpgKiBP8Lbisbtb8o1FtuIUVb37Eb02i6TSE,4582 +django/contrib/gis/gdal/layer.py,sha256=PygAgsRZzWekp6kq6NEAZ6vhQTSo1Nk4c1Yi_pOdK58,8825 +django/contrib/gis/gdal/libgdal.py,sha256=AFNcrLSsryDKjmHzYccUXTkUmGMDuQqdfI2JhCcZT8g,3578 +django/contrib/gis/gdal/prototypes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/gdal/prototypes/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/ds.cpython-310.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/errcheck.cpython-310.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/generation.cpython-310.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/geom.cpython-310.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/raster.cpython-310.pyc,, +django/contrib/gis/gdal/prototypes/__pycache__/srs.cpython-310.pyc,, +django/contrib/gis/gdal/prototypes/ds.py,sha256=8YN4GkR3WD0DmvQbC0qSSapg82JIeZ_hev9qKZ5wHdk,4728 +django/contrib/gis/gdal/prototypes/errcheck.py,sha256=EJiU5xldKFzmaSG2ZAByogkEreG7jR0XKEfHnhhDVYw,4174 +django/contrib/gis/gdal/prototypes/generation.py,sha256=8m1MJ1WjAwlmZGWYzPr9imOMJAwHUtW4D81MEvj0Ako,4890 +django/contrib/gis/gdal/prototypes/geom.py,sha256=p0M5oQT_uqwrnvK6Rc08Xr-Z2W1OwD2ZbO0Q_kKtvk4,5951 +django/contrib/gis/gdal/prototypes/raster.py,sha256=jPOBqT6580qCThK5PhigyELzxMdp05RgI4hAKSlie_0,5571 +django/contrib/gis/gdal/prototypes/srs.py,sha256=52Aq0F7CT0_SqoMCaiIXVDVQ9dsnLGGIYXo5jf3EDDU,3677 +django/contrib/gis/gdal/raster/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/gdal/raster/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/gdal/raster/__pycache__/band.cpython-310.pyc,, +django/contrib/gis/gdal/raster/__pycache__/base.cpython-310.pyc,, +django/contrib/gis/gdal/raster/__pycache__/const.cpython-310.pyc,, +django/contrib/gis/gdal/raster/__pycache__/source.cpython-310.pyc,, +django/contrib/gis/gdal/raster/band.py,sha256=RPdut6BeQ9vW71rrPMwb2CnXrbCys8YAt1BA8Aholy0,8343 +django/contrib/gis/gdal/raster/base.py,sha256=2GGlL919lPr7YVGFtdIynLPIH-QKYhzrUpoXwVRlM1k,2882 +django/contrib/gis/gdal/raster/const.py,sha256=C_svBc-x052KJojH1t3pD1N29d67hQxyN8rm8u0141o,3283 +django/contrib/gis/gdal/raster/source.py,sha256=NmsCjTWDbNFt7oEWfSQSN7ZlofyDZ2yJ3ClSAfDjiW0,18394 +django/contrib/gis/gdal/srs.py,sha256=4if-eLG2V-G14subvHNZTZWG2I6nEC79exb4DdZpw3I,12350 +django/contrib/gis/geoip2.py,sha256=X3N2NWdS3UoDhqYdLNCMj9yRMvdOa_fE2vCxIxKvG6k,9344 +django/contrib/gis/geometry.py,sha256=oyapp3-FbCo1f2RQZhDwg-JD2sg1bq5Cgzpfxj-UmuE,788 +django/contrib/gis/geos/LICENSE,sha256=CL8kt1USOK4yUpUkVCWxyuua0PQvni0wPHs1NQJjIEU,1530 +django/contrib/gis/geos/__init__.py,sha256=7BIDN_LCzaNYi0RiDiPwxdm1G76cCiTBJLswcM6CMZI,661 +django/contrib/gis/geos/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/base.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/collections.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/coordseq.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/error.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/factory.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/geometry.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/io.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/libgeos.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/linestring.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/mutable_list.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/point.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/polygon.cpython-310.pyc,, +django/contrib/gis/geos/__pycache__/prepared.cpython-310.pyc,, +django/contrib/gis/geos/base.py,sha256=NdlFg5l9akvDp87aqzh9dk0A3ZH2TI3cOq10mmmuHBk,181 +django/contrib/gis/geos/collections.py,sha256=ucr2-UdxXWVV3EAqa9kDT4mpBbC1-4TOnWJPdg2Phiw,3941 +django/contrib/gis/geos/coordseq.py,sha256=urCtqscgvbkRObpWnFk92qALBd5nl4UPEItRp1kx7N4,6841 +django/contrib/gis/geos/error.py,sha256=r3SNTnwDBI6HtuyL3mQ_iEEeKlOqqqdkHnhNoUkMohw,104 +django/contrib/gis/geos/factory.py,sha256=KQF6lqAh5KRlFSDgN-BSXWojmWFabbEUFgz2IGYX_vk,961 +django/contrib/gis/geos/geometry.py,sha256=smf1Il8p-ZjtUIKNnO60-u2-G28FX7amxmjLqwU8UQ0,26652 +django/contrib/gis/geos/io.py,sha256=GCUL4p6B7FYAHOcPcbTc-QLuSJ3rtvKvU7vfzZpUlsg,800 +django/contrib/gis/geos/libgeos.py,sha256=dCyMvcqRixNpGKx3UyQntZgccGeRXMg7XBYXhIrrUko,4988 +django/contrib/gis/geos/linestring.py,sha256=BJAoWfHW08EX1UpNFVB09iSKXdTS6pZsTIBc6DcZcfc,6372 +django/contrib/gis/geos/mutable_list.py,sha256=nthCtQ0FsJrDGd29cSERwXb-tJkpK35Vc0T_ywCnXgc,10121 +django/contrib/gis/geos/point.py,sha256=bvatsdXTb1XYy1EaSZvp4Rnr2LwXZU12zILefLu6sRw,4781 +django/contrib/gis/geos/polygon.py,sha256=DZq6Ed9bJA3MqhpDQ9u926hHxcnxBjnbKSppHgbShxw,6710 +django/contrib/gis/geos/prepared.py,sha256=J5Dj6e3u3gEfVPNOM1E_rvcmcXR2-CdwtbAcoiDU5a0,1577 +django/contrib/gis/geos/prototypes/__init__.py,sha256=iAnsD0bg8u7Avo7Fmet4lkAo9lnsyyfZFa7k3IQ6T1w,1438 +django/contrib/gis/geos/prototypes/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/coordseq.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/errcheck.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/geom.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/io.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/misc.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/predicates.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/prepared.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/threadsafe.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/__pycache__/topology.cpython-310.pyc,, +django/contrib/gis/geos/prototypes/coordseq.py,sha256=fIcSIzmyCbazQSR-XdvCwtP2YZItQur1Y27vfAKXNfw,3122 +django/contrib/gis/geos/prototypes/errcheck.py,sha256=t_904N1AiAHla7TiY0iLffIpRtlwNXs3gbvhsUP5Q4g,2789 +django/contrib/gis/geos/prototypes/geom.py,sha256=NlR-rUFCj_V3lppSmYSI2bapLim_VUJXABwElTldZM0,3398 +django/contrib/gis/geos/prototypes/io.py,sha256=j5379Sb-uLjW7SpxQiOeDvcJjrb1ZCa9bOa6IhD6sWI,11321 +django/contrib/gis/geos/prototypes/misc.py,sha256=m6gKAPD9B7Yukj4jbyAmqnuT5K5qahGS3MR9Kndd40c,1169 +django/contrib/gis/geos/prototypes/predicates.py,sha256=-NeNemaYkzlvHzcS1vXiBKPHuXj-WB4wE_xRCStWPoM,1662 +django/contrib/gis/geos/prototypes/prepared.py,sha256=4I9pS75Q5MZ1z8A1v0mKkmdCly33Kj_0sDcrqxOppzM,1175 +django/contrib/gis/geos/prototypes/threadsafe.py,sha256=n1yCYvQCtc7piFrhjeZCWH8Pf0-AiOGBH33VZusTgWI,2302 +django/contrib/gis/geos/prototypes/topology.py,sha256=MIpi03Vqn89Upx0sRDJp2B1Z3LpGnBmNQyEXHmquV5Y,2328 +django/contrib/gis/locale/af/LC_MESSAGES/django.mo,sha256=FWnPEpxhJG9xJ-uOTFryxIT6BFN3w-bsgqLn0IHF-Ew,518 +django/contrib/gis/locale/af/LC_MESSAGES/django.po,sha256=v5LXHABklHAVbfrPEx3xXGIHIZ4hz4MmfvZ6beC-XF4,1540 +django/contrib/gis/locale/ar/LC_MESSAGES/django.mo,sha256=5LCO903yJTtRVaaujBrmwMx8f8iLa3ihasgmj8te9eg,2301 +django/contrib/gis/locale/ar/LC_MESSAGES/django.po,sha256=pfUyK0VYgY0VC2_LvWZvG_EEIWa0OqIUfhiPT2Uov3Q,2569 +django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=1e2lutVEjsa5vErMdjS6gaBbOLPTVIpDv15rax-wvKg,2403 +django/contrib/gis/locale/ar_DZ/LC_MESSAGES/django.po,sha256=dizXM36w-rUtI7Dv2mSoJDR5ouVR6Ar7zqjywX3xKr0,2555 +django/contrib/gis/locale/ast/LC_MESSAGES/django.mo,sha256=8o0Us4wR14bdv1M5oBeczYC4oW5uKnycWrj1-lMIqV4,850 +django/contrib/gis/locale/ast/LC_MESSAGES/django.po,sha256=0beyFcBkBOUNvPP45iqewTNv2ExvCPvDYwpafCJY5QM,1684 +django/contrib/gis/locale/az/LC_MESSAGES/django.mo,sha256=FOvFUN-kdoX5OvhaVJg3v4rOyQgAQ_YC--TCE3m4kXs,1901 +django/contrib/gis/locale/az/LC_MESSAGES/django.po,sha256=exlD78A7sUZBPuoLyQGZoYiBa2wWGWnsWKq0gUYUOng,2118 +django/contrib/gis/locale/be/LC_MESSAGES/django.mo,sha256=XcJGF9cH7M30Q8EwqovjAeiJFgB2PR4sXsbxdvVURjg,2389 +django/contrib/gis/locale/be/LC_MESSAGES/django.po,sha256=Cp_DXKCVHzYTA7v65TpjRhCJonkgI5Gy13Tfg1rkVp8,2596 +django/contrib/gis/locale/bg/LC_MESSAGES/django.mo,sha256=lLfpqEEEb1RYzy270gpDdEfv5k5jscyNgJv_Ok_BA_A,2323 +django/contrib/gis/locale/bg/LC_MESSAGES/django.po,sha256=hSxYwbKr-IqP5hJaPKQxoL1DkCIg60suHl1H8u8W7jQ,2586 +django/contrib/gis/locale/bn/LC_MESSAGES/django.mo,sha256=7oNsr_vHQfsanyP-o1FG8jZTSBK8jB3eK2fA9AqNOx4,1070 +django/contrib/gis/locale/bn/LC_MESSAGES/django.po,sha256=PTa9EFZdqfznUH7si3Rq3zp1kNkTOnn2HRTEYXQSOdM,1929 +django/contrib/gis/locale/br/LC_MESSAGES/django.mo,sha256=xN8hOvJi_gDlpdC5_lghXuX6yCBYDPfD_SQLjcvq8gU,1614 +django/contrib/gis/locale/br/LC_MESSAGES/django.po,sha256=LQw3Tp_ymJ_x7mJ6g4SOr6aP00bejkjuaxfFFRZnmaQ,2220 +django/contrib/gis/locale/bs/LC_MESSAGES/django.mo,sha256=9EdKtZkY0FX2NlX_q0tIxXD-Di0SNQJZk3jo7cend0A,1308 +django/contrib/gis/locale/bs/LC_MESSAGES/django.po,sha256=eu_qF8dbmlDiRKGNIz80XtIunrF8QIOcy8O28X02GvQ,1905 +django/contrib/gis/locale/ca/LC_MESSAGES/django.mo,sha256=6aq8xNlP95HRncIB6ThimqW14XFKp7OOjo0S0uT6d-Y,1948 +django/contrib/gis/locale/ca/LC_MESSAGES/django.po,sha256=0Tj64N9TVX-oDyq4srBCgqELmM8OjMgXC5Lci844Fvc,2298 +django/contrib/gis/locale/ckb/LC_MESSAGES/django.mo,sha256=tIH0KyO3XREfX8htOCAK6cJSZkS0BCE15AZngco_Vkw,2253 +django/contrib/gis/locale/ckb/LC_MESSAGES/django.po,sha256=krJj0SQiLAcc1uNA9Qazqy9Ty-7MhauoaIDHtjmPPfo,2442 +django/contrib/gis/locale/cs/LC_MESSAGES/django.mo,sha256=ia8l06-eW5VkQnNQU0aizio7pz_pSGA-KRk-liGRa2w,2026 +django/contrib/gis/locale/cs/LC_MESSAGES/django.po,sha256=8taX01JBHhr19_AKhfhbtlpt-TW1aOBwejN-o-HH5Xk,2274 +django/contrib/gis/locale/cy/LC_MESSAGES/django.mo,sha256=vUG_wzZaMumPwIlKwuN7GFcS9gnE5rpflxoA_MPM_po,1430 +django/contrib/gis/locale/cy/LC_MESSAGES/django.po,sha256=_QjXT6cySUXrjtHaJ3046z-5PoXkCqtOhvA7MCZsXxk,1900 +django/contrib/gis/locale/da/LC_MESSAGES/django.mo,sha256=eXid2KAU_8fd23jMFo41iJ3DntVNe0w939_UsBymGM4,1862 +django/contrib/gis/locale/da/LC_MESSAGES/django.po,sha256=9bSpjg9wv7nvWoaOfRhXKsuxVoMzOHU-fsnVNB8qbxM,2158 +django/contrib/gis/locale/de/LC_MESSAGES/django.mo,sha256=fECmj81LHOUcBcQ_PoQWlijVp3SjTG3GwsSRiUGMXOU,1930 +django/contrib/gis/locale/de/LC_MESSAGES/django.po,sha256=DB_2QZ0IHOxKJ51ZyJCNX24597W7DBc_DT1B-oId-bY,2129 +django/contrib/gis/locale/dsb/LC_MESSAGES/django.mo,sha256=YZOA1XJqoU3rI5REairrs9f36Cet75NmC8WXdApx0Mc,2016 +django/contrib/gis/locale/dsb/LC_MESSAGES/django.po,sha256=w36vo0t-HzjhslJLo5xesc1vVfl94sNP3XyyDcETDn0,2177 +django/contrib/gis/locale/el/LC_MESSAGES/django.mo,sha256=g3SeFfO8xTxsvs2jKG9CI99fTnVa-WuBMNG0FFGc0s8,2402 +django/contrib/gis/locale/el/LC_MESSAGES/django.po,sha256=7MATPbwGZGgWabd9BdmUCwxc2iAG2aeac9ltKsieuME,2853 +django/contrib/gis/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/gis/locale/en/LC_MESSAGES/django.po,sha256=lXk5x3FBMnRKocOgqDiya7yKeXZqk9gkibxyADRQjOU,2074 +django/contrib/gis/locale/en_AU/LC_MESSAGES/django.mo,sha256=IPn5kRqOvv5S7jpbIUw8PEUkHlyjEL-4GuOANd1iAzI,486 +django/contrib/gis/locale/en_AU/LC_MESSAGES/django.po,sha256=x_58HmrHRia2LoYhmmN_NLb1J3f7oTDvwumgTo0LowI,1494 +django/contrib/gis/locale/en_GB/LC_MESSAGES/django.mo,sha256=WkORQDOsFuV2bI7hwVsJr_JTWnDQ8ZaK-VYugqnLv3w,1369 +django/contrib/gis/locale/en_GB/LC_MESSAGES/django.po,sha256=KWPMoX-X-gQhb47zoVsa79-16-SiCGpO0s4xkcGv9z0,1910 +django/contrib/gis/locale/eo/LC_MESSAGES/django.mo,sha256=FFSZ58VHOog4-tDy88OISaaLXMaHVuFsIr3uevM-LGc,1878 +django/contrib/gis/locale/eo/LC_MESSAGES/django.po,sha256=oyMvu7r3BKLV9VDYQI6IgjumYusSOgynlSdN3dDrcPo,2156 +django/contrib/gis/locale/es/LC_MESSAGES/django.mo,sha256=JTo6frVHdq3bDY7IwpP5K6Znbb0NXMyVBv-AOQ6gd9s,2005 +django/contrib/gis/locale/es/LC_MESSAGES/django.po,sha256=3xK9yehM6kTSbulhvTenKXmlBeUnfgqM3_a7waiNit4,2465 +django/contrib/gis/locale/es_AR/LC_MESSAGES/django.mo,sha256=Z_2xqsHzQNSQWphm6jV9efFFjzHmkmuk2KfLZXx5E1k,2006 +django/contrib/gis/locale/es_AR/LC_MESSAGES/django.po,sha256=_PHHHfzhzPI5xaZwDH6Rd35KEbj1l1-9IyPLEENaw6E,2161 +django/contrib/gis/locale/es_CO/LC_MESSAGES/django.mo,sha256=mMnOZTrmWutn2Lwv2Y7GuoZIhIbPsMCXJkdmeatXZaM,1817 +django/contrib/gis/locale/es_CO/LC_MESSAGES/django.po,sha256=JF0-_eNt-BPJ__GqNoEj7iKEOV8htZHyX5kZue-PZO4,2349 +django/contrib/gis/locale/es_MX/LC_MESSAGES/django.mo,sha256=bC-uMgJXdbKHQ-w7ez-6vh9E_2YSgCF_LkOQlvb60BU,1441 +django/contrib/gis/locale/es_MX/LC_MESSAGES/django.po,sha256=MYO9fGclp_VvLG5tXDjXY3J_1FXI4lDv23rGElXAyjA,1928 +django/contrib/gis/locale/es_VE/LC_MESSAGES/django.mo,sha256=5YVIO9AOtmjky90DAXVyU0YltfQ4NLEpVYRTTk7SZ5o,486 +django/contrib/gis/locale/es_VE/LC_MESSAGES/django.po,sha256=R8suLsdDnSUEKNlXzow3O6WIT5NcboZoCjir9GfSTSQ,1494 +django/contrib/gis/locale/et/LC_MESSAGES/django.mo,sha256=-Gn24H3qyIcf3ptRe7Iin8sHc6JtkkFsmJF4DI1Wwhs,1872 +django/contrib/gis/locale/et/LC_MESSAGES/django.po,sha256=c-8desC8uDUy9UrX3IicuGICF2xAWPudgAprvS3G7jY,2223 +django/contrib/gis/locale/eu/LC_MESSAGES/django.mo,sha256=c2YYr77DeKdHWhpq6T472Hc1wpzYQ1fgKXELx7GMW_U,1888 +django/contrib/gis/locale/eu/LC_MESSAGES/django.po,sha256=HVR7BSXjUy3pphfPKp2uapaKVnQeb3chQIxcG5bMxHY,2147 +django/contrib/gis/locale/fa/LC_MESSAGES/django.mo,sha256=oSM2n6s-E4eomcHHZT6gY0PrhUFDr7Wijs3Qkr62jX0,2155 +django/contrib/gis/locale/fa/LC_MESSAGES/django.po,sha256=uUaUbYmjFcZ3mp9-FmGVT3zv47n54sWtzaXHWFSpMik,2507 +django/contrib/gis/locale/fi/LC_MESSAGES/django.mo,sha256=A1QOLEk9dFKcxlE2puSLmdDdFWRwGbSKsDGbKemUsCM,1839 +django/contrib/gis/locale/fi/LC_MESSAGES/django.po,sha256=IbtvFNK1bXmck5zZQqXNCDSiuXcGonNl8UcN0BfopFQ,2064 +django/contrib/gis/locale/fr/LC_MESSAGES/django.mo,sha256=LXchLaOY_bGIf25s_rQgWHOvEMD-l8_HAT5WtC0irfs,2058 +django/contrib/gis/locale/fr/LC_MESSAGES/django.po,sha256=FVuGpVTPP2-f4CZKL0UZwLSxy2WiDczw9_q3KRTbclQ,2258 +django/contrib/gis/locale/fy/LC_MESSAGES/django.mo,sha256=2kCnWU_giddm3bAHMgDy0QqNwOb9qOiEyCEaYo1WdqQ,476 +django/contrib/gis/locale/fy/LC_MESSAGES/django.po,sha256=7ncWhxC5OLhXslQYv5unWurhyyu_vRsi4bGflZ6T2oQ,1484 +django/contrib/gis/locale/ga/LC_MESSAGES/django.mo,sha256=5oExwd6zeo9pBXhr1u_su8cllMEOQ-PnkUCkqFcQyYo,1957 +django/contrib/gis/locale/ga/LC_MESSAGES/django.po,sha256=CZngY66ohYP6Xr25Cghym_gW2AKpQlRRdIBYBMej5AY,2193 +django/contrib/gis/locale/gd/LC_MESSAGES/django.mo,sha256=w9d6GRaJMzeRVMzOuapvpPayOQmrFQEwPf8g4TXSatg,2022 +django/contrib/gis/locale/gd/LC_MESSAGES/django.po,sha256=2jXpd-BBQ7JVj2l9tWhIkUXw4ZZPnGJrvHjs442GEx8,2197 +django/contrib/gis/locale/gl/LC_MESSAGES/django.mo,sha256=vjZQqAw3rDSY8Tgv-12EOhsqfFlaEOB7mVBOH6YlXNo,1956 +django/contrib/gis/locale/gl/LC_MESSAGES/django.po,sha256=zhqF1InI8QaKhDLqjfTRUbMPaT9X3D1eI1ocV5FHGf4,2231 +django/contrib/gis/locale/he/LC_MESSAGES/django.mo,sha256=qaxQ0A76SO7GM5WDK0_3pAJDFzkvAtjSV8r1P4ySCVY,2135 +django/contrib/gis/locale/he/LC_MESSAGES/django.po,sha256=f8w5v4W7w47vH6Tq4HfMOX9jB4ab0oEXnpuJcDlk7Ak,2336 +django/contrib/gis/locale/hi/LC_MESSAGES/django.mo,sha256=3nsy5mxKTPtx0EpqBNA_TJXmLmVZ4BPUZG72ZEe8OPM,1818 +django/contrib/gis/locale/hi/LC_MESSAGES/django.po,sha256=jTFG2gqqYAQct9-to0xL2kUFQu-ebR4j7RGfxn4sBAg,2372 +django/contrib/gis/locale/hr/LC_MESSAGES/django.mo,sha256=0XrRj2oriNZxNhEwTryo2zdMf-85-4X7fy7OJhB5ub4,1549 +django/contrib/gis/locale/hr/LC_MESSAGES/django.po,sha256=iijzoBoD_EJ1n-a5ys5CKnjzZzG299zPoCN-REFkeqE,2132 +django/contrib/gis/locale/hsb/LC_MESSAGES/django.mo,sha256=oXaJFKOmRL_hRqAbghejIgZiq67bAnrOV0eFpoqmyW0,1991 +django/contrib/gis/locale/hsb/LC_MESSAGES/django.po,sha256=uktC4ibheBFFZVh0LVtRVUT3RnefGXVOVQddK70hdgg,2155 +django/contrib/gis/locale/hu/LC_MESSAGES/django.mo,sha256=dXlt0Oq_W45B_Foneh2FgpExduFanuG7ia0wKsYCUqs,1891 +django/contrib/gis/locale/hu/LC_MESSAGES/django.po,sha256=Ws1oB2MpVa90a0JNK2LxsZytKBuMMNwLx0DW1sem4Es,2210 +django/contrib/gis/locale/hy/LC_MESSAGES/django.mo,sha256=pi9oAP8fLCg8ssz7ADZ_p9HntyDtdQ1Mep6KsR5Glfs,2020 +django/contrib/gis/locale/hy/LC_MESSAGES/django.po,sha256=FKRbr93M2S4dLWes80CTZ1AucKW8MF5cw98i0s8qZo4,2260 +django/contrib/gis/locale/ia/LC_MESSAGES/django.mo,sha256=gSHcbhwZ2H1amTQbWw908L0aTniLzK8T2RVGsiHuKIY,1812 +django/contrib/gis/locale/ia/LC_MESSAGES/django.po,sha256=IyKoOfc6ZNtvpL8s-r4lv41wlsCyq8CGNoNp7uHWUGE,2122 +django/contrib/gis/locale/id/LC_MESSAGES/django.mo,sha256=dzDiuO47A6XWR3G-OrY-A2c-7ccp1oGLlKPyUO2Wlpg,1862 +django/contrib/gis/locale/id/LC_MESSAGES/django.po,sha256=KZVcWZ_X8x3LO5Z4V-hzSEsvE-BEHIZq5eWJlW1SwZs,2278 +django/contrib/gis/locale/io/LC_MESSAGES/django.mo,sha256=_yUgF2fBUxVAZAPNw2ROyWly5-Bq0niGdNEzo2qbp8k,464 +django/contrib/gis/locale/io/LC_MESSAGES/django.po,sha256=fgGJ1xzliMK0MlVoV9CQn_BuuS3Kl71Kh5YEybGFS0Y,1472 +django/contrib/gis/locale/is/LC_MESSAGES/django.mo,sha256=UQb3H5F1nUxJSrADpLiYe12TgRhYKCFQE5Xy13MzEqU,1350 +django/contrib/gis/locale/is/LC_MESSAGES/django.po,sha256=8QWtgdEZR7OUVXur0mBCeEjbXTBjJmE-DOiKe55FvMo,1934 +django/contrib/gis/locale/it/LC_MESSAGES/django.mo,sha256=8VddOMr-JMs5D-J5mq-UgNnhf98uutpoJYJKTr8E224,1976 +django/contrib/gis/locale/it/LC_MESSAGES/django.po,sha256=Vp1G-GChjjTsODwABsg5LbmR6_Z-KpslwkNUipuOqk4,2365 +django/contrib/gis/locale/ja/LC_MESSAGES/django.mo,sha256=SY1Kxu_gIqusDX5-4SvWmfGi5zG_-jG_98wbkkUyMfk,2052 +django/contrib/gis/locale/ja/LC_MESSAGES/django.po,sha256=tui2WDqNwYHiOkR9j9kl8YSs_kzZ5MTHAj9hniHKI_8,2357 +django/contrib/gis/locale/ka/LC_MESSAGES/django.mo,sha256=iqWQ9j8yanPjDhwi9cNSktYgfLVnofIsdICnAg2Y_to,1991 +django/contrib/gis/locale/ka/LC_MESSAGES/django.po,sha256=rkM7RG0zxDN8vqyAudmk5nocajhOYP6CTkdJKu21Pf4,2571 +django/contrib/gis/locale/kk/LC_MESSAGES/django.mo,sha256=NtgQONp0UncUNvrh0W2R7u7Ja8H33R-a-tsQShWq-QI,1349 +django/contrib/gis/locale/kk/LC_MESSAGES/django.po,sha256=78OMHuerBJZJZVo9GjGJ1h5fwdLuSc_X03ZhSRibtf4,1979 +django/contrib/gis/locale/km/LC_MESSAGES/django.mo,sha256=T0aZIZ_gHqHpQyejnBeX40jdcfhrCOjgKjNm2hLrpNE,459 +django/contrib/gis/locale/km/LC_MESSAGES/django.po,sha256=7ARjFcuPQJG0OGLJu9pVfSiAwc2Q-1tT6xcLeKeom1c,1467 +django/contrib/gis/locale/kn/LC_MESSAGES/django.mo,sha256=EkJRlJJSHZJvNZJuOLpO4IIUEoyi_fpKwNWe0OGFcy4,461 +django/contrib/gis/locale/kn/LC_MESSAGES/django.po,sha256=MnsSftGvmgJgGfgayQUVDMj755z8ItkM9vBehORfYbk,1475 +django/contrib/gis/locale/ko/LC_MESSAGES/django.mo,sha256=TyIytTrPe4GO6lRsK1CW0wIdhbrwDHxlO_29OX6MoH4,1888 +django/contrib/gis/locale/ko/LC_MESSAGES/django.po,sha256=V5OQ0oW3zU8MMdlOJXk-4RQo0UV3cCAhgSMOaQRgttM,2296 +django/contrib/gis/locale/ky/LC_MESSAGES/django.mo,sha256=nvMSOW77P-YCRkQgrQUpM94FexqLEt8Et0jri2nm_Ec,2157 +django/contrib/gis/locale/ky/LC_MESSAGES/django.po,sha256=0qqO8QWgJXPJpZ900MVsHdw6wMZBa0tE5GN3KSGa58E,2372 +django/contrib/gis/locale/lb/LC_MESSAGES/django.mo,sha256=XAyZQUi8jDr47VpSAHp_8nQb0KvSMJHo5THojsToFdk,474 +django/contrib/gis/locale/lb/LC_MESSAGES/django.po,sha256=5rfudPpH4snSq2iVm9E81EBwM0S2vbkY2WBGhpuga1Q,1482 +django/contrib/gis/locale/lt/LC_MESSAGES/django.mo,sha256=AD69M-SBrmQ5qaFKXX6FYOOXLfhuWlQdOYcMlV0UClo,2036 +django/contrib/gis/locale/lt/LC_MESSAGES/django.po,sha256=1yXUj9Hf4D2iyl97HoRuJLkfnR7Z-WmOoIJil98Cy-M,2366 +django/contrib/gis/locale/lv/LC_MESSAGES/django.mo,sha256=ZNt2B2qukArT3gRZE2SNsKna5pf9-UcsTUbQ3UbbQKA,1978 +django/contrib/gis/locale/lv/LC_MESSAGES/django.po,sha256=CM5WUeTmm4pp5Y4E1Cm3aCwGmTHNSyjSU3B44dRYdHA,2215 +django/contrib/gis/locale/mk/LC_MESSAGES/django.mo,sha256=fLSXxmJFE9kYsKMiwWAXS-9TweB_yuWzAjR-y0eysvI,2518 +django/contrib/gis/locale/mk/LC_MESSAGES/django.po,sha256=P2IKvpaMOj5UvJX_Lz-PE0-1D7Kt_fYM5Amm3d5g6t4,2918 +django/contrib/gis/locale/ml/LC_MESSAGES/django.mo,sha256=Kl9okrE3AzTPa5WQ-IGxYVNSRo2y_VEdgDcOyJ_Je78,2049 +django/contrib/gis/locale/ml/LC_MESSAGES/django.po,sha256=PWg8atPKfOsnVxg_uro8zYO9KCE1UVhfy_zmCWG0Bdk,2603 +django/contrib/gis/locale/mn/LC_MESSAGES/django.mo,sha256=DlGtHJJMKLVntNdaPBXZw9ApM_SjUYEYAgE9DpZv33w,2323 +django/contrib/gis/locale/mn/LC_MESSAGES/django.po,sha256=z9E7N3TXiMCd2FCunpMjS55-uamM_G4iQpI1MoTDSVY,2766 +django/contrib/gis/locale/mr/LC_MESSAGES/django.mo,sha256=3be2jV7c3MBww-fNMk8A9l9hWDwR4pgSmfztJj6cio0,510 +django/contrib/gis/locale/mr/LC_MESSAGES/django.po,sha256=dKaMdzicJqGwxA5VF1GeM3wGUQOtsnWCeHoGGcjFy-o,1530 +django/contrib/gis/locale/ms/LC_MESSAGES/django.mo,sha256=5_xS-XXVyw0cxvDzUIus5JImr0dkcswait04e7TrUtY,1828 +django/contrib/gis/locale/ms/LC_MESSAGES/django.po,sha256=I8rMkUEfsbjf-dWUuXyhYwCXhyX8AS3jjOKinAh7q2Q,1956 +django/contrib/gis/locale/my/LC_MESSAGES/django.mo,sha256=e6G8VbCCthUjV6tV6PRCy_ZzsXyZ-1OYjbYZIEShbXI,525 +django/contrib/gis/locale/my/LC_MESSAGES/django.po,sha256=R3v1S-904f8FWSVGHe822sWrOJI6cNJIk93-K7_E_1c,1580 +django/contrib/gis/locale/nb/LC_MESSAGES/django.mo,sha256=mx9uGqo5w_uRBWHswuEKoI-U-RX_Xvx_qck5ForI63Y,1808 +django/contrib/gis/locale/nb/LC_MESSAGES/django.po,sha256=LVjQsJxXdDBuKS5D7BEJ10C9OE8x3g0f9ewgjoG6fbY,2039 +django/contrib/gis/locale/ne/LC_MESSAGES/django.mo,sha256=nB-Ta8w57S6hIAhAdWZjDT0Dg6JYGbAt5FofIhJT7k8,982 +django/contrib/gis/locale/ne/LC_MESSAGES/django.po,sha256=eMH6uKZZZYn-P3kmHumiO4z9M4923s9tWGhHuJ0eWuI,1825 +django/contrib/gis/locale/nl/LC_MESSAGES/django.mo,sha256=ScPsjM7aMa8PwcbxliFgqfS7_WyOuTGmODGAZY85UM4,1897 +django/contrib/gis/locale/nl/LC_MESSAGES/django.po,sha256=zoUzuPhO4XGlrhmRluXNRMpjD7lEIjAW8TufBqAOO4o,2408 +django/contrib/gis/locale/nn/LC_MESSAGES/django.mo,sha256=P1RU0OICBDeHHtX6rCSB4xXgS4Qn97LqoxJ8phgiMDs,1830 +django/contrib/gis/locale/nn/LC_MESSAGES/django.po,sha256=-mkHmKp3b76uZlFOG3lFLp2nEFtBRV_4ThDPQmUWtX4,2027 +django/contrib/gis/locale/os/LC_MESSAGES/django.mo,sha256=02NpGC8WPjxmPqQkfv9Kj2JbtECdQCtgecf_Tjk1CZc,1594 +django/contrib/gis/locale/os/LC_MESSAGES/django.po,sha256=JBIsv5nJg3Wof7Xy7odCI_xKRBLN_Hlbb__kNqNW4Xw,2161 +django/contrib/gis/locale/pa/LC_MESSAGES/django.mo,sha256=JR1NxG5_h_dFE_7p6trBWWIx-QqWYIgfGomnjaCsWAA,1265 +django/contrib/gis/locale/pa/LC_MESSAGES/django.po,sha256=Ejd_8dq_M0E9XFijk0qj4oC-8_oe48GWWHXhvOrFlnY,1993 +django/contrib/gis/locale/pl/LC_MESSAGES/django.mo,sha256=KHar168QJ7Mj0419885rkyRXvWXkICAi0hUbb8KssY8,2045 +django/contrib/gis/locale/pl/LC_MESSAGES/django.po,sha256=cfeYjcF9R8VKujBMGLx_1z9zDY19DPCjUw5FpHuBIqs,2487 +django/contrib/gis/locale/pt/LC_MESSAGES/django.mo,sha256=sE5PPOHzfT8QQXuV5w0m2pnBTRhKYs_vFhk8p_A4Jg0,2036 +django/contrib/gis/locale/pt/LC_MESSAGES/django.po,sha256=TFt6Oj1NlCM3pgs2dIgFZR3S3y_g7oR7S-XRBlM4924,2443 +django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.mo,sha256=5HGIao480s3B6kXtSmdy1AYjGUZqbYuZ9Eapho_jkTk,1976 +django/contrib/gis/locale/pt_BR/LC_MESSAGES/django.po,sha256=4-2WPZT15YZPyYbH7xnBRc7A8675875kVFjM9tr1o5U,2333 +django/contrib/gis/locale/ro/LC_MESSAGES/django.mo,sha256=jncf415WRI-GaemNGtbXITeYpx2zbokFNfQkONIOSO4,1770 +django/contrib/gis/locale/ro/LC_MESSAGES/django.po,sha256=5Xb2c11mwOdsd1D8SZC5u6nsuNjWEtdT1hslrQBfxP0,2181 +django/contrib/gis/locale/ru/LC_MESSAGES/django.mo,sha256=j9DEE5SVvEXWBj_PtR9_1IsaE-YCq4iOBcaiyHHqOEo,2481 +django/contrib/gis/locale/ru/LC_MESSAGES/django.po,sha256=fgj-PmNJ88IsjUUq7x9W6KSwXWdmnEq1PBlWsLFhzwE,2835 +django/contrib/gis/locale/sk/LC_MESSAGES/django.mo,sha256=FQy4gMIxrXNm42pvJ61q4ZfG0Ce98gv78b2I0vYN2CY,1980 +django/contrib/gis/locale/sk/LC_MESSAGES/django.po,sha256=z7uy3S2VXGZKMfgFLISYUPUb-zyEYXqlDgL_ODmb_4w,2315 +django/contrib/gis/locale/sl/LC_MESSAGES/django.mo,sha256=Ha88TShV2Bt_Jmvlkkc81CUkuV2iKfhGjzpD7KLMhv8,1972 +django/contrib/gis/locale/sl/LC_MESSAGES/django.po,sha256=B81yHSMjOYevk35kC4JEi4Ua3axjadkFW8aRuMnj6P0,2319 +django/contrib/gis/locale/sq/LC_MESSAGES/django.mo,sha256=hTehi3p1Qf7RCqK4vvcL-yoV7GVdbcokLN_5RGtmivE,1660 +django/contrib/gis/locale/sq/LC_MESSAGES/django.po,sha256=qnNVwZ69HLsTRC5GVYtVkIcZTCT_lNGjlDUibpCefr8,2037 +django/contrib/gis/locale/sr/LC_MESSAGES/django.mo,sha256=bM996RqI1wt4qHsUaGXoEO3fnaSZdjVD2TvUFDp5dVk,2365 +django/contrib/gis/locale/sr/LC_MESSAGES/django.po,sha256=hunakYgljjOiiYF98ZzFzIHTkIAGQM_IJLiLfmlR86Q,2628 +django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=kniIObavM7XKqD5vcglrbcD8jqANKg7hN6AP4cIVAI0,1981 +django/contrib/gis/locale/sr_Latn/LC_MESSAGES/django.po,sha256=A2NsZJvk2Cckg8OS3yW_T11Tcv5-zgGEHcDRJpvE8Zg,2206 +django/contrib/gis/locale/sv/LC_MESSAGES/django.mo,sha256=CowUAoL4t4np5cBndBNM-a4Wu5oD899nVfifMOLz6xQ,1880 +django/contrib/gis/locale/sv/LC_MESSAGES/django.po,sha256=Xyzc8X3vwQ3wWfS4_5mpwFXPPAeCx4mODYFq3Kba04g,2252 +django/contrib/gis/locale/sw/LC_MESSAGES/django.mo,sha256=uBhpGHluGwYpODTE-xhdJD2e6PHleN07wLE-kjrXr_M,1426 +django/contrib/gis/locale/sw/LC_MESSAGES/django.po,sha256=nHXQQMYYXT1ec3lIBxQIDIAwLtXucX47M4Cozy08kko,1889 +django/contrib/gis/locale/ta/LC_MESSAGES/django.mo,sha256=Rboo36cGKwTebe_MiW4bOiMsRO2isB0EAyJJcoy_F6s,466 +django/contrib/gis/locale/ta/LC_MESSAGES/django.po,sha256=sLYW8_5BSVoSLWUr13BbKRe0hNJ_cBMEtmjCPBdTlAk,1474 +django/contrib/gis/locale/te/LC_MESSAGES/django.mo,sha256=xDkaSztnzQ33Oc-GxHoSuutSIwK9A5Bg3qXEdEvo4h4,824 +django/contrib/gis/locale/te/LC_MESSAGES/django.po,sha256=nYryhktJumcwtZDGZ43xBxWljvdd-cUeBrAYFZOryVg,1772 +django/contrib/gis/locale/tg/LC_MESSAGES/django.mo,sha256=6Jyeaq1ORsnE7Ceh_rrhbfslFskGe12Ar-dQl6NFyt0,611 +django/contrib/gis/locale/tg/LC_MESSAGES/django.po,sha256=9c1zPt7kz1OaRJPPLdqjQqO8MT99KtS9prUvoPa9qJk,1635 +django/contrib/gis/locale/th/LC_MESSAGES/django.mo,sha256=0kekAr7eXc_papwPAxEZ3TxHOBg6EPzdR3q4hmAxOjg,1835 +django/contrib/gis/locale/th/LC_MESSAGES/django.po,sha256=WJPdoZjLfvepGGMhfBB1EHCpxtxxfv80lRjPG9kGErM,2433 +django/contrib/gis/locale/tr/LC_MESSAGES/django.mo,sha256=5EKMteFT0WXGacwXnRt5Eak00kbtYmqskkuCg2rGvyc,1904 +django/contrib/gis/locale/tr/LC_MESSAGES/django.po,sha256=DSIty_3V3G_Pv498EU3H60-5jS0b1S5tPwR_fkwpq98,2180 +django/contrib/gis/locale/tt/LC_MESSAGES/django.mo,sha256=cGVPrWCe4WquVV77CacaJwgLSnJN0oEAepTzNMD-OWk,1470 +django/contrib/gis/locale/tt/LC_MESSAGES/django.po,sha256=98yeRs-JcMGTyizOpEuQenlnWJMYTR1-rG3HGhKCykk,2072 +django/contrib/gis/locale/udm/LC_MESSAGES/django.mo,sha256=I6bfLvRfMn79DO6bVIGfYSVeZY54N6c8BNO7OyyOOsw,462 +django/contrib/gis/locale/udm/LC_MESSAGES/django.po,sha256=B1PCuPYtNOrrhu4fKKJgkqxUrcEyifS2Y3kw-iTmSIk,1470 +django/contrib/gis/locale/ug/LC_MESSAGES/django.mo,sha256=cKr7ETLbYR1nMm2iJsQwZYKz8U5aP2CX5RdhbKW2gh4,2360 +django/contrib/gis/locale/ug/LC_MESSAGES/django.po,sha256=d1P7kH2ETJ9n34d9ALE0tHWw_1_fq7fuiLBNK2IlM10,2529 +django/contrib/gis/locale/uk/LC_MESSAGES/django.mo,sha256=jsJMgEt6VXoSjksQGngxaywARUsk5tiIKJfUw9kgEBw,2513 +django/contrib/gis/locale/uk/LC_MESSAGES/django.po,sha256=NNAUWdHmhsWtrPIgddjT03k4IeJUlUCYM7n78DisFQw,3015 +django/contrib/gis/locale/ur/LC_MESSAGES/django.mo,sha256=tB5tz7EscuE9IksBofNuyFjk89-h5X7sJhCKlIho5SY,1410 +django/contrib/gis/locale/ur/LC_MESSAGES/django.po,sha256=16m0t10Syv76UcI7y-EXfQHETePmrWX4QMVfyeuX1fQ,2007 +django/contrib/gis/locale/vi/LC_MESSAGES/django.mo,sha256=NT5T0FRCC2XINdtaCFCVUxb5VRv8ta62nE8wwSHGTrc,1384 +django/contrib/gis/locale/vi/LC_MESSAGES/django.po,sha256=y77GtqH5bv1wR78xN5JLHusmQzoENTH9kLf9Y3xz5xk,1957 +django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=NvNiRwwuqrmOWqiiuYhoxTs3CXb9Zq0-R_2YVhY6n34,1760 +django/contrib/gis/locale/zh_Hans/LC_MESSAGES/django.po,sha256=jXKQKr3GOjL5LJ7Mv1O3zpn2hr_sA_31ote8Pzk9tOU,2232 +django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=jbNgO-5ICEWlqu5BaaKrPQ5XIC1CDzpYbbXA6_Xo-D0,1811 +django/contrib/gis/locale/zh_Hant/LC_MESSAGES/django.po,sha256=h72hJ3socDnGCoPHREClni4DxDS0B-n-8EGAADlnmK4,2139 +django/contrib/gis/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/management/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/management/commands/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/management/commands/__pycache__/inspectdb.cpython-310.pyc,, +django/contrib/gis/management/commands/__pycache__/ogrinspect.cpython-310.pyc,, +django/contrib/gis/management/commands/inspectdb.py,sha256=8WhDOBICFAbLFu7kwAAS4I5pNs_p1BrCv8GJYI3S49k,760 +django/contrib/gis/management/commands/ogrinspect.py,sha256=XnWAbLxRxTSvbKSvjgePN7D1o_Ep4qWkvMwVrG1TpYY,6071 +django/contrib/gis/measure.py,sha256=3Kwchst6tJFwK9tMQb5oD6_eUVNnSMyKruOEDuxT7Rc,12573 +django/contrib/gis/ptr.py,sha256=NeIBB-plwO61wGOOxGg7fFyVXI4a5vbAGUdaJ_Fmjqo,1312 +django/contrib/gis/serializers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/gis/serializers/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/serializers/__pycache__/geojson.cpython-310.pyc,, +django/contrib/gis/serializers/geojson.py,sha256=lgwJ0xh-mjMVwJi_UpHH7MTKtjH_7txIQyLG-G2C4-A,3000 +django/contrib/gis/shortcuts.py,sha256=aa9zFjVU38qaEvRc0vAH_j2AgAERlI01rphYLHbc7Tg,1027 +django/contrib/gis/sitemaps/__init__.py,sha256=Tjj057omOVcoC5Fb8ITEYVhLm0HcVjrZ1Mbz_tKoD1A,138 +django/contrib/gis/sitemaps/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/sitemaps/__pycache__/kml.cpython-310.pyc,, +django/contrib/gis/sitemaps/__pycache__/views.cpython-310.pyc,, +django/contrib/gis/sitemaps/kml.py,sha256=CUn_KKVrwGg2ZmmDcWosBc0QFuJp8hHpeNRCcloVk1U,2573 +django/contrib/gis/sitemaps/views.py,sha256=AFV1ay-oFftFC-IszzeKz3JAGzE0TOCH8pN1cwtg7yI,2353 +django/contrib/gis/static/gis/css/ol3.css,sha256=DmCfOuPC1wUs0kioWxIpSausvF6AYUlURbJLNGyvngA,773 +django/contrib/gis/static/gis/img/draw_line_off.svg,sha256=6XW83xsR5-Guh27UH3y5UFn9y9FB9T_Zc4kSPA-xSOI,918 +django/contrib/gis/static/gis/img/draw_line_on.svg,sha256=Hx-pXu4ped11esG6YjXP1GfZC5q84zrFQDPUo1C7FGA,892 +django/contrib/gis/static/gis/img/draw_point_off.svg,sha256=PICrywZPwuBkaQAKxR9nBJ0AlfTzPHtVn_up_rSiHH4,803 +django/contrib/gis/static/gis/img/draw_point_on.svg,sha256=raGk3oc8w87rJfLdtZ4nIXJyU3OChCcTd4oH-XAMmmM,803 +django/contrib/gis/static/gis/img/draw_polygon_off.svg,sha256=gnVmjeZE2jOvjfyx7mhazMDBXJ6KtSDrV9f0nSzkv3A,981 +django/contrib/gis/static/gis/img/draw_polygon_on.svg,sha256=ybJ9Ww7-bsojKQJtjErLd2cCOgrIzyqgIR9QNhH_ZfA,982 +django/contrib/gis/static/gis/js/OLMapWidget.js,sha256=JdZJtX4EP_pphsjxs7EnZdfHGM1s5Zsn1MQ38JDU0JQ,9019 +django/contrib/gis/templates/gis/kml/base.kml,sha256=VYnJaGgFVHRzDjiFjbcgI-jxlUos4B4Z1hx_JeI2ZXU,219 +django/contrib/gis/templates/gis/kml/placemarks.kml,sha256=TEC81sDL9RK2FVeH0aFJTwIzs6_YWcMeGnHkACJV1Uc,360 +django/contrib/gis/templates/gis/openlayers-osm.html,sha256=TeiUqCjt73W8Hgrp_6zAtk_ZMBxskNN6KHSmnJ1-GD4,378 +django/contrib/gis/templates/gis/openlayers.html,sha256=J9e_MAMgfMR8NFH9bhQ_ZDIsjKCiCfRRp0__bKK6TK4,1418 +django/contrib/gis/utils/__init__.py,sha256=pnsvryh3ad9wlaf1r7srfi-OwQzktSZzHoaoVZyo14U,683 +django/contrib/gis/utils/__pycache__/__init__.cpython-310.pyc,, +django/contrib/gis/utils/__pycache__/layermapping.cpython-310.pyc,, +django/contrib/gis/utils/__pycache__/ogrinfo.cpython-310.pyc,, +django/contrib/gis/utils/__pycache__/ogrinspect.cpython-310.pyc,, +django/contrib/gis/utils/__pycache__/srs.cpython-310.pyc,, +django/contrib/gis/utils/layermapping.py,sha256=AgEgNEzIUUW0a482UW5iUfVbY1HlQPl8Q9YEuRMau_Q,29043 +django/contrib/gis/utils/ogrinfo.py,sha256=6m3KaRzLoZtQ0OSrpRkaFIQXi9YOXTkQcYeqYb0S0nw,1956 +django/contrib/gis/utils/ogrinspect.py,sha256=f31eRqR5ybC-QR2mOjNWszYDANCWdEEgyqeIcvBAC4g,9170 +django/contrib/gis/utils/srs.py,sha256=UXsbxW0cQzdnPKO0d9E5K2HPdekdab5NaLZWNOUq-zk,2962 +django/contrib/gis/views.py,sha256=zdCV8QfUVfxEFGxESsUtCicsbSVtZNI_IXybdmsHKiM,714 +django/contrib/humanize/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/humanize/__pycache__/__init__.cpython-310.pyc,, +django/contrib/humanize/__pycache__/apps.cpython-310.pyc,, +django/contrib/humanize/apps.py,sha256=LH3PTbB4V1gbBc8nmCw3BsSuA8La0fNOb4cSISvJAwI,194 +django/contrib/humanize/locale/af/LC_MESSAGES/django.mo,sha256=yFvTzvROTnoZF4ZPAs3z9ireOuOf5gTfECEUdGa4EkM,4224 +django/contrib/humanize/locale/af/LC_MESSAGES/django.po,sha256=m8GF4T4HY4aGsfadUdu04yc7cq9Sm-K5LM-OFjTrq5Y,7541 +django/contrib/humanize/locale/ar/LC_MESSAGES/django.mo,sha256=PokPfBR8w4AbRtNNabl5vO8r5E8_egHvFBjKp4CCvO4,7510 +django/contrib/humanize/locale/ar/LC_MESSAGES/django.po,sha256=QGW-kx-87DlPMGr5l_Eb6Ge-x4tkz2PuwHDe3EIkIQg,12326 +django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=NwCrL5FX_xdxYdqkW_S8tmU8ktDM8LqimmUvkt8me74,9155 +django/contrib/humanize/locale/ar_DZ/LC_MESSAGES/django.po,sha256=tt0AxhohGX79OQ_lX1S5soIo-iSCC07SdAhPpy0O7Q4,15234 +django/contrib/humanize/locale/ast/LC_MESSAGES/django.mo,sha256=WvBk8V6g1vgzGqZ_rR-4p7SMh43PFnDnRhIS9HSwdoQ,3468 +django/contrib/humanize/locale/ast/LC_MESSAGES/django.po,sha256=S9lcUf2y5wR8Ufa-Rlz-M73Z3bMo7zji_63cXwtDK2I,5762 +django/contrib/humanize/locale/az/LC_MESSAGES/django.mo,sha256=ukqeNWHDFXv3XhvfpX8ZU6sb-CrUIx_ks_gwNNWfiFw,4311 +django/contrib/humanize/locale/az/LC_MESSAGES/django.po,sha256=RLGjARRoX9wwBS8Y4EBiC_0iWig93qKaWel4sLOqLhM,7765 +django/contrib/humanize/locale/be/LC_MESSAGES/django.mo,sha256=7KyJKhNqMqv32CPdJi01RPLBefOVCQW-Gx6-Vf9JVrs,6653 +django/contrib/humanize/locale/be/LC_MESSAGES/django.po,sha256=2mbReEHyXhmZysqhSmaT6A2XCHn8mYb2R_O16TMGCAo,10666 +django/contrib/humanize/locale/bg/LC_MESSAGES/django.mo,sha256=jCdDIbqWlhOs-4gML44wSRIXJQxypfak6ByRG_reMsk,4823 +django/contrib/humanize/locale/bg/LC_MESSAGES/django.po,sha256=v2ih4-pL1cdDXaa3uXm9FxRjRKyULLGyz78Q91eKEG8,8267 +django/contrib/humanize/locale/bn/LC_MESSAGES/django.mo,sha256=jbL4ucZxxtexI10jgldtgnDie3I23XR3u-PrMMMqP6U,4026 +django/contrib/humanize/locale/bn/LC_MESSAGES/django.po,sha256=0l4yyy7q3OIWyFk_PW0y883Vw2Pmu48UcnLM9OBxB68,6545 +django/contrib/humanize/locale/br/LC_MESSAGES/django.mo,sha256=V_tPVAyQzVdDwWPNlVGWmlVJjmVZfbh35alkwsFlCNU,5850 +django/contrib/humanize/locale/br/LC_MESSAGES/django.po,sha256=BcAqEV2JpF0hiCQDttIMblp9xbB7zoHsmj7fJFV632k,12245 +django/contrib/humanize/locale/bs/LC_MESSAGES/django.mo,sha256=1-RNRHPgZR_9UyiEn9Djp4mggP3fywKZho45E1nGMjM,1416 +django/contrib/humanize/locale/bs/LC_MESSAGES/django.po,sha256=M017Iu3hyXmINZkhCmn2he-FB8rQ7rXN0KRkWgrp7LI,5498 +django/contrib/humanize/locale/ca/LC_MESSAGES/django.mo,sha256=WDvXis2Y1ivSq6NdJgddO_WKbz8w5MpVpkT4sq-pWXI,4270 +django/contrib/humanize/locale/ca/LC_MESSAGES/django.po,sha256=AD3h2guGADdp1f9EcbP1vc1lmfDOL8-1qQfwvXa6I04,7731 +django/contrib/humanize/locale/ckb/LC_MESSAGES/django.mo,sha256=Mqv3kRZrOjWtTstmtOEqIJsi3vevf_hZUfYEetGxO7w,5021 +django/contrib/humanize/locale/ckb/LC_MESSAGES/django.po,sha256=q_7p7pEyV_NTw9eBvcztKlSFW7ykl0CIsNnA9g5oy20,8317 +django/contrib/humanize/locale/cs/LC_MESSAGES/django.mo,sha256=VFyZcn19aQUXhVyh2zo2g3PAuzOO38Kx9fMFOCCxzMc,5479 +django/contrib/humanize/locale/cs/LC_MESSAGES/django.po,sha256=mq3LagwA9hyWOGy76M9n_rD4p3wuVk6oQsneB9CF99w,9527 +django/contrib/humanize/locale/cy/LC_MESSAGES/django.mo,sha256=VjJiaUUhvX9tjOEe6x2Bdp7scvZirVcUsA4-iE2-ElQ,5241 +django/contrib/humanize/locale/cy/LC_MESSAGES/django.po,sha256=sylmceSq-NPvtr_FjklQXoBAfueKu7hrjEpMAsVbQC4,7813 +django/contrib/humanize/locale/da/LC_MESSAGES/django.mo,sha256=vfDHopmWFAomwqmmCX3wfmX870-zzVbgUFC6I77n9tE,4316 +django/contrib/humanize/locale/da/LC_MESSAGES/django.po,sha256=v7Al6UOkbYB1p7m8kOe-pPRIAoyWemoyg_Pm9bD5Ldc,7762 +django/contrib/humanize/locale/de/LC_MESSAGES/django.mo,sha256=aOUax9csInbXnjAJc3jq4dcW_9H-6ueVI-TtKz2b9q0,4364 +django/contrib/humanize/locale/de/LC_MESSAGES/django.po,sha256=gW3OfOfoVMvpVudwghKCYztkLrCIPbbcriZjBNnRyGo,7753 +django/contrib/humanize/locale/dsb/LC_MESSAGES/django.mo,sha256=OVKcuW9ZXosNvP_3A98WsIIk_Jl6U_kv3zOx4pvwh-g,5588 +django/contrib/humanize/locale/dsb/LC_MESSAGES/django.po,sha256=VimcsmobK3VXTbbTasg6osWDPOIZ555uimbUoUfNco4,9557 +django/contrib/humanize/locale/el/LC_MESSAGES/django.mo,sha256=o-yjhpzyGRbbdMzwUcG_dBP_FMEMZevm7Wz1p4Wd-pg,6740 +django/contrib/humanize/locale/el/LC_MESSAGES/django.po,sha256=UbD5QEw_-JNoNETaOyDfSReirkRsHnlHeSsZF5hOSkI,10658 +django/contrib/humanize/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/humanize/locale/en/LC_MESSAGES/django.po,sha256=PKUuSyK8VzVdyyCpOXAffSBK7mFSiGuumzMmttS5yfM,9057 +django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.mo,sha256=QFf4EgAsGprbFetnwogmj8vDV7SfGq1E3vhL9D8xTTM,918 +django/contrib/humanize/locale/en_AU/LC_MESSAGES/django.po,sha256=Bnfesr1_T9sa31qkKOMunwKKXbnFzZJhzV8rYC_pdSE,6532 +django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.mo,sha256=mkx192XQM3tt1xYG8EOacMfa-BvgzYCbSsJQsWZGeAo,3461 +django/contrib/humanize/locale/en_GB/LC_MESSAGES/django.po,sha256=MArKzXxY1104jxaq3kvDZs2WzOGYxicfJxFKsLzFavw,5801 +django/contrib/humanize/locale/eo/LC_MESSAGES/django.mo,sha256=b47HphXBi0cax_reCZiD3xIedavRHcH2iRG8pcwqb54,5386 +django/contrib/humanize/locale/eo/LC_MESSAGES/django.po,sha256=oN1YqOZgxKY3L1a1liluhM6X5YA5bawg91mHF_Vfqx8,9095 +django/contrib/humanize/locale/es/LC_MESSAGES/django.mo,sha256=z5ZCmAG4jGYleEE6pESMXihlESRQPkTEo2vIedXdjjI,5005 +django/contrib/humanize/locale/es/LC_MESSAGES/django.po,sha256=WwykwsBM_Q_xtA2vllIbcFSO7eUB72r56AG4ITwM5VM,8959 +django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.mo,sha256=-btiXH3B5M1qkAsW9D5I742Gt9GcJs5VC8ZhJ_DKkGY,4425 +django/contrib/humanize/locale/es_AR/LC_MESSAGES/django.po,sha256=UsiuRj-eq-Vl41wNZGw9XijCMEmcXhcGrMTPWgZn4LA,7858 +django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.mo,sha256=2GhQNtNOjK5mTov5RvnuJFTYbdoGBkDGLxzvJ8Vsrfs,4203 +django/contrib/humanize/locale/es_CO/LC_MESSAGES/django.po,sha256=JBf2fHO8jWi6dFdgZhstKXwyot_qT3iJBixQZc3l330,6326 +django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.mo,sha256=82DL2ztdq10X5RIceshK1nO99DW5628ZIjaN8Xzp9ok,3939 +django/contrib/humanize/locale/es_MX/LC_MESSAGES/django.po,sha256=-O7AQluA5Kce9-bd04GN4tfQKoCxb8Sa7EZR6TZBCdM,6032 +django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.mo,sha256=cJECzKpD99RRIpVFKQW65x0Nvpzrm5Fuhfi-nxOWmkM,942 +django/contrib/humanize/locale/es_VE/LC_MESSAGES/django.po,sha256=tDdYtvRILgeDMgZqKHSebe7Z5ZgI1bZhDdvGVtj_anM,4832 +django/contrib/humanize/locale/et/LC_MESSAGES/django.mo,sha256=_vLDxD-e-pBY7vs6gNkhFZNGYu_dAeETVMKGsjjWOHg,4406 +django/contrib/humanize/locale/et/LC_MESSAGES/django.po,sha256=u0tSkVYckwXUv1tVfe1ODdZ8tJ2wUkS0Vv8pakJ8eBM,7915 +django/contrib/humanize/locale/eu/LC_MESSAGES/django.mo,sha256=rz3Lz209GneozN4v_19qTGysOL55x7jK2uoB2YsKSMQ,4315 +django/contrib/humanize/locale/eu/LC_MESSAGES/django.po,sha256=lWOx7rpaj2U7czrZmdxVo3kB2aGt-2GDyWO0NLvP-A0,7760 +django/contrib/humanize/locale/fa/LC_MESSAGES/django.mo,sha256=N32l1DsPALoSGe9GtJ5baIo0XUDm8U09JhcHr0lXtw4,4656 +django/contrib/humanize/locale/fa/LC_MESSAGES/django.po,sha256=YsYRnmvABepSAOgEj6dRvdY_jYZqJb0_dbQ_6daiJAQ,8228 +django/contrib/humanize/locale/fi/LC_MESSAGES/django.mo,sha256=FJfyLFkz-oAz9e15e1aQUct7CJ2EJqSkZKh_ztDxtic,4425 +django/contrib/humanize/locale/fi/LC_MESSAGES/django.po,sha256=j5Z5t9zX1kePdM_Es1hu9AKOpOrijVWTsS2t19CIiaE,7807 +django/contrib/humanize/locale/fr/LC_MESSAGES/django.mo,sha256=pHHD7DV36bC86CKXWUpWUp3NtKuqWu9_YXU04sE6ib4,5125 +django/contrib/humanize/locale/fr/LC_MESSAGES/django.po,sha256=SyN1vUt8zDG-iSTDR4OH1B_CbvKMM2YaMJ2_s-FEyog,8812 +django/contrib/humanize/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/humanize/locale/fy/LC_MESSAGES/django.po,sha256=pPvcGgBWiZwQ5yh30OlYs-YZUd_XsFro71T9wErVv0M,4732 +django/contrib/humanize/locale/ga/LC_MESSAGES/django.mo,sha256=8V-8BJdubpBPT_AMHHdifgPangJw_TY3WtSQxaGNCGw,6346 +django/contrib/humanize/locale/ga/LC_MESSAGES/django.po,sha256=Y_6wRPWasABq-6B3WjzEObSk860fExiQ_OVbh8i1j44,10784 +django/contrib/humanize/locale/gd/LC_MESSAGES/django.mo,sha256=wHsBVluXm4DW7iWxGHMHexqG9ovXEvgcaXvsmvkNHSE,5838 +django/contrib/humanize/locale/gd/LC_MESSAGES/django.po,sha256=CmmpKK7me-Ujitgx2IVkOcJyZOvie6XEBS7wCY4xZQ0,9802 +django/contrib/humanize/locale/gl/LC_MESSAGES/django.mo,sha256=LbJABG0-USW2C5CQro6WcPlPwT7I1BfuKGi_VFNhJIU,4345 +django/contrib/humanize/locale/gl/LC_MESSAGES/django.po,sha256=caidyTAFJ5iZ-tpEp0bflpUx0xlaH2jIYmPKxCVzlGE,7772 +django/contrib/humanize/locale/he/LC_MESSAGES/django.mo,sha256=phFZMDohKT86DUtiAlnZslPFwSmpcpxTgZaXb8pGohc,5875 +django/contrib/humanize/locale/he/LC_MESSAGES/django.po,sha256=xhEZYcK-fg_mHMyGCEZXEwbd6FvutaGvkDyHTET-sic,9970 +django/contrib/humanize/locale/hi/LC_MESSAGES/django.mo,sha256=qrzm-6vXIUsxA7nOxa-210-6iO-3BPBj67vKfhTOPrY,4131 +django/contrib/humanize/locale/hi/LC_MESSAGES/django.po,sha256=BrypbKaQGOyY_Gl1-aHXiBVlRqrbSjGfZ2OK8omj_9M,6527 +django/contrib/humanize/locale/hr/LC_MESSAGES/django.mo,sha256=29XTvFJHex31hbu2qsOfl5kOusz-zls9eqlxtvw_H0s,1274 +django/contrib/humanize/locale/hr/LC_MESSAGES/django.po,sha256=OuEH4fJE6Fk-s0BMqoxxdlUAtndvvKK7N8Iy-9BP3qA,5424 +django/contrib/humanize/locale/hsb/LC_MESSAGES/django.mo,sha256=a1DqdiuRfFSfSrD8IvzQmZdzE0dhkxDChFddrmt3fjA,5679 +django/contrib/humanize/locale/hsb/LC_MESSAGES/django.po,sha256=V5aRblcqKii4RXSQO87lyoQwwvxL59T3m4-KOBTx4bc,9648 +django/contrib/humanize/locale/hu/LC_MESSAGES/django.mo,sha256=7ZMxGa5FaUdjRtbawYzwwhWIroON8NNXknQ3frKUabw,4313 +django/contrib/humanize/locale/hu/LC_MESSAGES/django.po,sha256=5yWfXwvJQQuDoENkiytuKXFjsNW-lS2-EFThVnYWHbI,7672 +django/contrib/humanize/locale/hy/LC_MESSAGES/django.mo,sha256=YN4XSM-NGXNJb2R0SMwC8Zk6r7F6LOfFvRgvc4fUNCM,3810 +django/contrib/humanize/locale/hy/LC_MESSAGES/django.po,sha256=JZZibNtKEOepsf5xf495lmCBk8jji5RUJETZlQpxrMo,7597 +django/contrib/humanize/locale/ia/LC_MESSAGES/django.mo,sha256=d0m-FddFnKp08fQYQSC9Wr6M4THVU7ibt3zkIpx_Y_A,4167 +django/contrib/humanize/locale/ia/LC_MESSAGES/django.po,sha256=qX6fAZyn54hmtTU62oJcHF8p4QcYnoO2ZNczVjvjOeE,6067 +django/contrib/humanize/locale/id/LC_MESSAGES/django.mo,sha256=AdUmhfkQOV9Le4jXQyQSyd5f2GqwNt-oqnJV-WVELVw,3885 +django/contrib/humanize/locale/id/LC_MESSAGES/django.po,sha256=lMnTtM27j1EWg1i9d7NzAeueo7mRztGVfNOXtXdZVjw,7021 +django/contrib/humanize/locale/io/LC_MESSAGES/django.mo,sha256=nMu5JhIy8Fjie0g5bT8-h42YElCiS00b4h8ej_Ie-w0,464 +django/contrib/humanize/locale/io/LC_MESSAGES/django.po,sha256=RUs8JkpT0toKOLwdv1oCbcBP298EOk02dkdNSJiC-_A,4720 +django/contrib/humanize/locale/is/LC_MESSAGES/django.mo,sha256=D6ElUYj8rODRsZwlJlH0QyBSM44sVmuBCNoEkwPVxko,3805 +django/contrib/humanize/locale/is/LC_MESSAGES/django.po,sha256=1VddvtkhsK_5wmpYIqEFqFOo-NxIBnL9wwW74Tw9pbw,8863 +django/contrib/humanize/locale/it/LC_MESSAGES/django.mo,sha256=Zw8reudMUlPGC3eQ-CpsGYHX-FtNrAc5SxgTdmIrUC0,5374 +django/contrib/humanize/locale/it/LC_MESSAGES/django.po,sha256=wJzT-2ygufGLMIULd7afg1sZLQKnwQ55NZ2eAnwIY8M,9420 +django/contrib/humanize/locale/ja/LC_MESSAGES/django.mo,sha256=x8AvfUPBBJkGtE0jvAP4tLeZEByuyo2H4V_UuLoCEmw,3907 +django/contrib/humanize/locale/ja/LC_MESSAGES/django.po,sha256=G2yTPZq6DxgzPV5uJ6zvMK4o3aiuLWbl4vXPH7ylUhc,6919 +django/contrib/humanize/locale/ka/LC_MESSAGES/django.mo,sha256=UeUbonYTkv1d2ljC0Qj8ZHw-59zHu83fuMvnME9Fkmw,4878 +django/contrib/humanize/locale/ka/LC_MESSAGES/django.po,sha256=-eAMexwjm8nSB4ARJU3f811UZnuatHKIFf8FevpJEpo,9875 +django/contrib/humanize/locale/kk/LC_MESSAGES/django.mo,sha256=jujbUM0jOpt3Mw8zN4LSIIkxCJ0ihk_24vR0bXoux78,2113 +django/contrib/humanize/locale/kk/LC_MESSAGES/django.po,sha256=hjZg_NRE9xMA5uEa2mVSv1Hr4rv8inG9es1Yq7uy9Zc,8283 +django/contrib/humanize/locale/km/LC_MESSAGES/django.mo,sha256=mfXs9p8VokORs6JqIfaSSnQshZEhS90rRFhOIHjW7CI,459 +django/contrib/humanize/locale/km/LC_MESSAGES/django.po,sha256=JQBEHtcy-hrV_GVWIjvUJyOf3dZ5jUzzN8DUTAbHKUg,4351 +django/contrib/humanize/locale/kn/LC_MESSAGES/django.mo,sha256=Oq3DIPjgCqkn8VZMb6ael7T8fQ7LnWobPPAZKQSFHl4,461 +django/contrib/humanize/locale/kn/LC_MESSAGES/django.po,sha256=CAJ0etMlQF3voPYrxIRr5ChAwUYO7wI42n5kjpIEVjA,4359 +django/contrib/humanize/locale/ko/LC_MESSAGES/django.mo,sha256=mWmQEoe0MNVn3sNqsz6CBc826x3KIpOL53ziv6Ekf7c,3891 +django/contrib/humanize/locale/ko/LC_MESSAGES/django.po,sha256=UUxIUYM332DOZinJrqOUtQvHfCCHkodFhENDVWj3dpk,7003 +django/contrib/humanize/locale/ky/LC_MESSAGES/django.mo,sha256=jDu1bVgJMDpaZ0tw9-wdkorvZxDdRzcuzdeC_Ot7rUs,4177 +django/contrib/humanize/locale/ky/LC_MESSAGES/django.po,sha256=MEHbKMLIiFEG7BlxsNVF60viXSnlk5iqlFCH3hgamH0,7157 +django/contrib/humanize/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/humanize/locale/lb/LC_MESSAGES/django.po,sha256=_y0QFS5Kzx6uhwOnzmoHtCrbufMrhaTLsHD0LfMqtcM,4730 +django/contrib/humanize/locale/lt/LC_MESSAGES/django.mo,sha256=O0C-tPhxWNW5J4tCMlB7c7shVjNO6dmTURtIpTVO9uc,7333 +django/contrib/humanize/locale/lt/LC_MESSAGES/django.po,sha256=M5LlRxC1KWh1-3fwS93UqTijFuyRENmQJXfpxySSKik,12086 +django/contrib/humanize/locale/lv/LC_MESSAGES/django.mo,sha256=3gEzmKBtYsFz9wvLw0ltiir91CDLxhK3IG2j55-uM7Y,5033 +django/contrib/humanize/locale/lv/LC_MESSAGES/django.po,sha256=yfeBxpH2J49xHDzZUZI3cK5ms4QbWq0gtTmhj8ejAjE,8836 +django/contrib/humanize/locale/mk/LC_MESSAGES/django.mo,sha256=htUgd6rcaeRPDf6UrEb18onz-Ayltw9LTvWRgEkXm08,4761 +django/contrib/humanize/locale/mk/LC_MESSAGES/django.po,sha256=Wl9Rt8j8WA_0jyxKCswIovSiCQD-ZWFYXbhFsCUKIWo,6665 +django/contrib/humanize/locale/ml/LC_MESSAGES/django.mo,sha256=5As-FXkEJIYetmV9dMtzLtsRPTOm1oUgyx-oeTH_guY,4655 +django/contrib/humanize/locale/ml/LC_MESSAGES/django.po,sha256=I9_Ln0C1nSj188_Zdq9Vy6lC8aLzg_YdNc5gy9hNGjE,10065 +django/contrib/humanize/locale/mn/LC_MESSAGES/django.mo,sha256=MSw9wpCRQAX7lLWEW-Mamk_bR5R8lE_WqcD1G2mKbxI,4863 +django/contrib/humanize/locale/mn/LC_MESSAGES/django.po,sha256=xA4gODU33-hK6BXdqUun7qfjNuv6Dzq63FPVSQImfK4,8241 +django/contrib/humanize/locale/mr/LC_MESSAGES/django.mo,sha256=sJAjSaUecl5hdetpBm-rCjVrkWxNhq3IFsE1MEYmq7c,1506 +django/contrib/humanize/locale/mr/LC_MESSAGES/django.po,sha256=lHmcv7LnyXWBdh_WRsL4GPUybIMLRlIoJlHBM3_3EWA,6693 +django/contrib/humanize/locale/ms/LC_MESSAGES/django.mo,sha256=Bcictup-1bGKm0FIa3CeGNvrHg8VyxsqUHzWI7UMscs,3839 +django/contrib/humanize/locale/ms/LC_MESSAGES/django.po,sha256=UQEUC2iZxhtrWim96GaEK1VAKxAC0fTQIghg4Zx4R3Q,6774 +django/contrib/humanize/locale/my/LC_MESSAGES/django.mo,sha256=55CWHz34sy9k6TfOeVI9GYvE9GRa3pjSRE6DSPk9uQ8,3479 +django/contrib/humanize/locale/my/LC_MESSAGES/django.po,sha256=jCiDhSqARfqKcMLEHJd-Xe6zo3Uc9QpiCh3BbAAA5UE,5433 +django/contrib/humanize/locale/nb/LC_MESSAGES/django.mo,sha256=957mOf_wFBOTjpcevsRz5tQ6IQ4PJnZZfJUETUgF23s,4318 +django/contrib/humanize/locale/nb/LC_MESSAGES/django.po,sha256=G_4pAxT3QZhC-wmWKIhEkFf0IRBn6gKRQZvx0spqjuk,7619 +django/contrib/humanize/locale/ne/LC_MESSAGES/django.mo,sha256=YFT2D-yEkUdJBO2GfuUowau1OZQA5mS86CZvMzH38Rk,3590 +django/contrib/humanize/locale/ne/LC_MESSAGES/django.po,sha256=SN7yH65hthOHohnyEmQUjXusRTDRjxWJG_kuv5g2Enk,9038 +django/contrib/humanize/locale/nl/LC_MESSAGES/django.mo,sha256=RxwgVgdHvfFirimjPrpDhzqmI1Z9soDC--raoAzgBkw,4311 +django/contrib/humanize/locale/nl/LC_MESSAGES/django.po,sha256=M7dVQho17p71Ud6imsQLGMiBisLrVNEZNP4ufpkEJnM,7872 +django/contrib/humanize/locale/nn/LC_MESSAGES/django.mo,sha256=wyJDAGJWgvyBYZ_-UQnBQ84-Jelk5forKfk7hMFDGpQ,4336 +django/contrib/humanize/locale/nn/LC_MESSAGES/django.po,sha256=zuKg53XCX-C6Asc9M04BKZVVw1X6u5p5hvOXxc0AXnM,7651 +django/contrib/humanize/locale/os/LC_MESSAGES/django.mo,sha256=BwS3Mj7z_Fg5s7Qm-bGLVhzYLZ8nPgXoB0gXLnrMGWc,3902 +django/contrib/humanize/locale/os/LC_MESSAGES/django.po,sha256=CGrxyL5l-5HexruOc7QDyRbum7piADf-nY8zjDP9wVM,6212 +django/contrib/humanize/locale/pa/LC_MESSAGES/django.mo,sha256=TH1GkAhaVVLk2jrcqAmdxZprWyikAX6qMP0eIlr2tWM,1569 +django/contrib/humanize/locale/pa/LC_MESSAGES/django.po,sha256=_7oP0Hn-IU7IPLv_Qxg_wstLEdhgWNBBTCWYwSycMb0,5200 +django/contrib/humanize/locale/pl/LC_MESSAGES/django.mo,sha256=0QheMbF3Y0Q_sxZlN2wAYJRQyK3K_uq6ttVr7wCc33w,5596 +django/contrib/humanize/locale/pl/LC_MESSAGES/django.po,sha256=6wX50O68aIyKiP6CcyLMXZ3xuUnAzasFPIg_8deJQBY,9807 +django/contrib/humanize/locale/pt/LC_MESSAGES/django.mo,sha256=El9Sdr3kXS-yTol_sCg1dquxf0ThDdWyrWGjjim9Dj4,5408 +django/contrib/humanize/locale/pt/LC_MESSAGES/django.po,sha256=XudOc67ybF_fminrTR2XOCKEKwqB5FX14pl3clCNXGE,9281 +django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.mo,sha256=F5-AD4Fohf9wDyP_mqSJHvcKqIKIJsaxGuXGiHYGLHQ,5092 +django/contrib/humanize/locale/pt_BR/LC_MESSAGES/django.po,sha256=O1eVw8R8hL0N_XtTp4sdZbc5MxUNdxfGPzCT3U7QcxM,9089 +django/contrib/humanize/locale/ro/LC_MESSAGES/django.mo,sha256=vP6o72bsgKPsbKGwH0PU8Xyz9BnQ_sPWT3EANLT2wRk,6188 +django/contrib/humanize/locale/ro/LC_MESSAGES/django.po,sha256=JZiW6Y9P5JdQe4vgCvcFg35kFa8bSX0lU_2zdeudQP0,10575 +django/contrib/humanize/locale/ru/LC_MESSAGES/django.mo,sha256=tVtMvbDmHtoXFav2cXzhHpHmT-4-593Vo7kE5sd-Agc,6733 +django/contrib/humanize/locale/ru/LC_MESSAGES/django.po,sha256=0OWESEN33yMIcRUaX_oSQUuDidhbzgKpdivwAS7kNgs,11068 +django/contrib/humanize/locale/sk/LC_MESSAGES/django.mo,sha256=6l7T4rvVb8dPl0-6vwrq5K1QqJ06IdFKxEl4EGzN8Ns,5541 +django/contrib/humanize/locale/sk/LC_MESSAGES/django.po,sha256=Edsza_V5MJD_HadigUZWZoFLjl8556KFW9tbuHVHL3g,9657 +django/contrib/humanize/locale/sl/LC_MESSAGES/django.mo,sha256=yonGwvQKyqpZ_NLTpynDdS6q4yg3eafL1K5MFmnGw7o,4967 +django/contrib/humanize/locale/sl/LC_MESSAGES/django.po,sha256=-nzc9Rk9f3U_Rpze_fdJrKR-_CglPJ0_GryNUDD80jI,9580 +django/contrib/humanize/locale/sq/LC_MESSAGES/django.mo,sha256=1XXRe0nurGUUxI7r7gbSIuluRuza7VOeNdkIVX3LIFU,5280 +django/contrib/humanize/locale/sq/LC_MESSAGES/django.po,sha256=BS-5o3aG8Im9dWTkx4E_IbbeTRFcjjohinz1823ZepI,9127 +django/contrib/humanize/locale/sr/LC_MESSAGES/django.mo,sha256=Zsv4ajqk9baWkNItJjkEsZP-OO-LuIg_5QopKgVesUw,5718 +django/contrib/humanize/locale/sr/LC_MESSAGES/django.po,sha256=AZddC4WvARQd3Qd-atFONB8KbzrNJCfiQcdP16m-EyM,9363 +django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=8TIBiJ_6G0MTfEw8mTYHhig8dLZCpdjOBzP2ivQcSJ4,2613 +django/contrib/humanize/locale/sr_Latn/LC_MESSAGES/django.po,sha256=2pj14ryWKbxvcznBSK83hFvGJ_kn2EEr3w0Jhu1lVXI,10316 +django/contrib/humanize/locale/sv/LC_MESSAGES/django.mo,sha256=7OABdxvdZvKB9j1o99UiecoTXaVGn3XmXnU5xCNov8s,4333 +django/contrib/humanize/locale/sv/LC_MESSAGES/django.po,sha256=71tFrQzwtwzYfeC2BG0v8dZNkSEMbM-tAC5_z2AElLM,7876 +django/contrib/humanize/locale/sw/LC_MESSAGES/django.mo,sha256=cxjSUqegq1JX08xIAUgqq9ByP-HuqaXuxWM8Y2gHdB4,4146 +django/contrib/humanize/locale/sw/LC_MESSAGES/django.po,sha256=bPYrLJ2yY_lZ3y1K-RguNi-qrxq2r-GLlsz1gZcm2A8,6031 +django/contrib/humanize/locale/ta/LC_MESSAGES/django.mo,sha256=1X2vH0iZOwM0uYX9BccJUXqK-rOuhcu5isRzMpnjh2o,466 +django/contrib/humanize/locale/ta/LC_MESSAGES/django.po,sha256=8x1lMzq2KOJveX92ADSuqNmXGIEYf7fZ1JfIJPysS04,4722 +django/contrib/humanize/locale/te/LC_MESSAGES/django.mo,sha256=iKd4dW9tan8xPxgaSoenIGp1qQpvSHHXUw45Tj2ATKQ,1327 +django/contrib/humanize/locale/te/LC_MESSAGES/django.po,sha256=FQdjWKMsiv-qehYZ4AtN9iKRf8Rifzcm5TZzMkQVfQI,5103 +django/contrib/humanize/locale/tg/LC_MESSAGES/django.mo,sha256=1Fiqat0CZSyExRXRjRCBS0AFzwy0q1Iba-2RVnrXoZQ,1580 +django/contrib/humanize/locale/tg/LC_MESSAGES/django.po,sha256=j2iczgQDbqzpthKAAlMt1Jk7gprYLqZ1Ya0ASr2SgD0,7852 +django/contrib/humanize/locale/th/LC_MESSAGES/django.mo,sha256=jT7wGhYWP9HHwOvtr2rNPStiOgZW-rGMcO36w1U8Y4c,3709 +django/contrib/humanize/locale/th/LC_MESSAGES/django.po,sha256=ZO3_wU7z0VASS5E8RSLEtmTveMDjJ0O8QTynb2-jjt0,8318 +django/contrib/humanize/locale/tk/LC_MESSAGES/django.mo,sha256=cI2Ukp5kVTsUookoxyDD9gZKdxh4YezfRWYFBL7KuRU,4419 +django/contrib/humanize/locale/tk/LC_MESSAGES/django.po,sha256=6Qaxa03R4loH0FWQ6PCytT3Yz3LZt7UGTd01WVnHOIk,7675 +django/contrib/humanize/locale/tr/LC_MESSAGES/django.mo,sha256=D4ChMLE1Uz921NIF_Oe1vNkYAGfRpQuC8xANFwtlygE,4319 +django/contrib/humanize/locale/tr/LC_MESSAGES/django.po,sha256=4PjW65seHF9SsWnLv47JhgYPt0Gvzr-7_Ejech3d3ak,7754 +django/contrib/humanize/locale/tt/LC_MESSAGES/django.mo,sha256=z8VgtMhlfyDo7bERDfrDmcYV5aqOeBY7LDgqa5DRxDM,3243 +django/contrib/humanize/locale/tt/LC_MESSAGES/django.po,sha256=j_tRbg1hzLBFAmPQt0HoN-_WzWFtA07PloCkqhvNkcY,5201 +django/contrib/humanize/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/humanize/locale/udm/LC_MESSAGES/django.po,sha256=AR55jQHmMrbA6RyHGOtqdvUtTFlxWnqvfMy8vZK25Bo,4354 +django/contrib/humanize/locale/ug/LC_MESSAGES/django.mo,sha256=_GtRGNtdwZ6lU2gZc5jN9nSDB15bLBMYdhiwHlKxOOc,4883 +django/contrib/humanize/locale/ug/LC_MESSAGES/django.po,sha256=x9DJRBObVq8C3orGfj737v2gCHcpqaWUXMEeCMkumco,8156 +django/contrib/humanize/locale/uk/LC_MESSAGES/django.mo,sha256=wQOJu-zKyuCazul-elFLZc-iKw2Zea7TGb90OVGZYkQ,6991 +django/contrib/humanize/locale/uk/LC_MESSAGES/django.po,sha256=hxEufGt-NOgSFc5T9OzxCibcfqkhWD7zxhQljoUQssQ,11249 +django/contrib/humanize/locale/ur/LC_MESSAGES/django.mo,sha256=MF9uX26-4FFIz-QpDUbUHUNLQ1APaMLQmISMIaPsOBE,1347 +django/contrib/humanize/locale/ur/LC_MESSAGES/django.po,sha256=D5UhcPEcQ16fsBEdkk_zmpjIF6f0gEv0P86z_pK_1eA,5015 +django/contrib/humanize/locale/uz/LC_MESSAGES/django.mo,sha256=HDah_1qqUz5m_ABBVIEML3WMR2xyomFckX82i6b3n4k,1915 +django/contrib/humanize/locale/uz/LC_MESSAGES/django.po,sha256=Ql3GZOhuoVgS0xHEzxjyYkOWQUyi_jiizfAXBp2Y4uw,7296 +django/contrib/humanize/locale/vi/LC_MESSAGES/django.mo,sha256=ZUK_Na0vnfdhjo0MgnBWnGFU34sxcMf_h0MeyuysKG8,3646 +django/contrib/humanize/locale/vi/LC_MESSAGES/django.po,sha256=DzRpXObt9yP5RK_slWruaIhnVI0-JXux2hn_uGsVZiE,5235 +django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=YgeAjXHMV1rXNNIrlDu_haxnKB0hxU5twJ86LMR10k8,3844 +django/contrib/humanize/locale/zh_Hans/LC_MESSAGES/django.po,sha256=JGfRVW_5UqwyI2mK_WRK8xDPzwBAO2q_mGsGzf89a88,7122 +django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=JQmImGUND9MONKqqLSCvvbbIT_TigIU6h-twN1qlfJc,3737 +django/contrib/humanize/locale/zh_Hant/LC_MESSAGES/django.po,sha256=u_JB8_pFJofUoiGtcGh1xemLouLePvHua5J_npnJ_Q8,6826 +django/contrib/humanize/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/humanize/templatetags/__pycache__/__init__.cpython-310.pyc,, +django/contrib/humanize/templatetags/__pycache__/humanize.cpython-310.pyc,, +django/contrib/humanize/templatetags/humanize.py,sha256=1vF9UeTaKuJSswwHxZvcb2Dx2rv6SFLGGcJ3AyzMLfc,12350 +django/contrib/messages/__init__.py,sha256=_5b6kMxWt0TqW5ze5vZ-iqYEQfaQiAl28x2q9KRaMz4,171 +django/contrib/messages/__pycache__/__init__.cpython-310.pyc,, +django/contrib/messages/__pycache__/api.cpython-310.pyc,, +django/contrib/messages/__pycache__/apps.cpython-310.pyc,, +django/contrib/messages/__pycache__/constants.cpython-310.pyc,, +django/contrib/messages/__pycache__/context_processors.cpython-310.pyc,, +django/contrib/messages/__pycache__/middleware.cpython-310.pyc,, +django/contrib/messages/__pycache__/test.cpython-310.pyc,, +django/contrib/messages/__pycache__/utils.cpython-310.pyc,, +django/contrib/messages/__pycache__/views.cpython-310.pyc,, +django/contrib/messages/api.py,sha256=3DbnVG5oOBdg499clMU8l2hxCXMXB6S03-HCKVuBXjA,3250 +django/contrib/messages/apps.py,sha256=W_nya0lzXYBew83hqP6I8gg6XnaRlh-gmN-pYpDGN84,611 +django/contrib/messages/constants.py,sha256=JD4TpaR4C5G0oxIh4BmrWiVmCACv7rnVgZSpJ8Rmzeg,312 +django/contrib/messages/context_processors.py,sha256=xMrgYeX6AcT_WwS9AYKNDDstbvAwE7_u1ssDVLN_bbg,354 +django/contrib/messages/middleware.py,sha256=2mxncCpJVUgLtjouUGSVl39mTF-QskQpWo2jCOOqV8A,986 +django/contrib/messages/storage/__init__.py,sha256=gXDHbQ9KgQdfhYOla9Qj59_SlE9WURQiKzIA0cFH0DQ,392 +django/contrib/messages/storage/__pycache__/__init__.cpython-310.pyc,, +django/contrib/messages/storage/__pycache__/base.cpython-310.pyc,, +django/contrib/messages/storage/__pycache__/cookie.cpython-310.pyc,, +django/contrib/messages/storage/__pycache__/fallback.cpython-310.pyc,, +django/contrib/messages/storage/__pycache__/session.cpython-310.pyc,, +django/contrib/messages/storage/base.py,sha256=T-bcy6HdwRbEKNIuO5fEJZ1EUj3rTHWXRg1oxqRahGc,6082 +django/contrib/messages/storage/cookie.py,sha256=6r-z_MyYImgEC5LPvjOdp64xwkiV_ib97Sg4N4eXjxY,8678 +django/contrib/messages/storage/fallback.py,sha256=K5CrVJfUDakMjIcqSRt1WZd_1Xco1Bc2AQM3O3ld9aA,2093 +django/contrib/messages/storage/session.py,sha256=kvdVosbBAvI3XBA0G4AFKf0vxLleyzlwbGEgl60DfMQ,1764 +django/contrib/messages/test.py,sha256=8PJVFT2ICdptbMZSBrZC0ZLC3AJzL7XUK2Vz4f4wXuk,332 +django/contrib/messages/utils.py,sha256=_oItQILchdwdXH08SIyZ-DBdYi7q_uobHQajWwmAeUw,256 +django/contrib/messages/views.py,sha256=I_7C4yr-YLkhTEWx3iuhixG7NrKuyuSDG_CVg-EYRD8,524 +django/contrib/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/postgres/__pycache__/__init__.cpython-310.pyc,, +django/contrib/postgres/__pycache__/apps.cpython-310.pyc,, +django/contrib/postgres/__pycache__/constraints.cpython-310.pyc,, +django/contrib/postgres/__pycache__/expressions.cpython-310.pyc,, +django/contrib/postgres/__pycache__/functions.cpython-310.pyc,, +django/contrib/postgres/__pycache__/indexes.cpython-310.pyc,, +django/contrib/postgres/__pycache__/lookups.cpython-310.pyc,, +django/contrib/postgres/__pycache__/operations.cpython-310.pyc,, +django/contrib/postgres/__pycache__/search.cpython-310.pyc,, +django/contrib/postgres/__pycache__/serializers.cpython-310.pyc,, +django/contrib/postgres/__pycache__/signals.cpython-310.pyc,, +django/contrib/postgres/__pycache__/utils.cpython-310.pyc,, +django/contrib/postgres/__pycache__/validators.cpython-310.pyc,, +django/contrib/postgres/aggregates/__init__.py,sha256=QCznqMKqPbpraxSi1Y8-B7_MYlL42F1kEWZ1HeLgTKs,65 +django/contrib/postgres/aggregates/__pycache__/__init__.cpython-310.pyc,, +django/contrib/postgres/aggregates/__pycache__/general.cpython-310.pyc,, +django/contrib/postgres/aggregates/__pycache__/mixins.cpython-310.pyc,, +django/contrib/postgres/aggregates/__pycache__/statistics.cpython-310.pyc,, +django/contrib/postgres/aggregates/general.py,sha256=lFZkt_iDSlfXQ2SrcVj1Xr6h_GA4npskBJYzWuBF-kE,1496 +django/contrib/postgres/aggregates/mixins.py,sha256=7do4eji0SpVqvlLsI4E_Ap8EV6tfK39ybN5caV9wDLo,1716 +django/contrib/postgres/aggregates/statistics.py,sha256=xSWk5Z5ZVpM2LSaMgP97pxcijOnPHiPATe3X45poXCI,1511 +django/contrib/postgres/apps.py,sha256=sfjoL-2VJrFzrv0CC3S4WGWZblzR_4BwFDm9bEHs8B0,3692 +django/contrib/postgres/constraints.py,sha256=qWcKCH3_5mYLooCgq173UQGXSHMlhupB9dyOq_rsNs0,9789 +django/contrib/postgres/expressions.py,sha256=fo5YASHJtIjexadqskuhYYk4WutofxzymYsivWWJS84,405 +django/contrib/postgres/fields/__init__.py,sha256=Xo8wuWPwVNOkKY-EwV9U1zusQ2DjMXXtL7_8R_xAi5s,148 +django/contrib/postgres/fields/__pycache__/__init__.cpython-310.pyc,, +django/contrib/postgres/fields/__pycache__/array.cpython-310.pyc,, +django/contrib/postgres/fields/__pycache__/citext.cpython-310.pyc,, +django/contrib/postgres/fields/__pycache__/hstore.cpython-310.pyc,, +django/contrib/postgres/fields/__pycache__/jsonb.cpython-310.pyc,, +django/contrib/postgres/fields/__pycache__/ranges.cpython-310.pyc,, +django/contrib/postgres/fields/__pycache__/utils.cpython-310.pyc,, +django/contrib/postgres/fields/array.py,sha256=SsEBOHkrwr_ery0-GipbKbnK3IcmmoX9BQLHOMq-J-A,12682 +django/contrib/postgres/fields/citext.py,sha256=ytV2yAIwGvElHTAfH4BiLV-2DZ5otff8SmwmcqF2MVE,1363 +django/contrib/postgres/fields/hstore.py,sha256=WWWEoBfMtAjd226vvjFtGqbHMHFCjSly-BEhm9UN1qQ,3276 +django/contrib/postgres/fields/jsonb.py,sha256=ncMGT6WY70lCbcmhwtu2bjRmfDMUIvCr76foUv7tqv0,406 +django/contrib/postgres/fields/ranges.py,sha256=IbjAQC7IdWuISqHdBXrraiOGPzUP_4pHHcnL8VuYZRs,11417 +django/contrib/postgres/fields/utils.py,sha256=TV-Aj9VpBb13I2iuziSDURttZtz355XakxXnFwvtGio,95 +django/contrib/postgres/forms/__init__.py,sha256=NjENn2-C6BcXH4T8YeC0K2AbDk8MVT8tparL3Q4OF6g,89 +django/contrib/postgres/forms/__pycache__/__init__.cpython-310.pyc,, +django/contrib/postgres/forms/__pycache__/array.cpython-310.pyc,, +django/contrib/postgres/forms/__pycache__/hstore.cpython-310.pyc,, +django/contrib/postgres/forms/__pycache__/ranges.cpython-310.pyc,, +django/contrib/postgres/forms/array.py,sha256=LRUU3fxXePptMh3lolxhX4sbMjNSvnzMvNgcJolKfZc,8401 +django/contrib/postgres/forms/hstore.py,sha256=MXXS4LdrueKIlM3w-_QGVvV3MZXMx1TR_4NrpChAtQo,1787 +django/contrib/postgres/forms/ranges.py,sha256=cKAeWvRISPLXIPhm2C57Lu9GoIlAd1xiRxzns69XehA,3652 +django/contrib/postgres/functions.py,sha256=7v6J01QQvX70KFyg9hDc322PgvT62xZqWlzp_vrl8bA,252 +django/contrib/postgres/indexes.py,sha256=pKkozoRHWZYMml8SSbLJ5KBJGnsi36wrXu6fvg1hBdg,8535 +django/contrib/postgres/jinja2/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/contrib/postgres/locale/af/LC_MESSAGES/django.mo,sha256=kDeL_SZezO8DRNMRh2oXz94YtAK1ZzPiK5dftqAonKI,2841 +django/contrib/postgres/locale/af/LC_MESSAGES/django.po,sha256=ALKUHbZ8DE6IH80STMJhGOoyHB8HSSxI4PlX_SfxJWc,3209 +django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo,sha256=UTBknYC-W7nclTrBCEiCpTglZxZQY80UqGki8I6j3EM,4294 +django/contrib/postgres/locale/ar/LC_MESSAGES/django.po,sha256=_PgF2T3ylO4vnixVoKRsgmpPDHO-Qhj3mShHtHeSna0,4821 +django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=fND1NtGTmEl7Rukt_VlqJeExdJjphBygmI-qJmE83P0,4352 +django/contrib/postgres/locale/ar_DZ/LC_MESSAGES/django.po,sha256=Z9y3h6lDnbwD4JOn7OACLjEZqNY8OpEwuzoUD8FSdwA,4868 +django/contrib/postgres/locale/az/LC_MESSAGES/django.mo,sha256=85wf8nNlReuPu89B_kb632QFKEdtL8ZVyQdlV_f-Sdo,2899 +django/contrib/postgres/locale/az/LC_MESSAGES/django.po,sha256=HRF6LxxcKtmLEA1dsYQMU4oG3P61jbQbwG6x_Wy0t4w,3284 +django/contrib/postgres/locale/be/LC_MESSAGES/django.mo,sha256=tYaaEbBaVxIgxC9qUAuE3YpHJa-aUu9ufFuJLa8my-s,4143 +django/contrib/postgres/locale/be/LC_MESSAGES/django.po,sha256=CL9BslCvHOvwjTBbCEswW8ISH72gSAyW5Dc-zoXI670,4643 +django/contrib/postgres/locale/bg/LC_MESSAGES/django.mo,sha256=A_WOYkzm2QwAo8ZXCKg7jOOiM7bEwUT4cSsSlyC6sWQ,3529 +django/contrib/postgres/locale/bg/LC_MESSAGES/django.po,sha256=TEDRfX5DWADwlgYqScP1hGm2hq2_zUGzIBmKY8WLVLQ,3993 +django/contrib/postgres/locale/ca/LC_MESSAGES/django.mo,sha256=XR1UEZV9AXKFz7XrchjRkd-tEdjnlmccW_I7XANyMns,2904 +django/contrib/postgres/locale/ca/LC_MESSAGES/django.po,sha256=5wPLvkODU_501cHPZ7v0n89rmFrsuctt7T8dUBMfQ0Q,3430 +django/contrib/postgres/locale/ckb/LC_MESSAGES/django.mo,sha256=FQsR4nG0r8RfJ4rkD58XyWX-x7ZLkeg0VbZbSzDB2L0,3414 +django/contrib/postgres/locale/ckb/LC_MESSAGES/django.po,sha256=YStPyf6Gy68ydbzvtYcU6b_CV3h4JzJ3aYOQqccI9zI,3764 +django/contrib/postgres/locale/cs/LC_MESSAGES/django.mo,sha256=BgNruyg0gX0DNZ3mqFerVd2JcSmi4ARRWRhJKlcRhDw,3418 +django/contrib/postgres/locale/cs/LC_MESSAGES/django.po,sha256=evU4mQ9EOQJSxHF0dx_axiU59ptW0xVjIIxTgQCkUJU,3957 +django/contrib/postgres/locale/da/LC_MESSAGES/django.mo,sha256=VaTePWY3W7YRW-CkTUx6timYDXEYOFRFCkg3F36_k_I,2886 +django/contrib/postgres/locale/da/LC_MESSAGES/django.po,sha256=5j5xI-yKORhnywIACpjvMQA6yHj4aHMYiiN4KVSmBMM,3344 +django/contrib/postgres/locale/de/LC_MESSAGES/django.mo,sha256=iTfG4OxvwSG32U_PQ0Tmtl38v83hSjFa2W0J8Sw0NUE,3078 +django/contrib/postgres/locale/de/LC_MESSAGES/django.po,sha256=GkF6wBg7JAvAB8YExwOx4hzpLr1r2K6HsvSLYfyojow,3611 +django/contrib/postgres/locale/dsb/LC_MESSAGES/django.mo,sha256=zZa1kLFCKar4P1xVNpJ0BTXm4I-xcNi_e8IY7n8Aa4w,3605 +django/contrib/postgres/locale/dsb/LC_MESSAGES/django.po,sha256=5vnAeH9tF9H9xL2nqfwc0MLlhI4hnNr45x2NXlw8owo,4061 +django/contrib/postgres/locale/el/LC_MESSAGES/django.mo,sha256=NmzROkTfSbioGv8exM3UdMDnRAxR65YMteGv9Nhury4,3583 +django/contrib/postgres/locale/el/LC_MESSAGES/django.po,sha256=4WuswUwrInAh-OPX9k7gDdLb-oMKp1vQFUGvfm0ej00,4144 +django/contrib/postgres/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/postgres/locale/en/LC_MESSAGES/django.po,sha256=jrbHgf4TLTbEAaYV9-briB5JoE7sBWTn9r6aaRtpn54,2862 +django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.mo,sha256=WA0RSssD8ljI16g6DynQZQLQhd_0XR8ilrnJnepsIFg,2839 +django/contrib/postgres/locale/en_AU/LC_MESSAGES/django.po,sha256=4JASYUpYlQlSPREPvMxFBqDpDhprlkI1GpAqTJrmb10,3215 +django/contrib/postgres/locale/eo/LC_MESSAGES/django.mo,sha256=1wqM_IVO8Dl9AefzvWYuoS4eNTrBg7LDH6XUMovKi9A,2742 +django/contrib/postgres/locale/eo/LC_MESSAGES/django.po,sha256=r2tpOblfLAAHMacDWU-OVXTQus_vvAPMjUzVfrV_T7U,3217 +django/contrib/postgres/locale/es/LC_MESSAGES/django.mo,sha256=O2Tdel44oxmQ13ZcwMwK3QPxUPChHdUzVKg2pLCPoqo,3163 +django/contrib/postgres/locale/es/LC_MESSAGES/django.po,sha256=YPjvjmvpS69FuNmPm-7Z1K1Eg_W01JwRHNrWkbKzVZ8,3794 +django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.mo,sha256=zIN-1vsrChWXLDuGrzs61LbBuOwsyifWcvo9NrYCy2k,3140 +django/contrib/postgres/locale/es_AR/LC_MESSAGES/django.po,sha256=1seAy6OHEKG4fDV4NwKQyGfkjT29zjgwvXZ85u1VNtw,3506 +django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.mo,sha256=Q2eOegYKQFY3fAKZCX7VvZAN6lT304W51aGl0lzkbLU,2484 +django/contrib/postgres/locale/es_CO/LC_MESSAGES/django.po,sha256=bbgOn34B7CSq1Kf2IrJh6oRJWPur_Smc4ebljIxAFGE,3233 +django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.mo,sha256=l6WdS59mDfjsV9EMULjKP2DhXR7x3bYax1iokL-AXcU,689 +django/contrib/postgres/locale/es_MX/LC_MESSAGES/django.po,sha256=_-jzhIT71zV539_4SUbwvOXfDHkxRy1FDGdx23iB7B4,2283 +django/contrib/postgres/locale/et/LC_MESSAGES/django.mo,sha256=oPGqGUQhU9xE7j6hQZSVdC-be2WV-_BNrSAaN4csFR4,2886 +django/contrib/postgres/locale/et/LC_MESSAGES/django.po,sha256=xKkb-0CQCAn37xe0G2jfQmjg2kuYBmXB5yBpTA5lYNI,3404 +django/contrib/postgres/locale/eu/LC_MESSAGES/django.mo,sha256=UG7x642-n3U7mamXuNHD66a_mR0agX72xSwBD3PpyJU,2883 +django/contrib/postgres/locale/eu/LC_MESSAGES/django.po,sha256=dAx6nlRd4FF_8i7Xeylwvj4HkEDKi3swFenkdJkDawU,3321 +django/contrib/postgres/locale/fa/LC_MESSAGES/django.mo,sha256=uLh9fJtCSKg5eaj9uGP2muN_71aFxpZwOjRHtnZhPik,3308 +django/contrib/postgres/locale/fa/LC_MESSAGES/django.po,sha256=adN7bh9Q_R0Wzlf2fWaQnTtvxo0NslyoHH5t5V0eeMM,3845 +django/contrib/postgres/locale/fi/LC_MESSAGES/django.mo,sha256=gB2z3nI8Bz-km3DngYfJulwelHSlWgZeBXlj5yWyA08,2943 +django/contrib/postgres/locale/fi/LC_MESSAGES/django.po,sha256=LNVTHv4-FWT5KOre5qTwLEpKIQbaSIusFH2uUmbwYBg,3315 +django/contrib/postgres/locale/fr/LC_MESSAGES/django.mo,sha256=02ug8j0VpkPC2tRDkXrK2snj91M68Ju29PUiv4UhAsQ,3391 +django/contrib/postgres/locale/fr/LC_MESSAGES/django.po,sha256=5T_wkYoHJcpzemKqR-7apZ11Pas4dZhnAitHOgT8gRc,3759 +django/contrib/postgres/locale/ga/LC_MESSAGES/django.mo,sha256=wVzUMn8xlOxfL2vn94fSQ73QGTSbTBG6_6kfQbDPQYM,3652 +django/contrib/postgres/locale/ga/LC_MESSAGES/django.po,sha256=OEuRFUSNTJJlJAg7mvXpratMipVeCovYsH9pTssNGI0,4122 +django/contrib/postgres/locale/gd/LC_MESSAGES/django.mo,sha256=okWU_Ke95EG2pm8rZ4PT5ScO-8f0Hqg65lYZgSid8tM,3541 +django/contrib/postgres/locale/gd/LC_MESSAGES/django.po,sha256=tjt5kfkUGryU3hFzPuAly2DBDLuLQTTD5p-XrxryFEI,4013 +django/contrib/postgres/locale/gl/LC_MESSAGES/django.mo,sha256=1Od7e0SG9tEeTefFLLWkU38tlk5PL5aRF1GTlKkfTAs,2912 +django/contrib/postgres/locale/gl/LC_MESSAGES/django.po,sha256=tE2-GX2OH06krOFxvzdJeYWC7a57QYNFx5OtMXFWTdQ,3316 +django/contrib/postgres/locale/he/LC_MESSAGES/django.mo,sha256=znkNJeCKSSA4DPdvN5LCj5tdcWvRJQKRLWMXqSIO4FI,3757 +django/contrib/postgres/locale/he/LC_MESSAGES/django.po,sha256=oVJ0bfd9gH3aF3lo6rCMbA_9_3nhLWKBqfVj-H220F0,4234 +django/contrib/postgres/locale/hr/LC_MESSAGES/django.mo,sha256=vdm5GxgpKuVdGoVl3VreD8IB1Mq5HGWuq-2YDeDrNnU,929 +django/contrib/postgres/locale/hr/LC_MESSAGES/django.po,sha256=8TxEnVH2yIQWbmbmDOpR7kksNFSaUGVhimRPQgSgDkM,2501 +django/contrib/postgres/locale/hsb/LC_MESSAGES/django.mo,sha256=SSZpG-PSeVCHrzB-wzW4wRHxIEt7hqobzvRLB-9tu8Y,3518 +django/contrib/postgres/locale/hsb/LC_MESSAGES/django.po,sha256=UQUlfpJsgd-0qa6hZhUkTAi6VF5ZYiygSMrLcsiEC4k,3971 +django/contrib/postgres/locale/hu/LC_MESSAGES/django.mo,sha256=o6JDAFIN7i21GE2N0q98SiqIdvGYPLLdDiMLC_UE5hM,2892 +django/contrib/postgres/locale/hu/LC_MESSAGES/django.po,sha256=yUcbOn1k08aqhkODsrQfLR3qk-UnEEbEYuP3JyQ3eCU,3432 +django/contrib/postgres/locale/hy/LC_MESSAGES/django.mo,sha256=2QFIJdmh47IGPqI-8rvuHR0HdH2LOAmaYqEeCwUpRuw,3234 +django/contrib/postgres/locale/hy/LC_MESSAGES/django.po,sha256=MLHMbdwdo1txzFOG-fVK4VUvAoDtrLA8CdpQThybSCQ,3825 +django/contrib/postgres/locale/ia/LC_MESSAGES/django.mo,sha256=gn8lf-gOP4vv-iiqnkcxvjzhJ8pTdetBhHyjl4TapXo,582 +django/contrib/postgres/locale/ia/LC_MESSAGES/django.po,sha256=FsqhPQf0j4g06rGuWSTn8A1kJ7E5U9rX16mtB8CAiIE,2251 +django/contrib/postgres/locale/id/LC_MESSAGES/django.mo,sha256=vWCSZJBmKu5uGS8KvQIJSMZA1YTwdbbJP4-OBhTmAwQ,2737 +django/contrib/postgres/locale/id/LC_MESSAGES/django.po,sha256=Z5TrRpCOv6Mgb2YFU84vE8cT_3W7flFwA8BUMm4VvO0,3308 +django/contrib/postgres/locale/is/LC_MESSAGES/django.mo,sha256=rNL5Un5K_iRAZDtpHo4egcySaaBnNEirYDuWw0eI7gk,2931 +django/contrib/postgres/locale/is/LC_MESSAGES/django.po,sha256=UO53ciyI0jCVtBOXWkaip2AbPE2Hd2YhzK1RAlcxyQ8,3313 +django/contrib/postgres/locale/it/LC_MESSAGES/django.mo,sha256=dsn-Xuhg1WeRkJVGHHdoPz-KobYsS8A41BUdnM4wQQ8,3210 +django/contrib/postgres/locale/it/LC_MESSAGES/django.po,sha256=2RpaA-mmvXcYkYTu_y0u3p32aAhP9DyAy641ZJL79sk,3874 +django/contrib/postgres/locale/ja/LC_MESSAGES/django.mo,sha256=IC9mYW8gXWNGuXeh8gGxGFvrjfxiSpj57E63Ka47pkM,3046 +django/contrib/postgres/locale/ja/LC_MESSAGES/django.po,sha256=IPnDsh8rtq158a63zQJekJ0LJlR3uj6KAjx4omc7XN0,3437 +django/contrib/postgres/locale/ka/LC_MESSAGES/django.mo,sha256=A_VhLUZbocGNF5_5mMoYfB3l654MrPIW4dL1ywd3Tw8,713 +django/contrib/postgres/locale/ka/LC_MESSAGES/django.po,sha256=kRIwQ1Nrzdf5arHHxOPzQcB-XwPNK5lUFKU0L3QHfC8,2356 +django/contrib/postgres/locale/kk/LC_MESSAGES/django.mo,sha256=xMc-UwyP1_jBHcGIAGWmDAjvSL50jJaiZbcT5TmzDOg,665 +django/contrib/postgres/locale/kk/LC_MESSAGES/django.po,sha256=f6Z3VUFRJ3FgSReC0JItjA0RaYbblqDb31lbJ3RRExQ,2327 +django/contrib/postgres/locale/ko/LC_MESSAGES/django.mo,sha256=G9Cl4uFost_c2y-3dBEF5ODuOe2BLThiXcEMEMXQQE8,2905 +django/contrib/postgres/locale/ko/LC_MESSAGES/django.po,sha256=JXqG3VCGEhBzAxGzOBb9w6oflaX4duhxNVht69ytOQY,3481 +django/contrib/postgres/locale/ky/LC_MESSAGES/django.mo,sha256=F0Ws34MbE7zJa8FNxA-9rFm5sNLL22D24LyiBb927lE,3101 +django/contrib/postgres/locale/ky/LC_MESSAGES/django.po,sha256=yAzSeT2jBm7R2ZXiuYBQFSKQ_uWIUfNTAobE1UYnlPs,3504 +django/contrib/postgres/locale/lt/LC_MESSAGES/django.mo,sha256=kJ3ih8HrHt2M_hFW0H9BZg7zcj6sXy6H_fD1ReIzngM,3452 +django/contrib/postgres/locale/lt/LC_MESSAGES/django.po,sha256=PNADIV8hdpLoqwW4zpIhxtWnQN8cPkdcoXYngyjFeFw,3972 +django/contrib/postgres/locale/lv/LC_MESSAGES/django.mo,sha256=UwBbbIbC_MO6xhB66UzO80XFcmlyv8-mfFEK4kQd6fE,3153 +django/contrib/postgres/locale/lv/LC_MESSAGES/django.po,sha256=phDSZnB5JeCoCi0f_MYCjQiwhE00gcVl5urOFiAKmkU,3768 +django/contrib/postgres/locale/mk/LC_MESSAGES/django.mo,sha256=WE4nRJKWAZvXuyU2qT2_FGqGlKYsP1KSACCtT10gQQY,3048 +django/contrib/postgres/locale/mk/LC_MESSAGES/django.po,sha256=CQX91LP1Gbkazpt4hTownJtSqZGR1OJfoD-1MCo6C1Y,3783 +django/contrib/postgres/locale/ml/LC_MESSAGES/django.mo,sha256=N47idWIsmtghZ_D5325TRsDFeoUa0MIvMFtdx7ozAHc,1581 +django/contrib/postgres/locale/ml/LC_MESSAGES/django.po,sha256=lt_7fGZV7BCB2XqFWIQQtH4niU4oMBfGzQQuN5sD0fo,2947 +django/contrib/postgres/locale/mn/LC_MESSAGES/django.mo,sha256=VWeXaMvdqhW0GHs1Irb1ikTceH7jMKH_xMzKLH0vKZg,3310 +django/contrib/postgres/locale/mn/LC_MESSAGES/django.po,sha256=p3141FJiYrkV8rocgqdxnV05FReQYZmosv9LI46FlfE,3867 +django/contrib/postgres/locale/mr/LC_MESSAGES/django.mo,sha256=vVYwi51As7ovNuvoGU96oL3uryKHGVPCJXS2rRrkZ2o,1132 +django/contrib/postgres/locale/mr/LC_MESSAGES/django.po,sha256=DHSatTEPlPRSH_qXXBXKeyHB1X7YQ0UhkUc-j92iAyY,2595 +django/contrib/postgres/locale/ms/LC_MESSAGES/django.mo,sha256=m3JZm1IIMZwmpvIs3oV0roYCeR_UlswHyCpZjjE6-A8,2712 +django/contrib/postgres/locale/ms/LC_MESSAGES/django.po,sha256=HCMBA1fxKLJct14ywap0PYVBi2bDp2F97Ms5_-G_Pwg,3025 +django/contrib/postgres/locale/nb/LC_MESSAGES/django.mo,sha256=3h8DqEFG39i6uHY0vpXuGFmoJnAxTtRFy1RazcYIXfg,2849 +django/contrib/postgres/locale/nb/LC_MESSAGES/django.po,sha256=gDUg-HDg3LiYMKzb2QaDrYopqaJmbvnw2Fo-qhUHFuI,3252 +django/contrib/postgres/locale/ne/LC_MESSAGES/django.mo,sha256=5XdBLGMkn20qeya3MgTCpsIDxLEa7PV-i2BmK993iRc,875 +django/contrib/postgres/locale/ne/LC_MESSAGES/django.po,sha256=1QLLfbrHneJmxM_5UTpNIYalP-qX7Bn7bmj4AfDLIzE,2421 +django/contrib/postgres/locale/nl/LC_MESSAGES/django.mo,sha256=XK0L91JYDbkgw45eJysai_3u28KqZ5UFPTYaCTMiDPA,2993 +django/contrib/postgres/locale/nl/LC_MESSAGES/django.po,sha256=qU17zpXRHSoBQIkcP-Cm1GFh0BcpUTJsdh277P8dYG0,3565 +django/contrib/postgres/locale/nn/LC_MESSAGES/django.mo,sha256=RdMFozwxYIckBY40mJhN-jjkghztKn0-ytCtqxFHBMY,2836 +django/contrib/postgres/locale/nn/LC_MESSAGES/django.po,sha256=vl8NkY342eonqbrj89eCR_8PsJpeQuaRjxems-OPIBk,3184 +django/contrib/postgres/locale/pl/LC_MESSAGES/django.mo,sha256=Wox9w-HN7Guf8N1nkgemuDVs0LQxxTmEqQDOxriKy60,3462 +django/contrib/postgres/locale/pl/LC_MESSAGES/django.po,sha256=pxm_IKMg8g5qfg19CKc5JEdK6IMnhyeSPHd7THUb1GY,4217 +django/contrib/postgres/locale/pt/LC_MESSAGES/django.mo,sha256=KZvJXjrIdtxbffckcrRV3nJ5GnID6PvqAb7vpOiWpHE,2745 +django/contrib/postgres/locale/pt/LC_MESSAGES/django.po,sha256=2gIDOjnFo6Iom-oTkQek4IX6FYPI9rNp9V-6sJ55aL8,3281 +django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.mo,sha256=PVEiflh0v3AqVOC0S85XO-V3xDU3d8UwS31lzGrLoi8,3143 +django/contrib/postgres/locale/pt_BR/LC_MESSAGES/django.po,sha256=onF2K6s-McAXDSRzQ50EpGrKAIv89vvRWjCjsLCVXvs,3896 +django/contrib/postgres/locale/ro/LC_MESSAGES/django.mo,sha256=w4tyByrZlba_Ju_F2OzD52ut5JSD6UGJfjt3A7CG_uc,3188 +django/contrib/postgres/locale/ro/LC_MESSAGES/django.po,sha256=hnotgrr-zeEmE4lgpqDDiJ051GoGbL_2GVs4O9dVLXI,3700 +django/contrib/postgres/locale/ru/LC_MESSAGES/django.mo,sha256=LKkZs-TvPFTSrXVVaaoZ-Ec0kL_E9_5vTaExVxlr_rk,4732 +django/contrib/postgres/locale/ru/LC_MESSAGES/django.po,sha256=mnmVUlwZqn9QwdMx4g0D9xYxxKw_4pMFslwT2c4AjuE,5488 +django/contrib/postgres/locale/sk/LC_MESSAGES/django.mo,sha256=dRnTFkvRMbq5QnVEtrQ9Of9MxKTFYPP8sE7kbvUEjug,3381 +django/contrib/postgres/locale/sk/LC_MESSAGES/django.po,sha256=OwKv_mc9cuwt_YGnoVQLF3t2RsIbFyG_k3NKoIMAMoY,3899 +django/contrib/postgres/locale/sl/LC_MESSAGES/django.mo,sha256=JM9YZagjHIIrCxOKkR4d4oKaEXKJU7bfVdM3_uzSTAE,2810 +django/contrib/postgres/locale/sl/LC_MESSAGES/django.po,sha256=1jI2zXSU4LWxfLEUL-FXpldCExZJLD53Jy7VnA258xs,3602 +django/contrib/postgres/locale/sq/LC_MESSAGES/django.mo,sha256=slZq_bGPIzF8AlmtsfIqo65B14YYfw_uYKNcw_Tun0g,2958 +django/contrib/postgres/locale/sq/LC_MESSAGES/django.po,sha256=TPmtauQdDYM5QIOhGj2EwjRBQ3qOiRmvPMpUavUqh9A,3394 +django/contrib/postgres/locale/sr/LC_MESSAGES/django.mo,sha256=OfsUq8rZdD2NP7NQjBoatSXATxc8d6QL-nxmlPp5QSc,3775 +django/contrib/postgres/locale/sr/LC_MESSAGES/django.po,sha256=vUvFaIp8renqgGs-VgrtPNu7IBkcB38mlTBJ0xxXTaI,4214 +django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=2nDFP43vk1Jih35jns8vSbOhhLq_w7t_2vJHg-crfxY,3112 +django/contrib/postgres/locale/sr_Latn/LC_MESSAGES/django.po,sha256=QN4NEy0zFaPNjTCBrT9TydedWG7w4QBPm-pO7cKvSjg,3510 +django/contrib/postgres/locale/sv/LC_MESSAGES/django.mo,sha256=AkUgWYRBGNJYg5QDPJR3qu4BA_XF9xaZA__3m_KF4hk,2918 +django/contrib/postgres/locale/sv/LC_MESSAGES/django.po,sha256=hhJBRobgyHkLeKxdDxNkEl9XKkDXkrlx6PjyWcERp7I,3487 +django/contrib/postgres/locale/tg/LC_MESSAGES/django.mo,sha256=3yW5NKKsa2f2qDGZ4NGlSn4DHatLOYEv5SEwB9voraA,2688 +django/contrib/postgres/locale/tg/LC_MESSAGES/django.po,sha256=Zuix5sJH5Fz9-joe_ivMRpNz2Fbzefsxz3OOoDV0o1c,3511 +django/contrib/postgres/locale/tk/LC_MESSAGES/django.mo,sha256=ytivs6cnECDuyVKToFQMRnH_RPr4PlVepg8xFHnr0W4,2789 +django/contrib/postgres/locale/tk/LC_MESSAGES/django.po,sha256=bfXIyKNOFRC3U34AEKCsYQn3XMBGtgqHsXpboHvRQq0,3268 +django/contrib/postgres/locale/tr/LC_MESSAGES/django.mo,sha256=hZ2pxkYNOGE4BX--QmDlzqXxT21gHaPGA6CmXDODzhI,2914 +django/contrib/postgres/locale/tr/LC_MESSAGES/django.po,sha256=fzQsDL_wSO62qUaXCutRgq0ifrQ9oOaaxVQRyfnvV7Y,3288 +django/contrib/postgres/locale/ug/LC_MESSAGES/django.mo,sha256=ClLFBgCNopAREx7jy9WRbEASJERWJO8WZHriZrPtDZU,3938 +django/contrib/postgres/locale/ug/LC_MESSAGES/django.po,sha256=Ldd11fS8-D6ZeannnC6pCmBk7fmtqR_RXaeaNZQtU6M,4323 +django/contrib/postgres/locale/uk/LC_MESSAGES/django.mo,sha256=Jg6nM7ah7hEv7eqpe11e0e_MvRaMAQW3mdHTj9hqyG8,4406 +django/contrib/postgres/locale/uk/LC_MESSAGES/django.po,sha256=6gBP1xKxK9hf8ISCR1wABxkKXEUTx2CUYHGr6RVPI94,5100 +django/contrib/postgres/locale/uz/LC_MESSAGES/django.mo,sha256=PcmhhVC1spz3EFrQ2qdhfPFcA1ELHtBhHGWk9Z868Ss,703 +django/contrib/postgres/locale/uz/LC_MESSAGES/django.po,sha256=lbQxX2cmueGCT8sl6hsNWcrf9H-XEUbioP4L7JHGqiU,2291 +django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=ln_p6MRs5JPvTAXFzegXYnCCKki-LEr_YiOw6sK8oPA,2560 +django/contrib/postgres/locale/zh_Hans/LC_MESSAGES/django.po,sha256=7YZE8B0c1HuKVjGzreY7iiyuFeyPgqzKIwzxe5YOKb4,3084 +django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=7-gE2HUKbQwMwzMXT3_sMbI2GbuS2uzciNnJgKOMZUQ,2563 +django/contrib/postgres/locale/zh_Hant/LC_MESSAGES/django.po,sha256=nkYgbfQNoa3eYNCYMPgGVhtGWScjWtP2rjlV8nAXgH0,2973 +django/contrib/postgres/lookups.py,sha256=J50bsr8rLjp_zzdViSVDDcTLfDkY21fEUoyqCgeHauI,1991 +django/contrib/postgres/operations.py,sha256=SI3VgaNJqrZi6ZyTlZ1QclHUYix3VXUV15SmODIFg_0,12072 +django/contrib/postgres/search.py,sha256=bIXux7NXgsVTVAauvScWUPtYNR4E2u1D1Rd6PNf2s6Y,11732 +django/contrib/postgres/serializers.py,sha256=wCg0IzTNeuVOiC2cdy1wio6gChjqVvH6Ri4hkCkEeXU,435 +django/contrib/postgres/signals.py,sha256=cpkaedbyvajpN4NNAYLA6TfKI_4fe9AU40CeYhYmS8Q,2870 +django/contrib/postgres/templates/postgres/widgets/split_array.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/contrib/postgres/utils.py,sha256=32nCnzdMZ7Ra4dDonbIdv1aCppV3tnQnoEX9AhCJe38,1187 +django/contrib/postgres/validators.py,sha256=GCJtwISehlhcqQhR5JEfrcwPUcCJqtpFV_fu4aRLb34,2801 +django/contrib/redirects/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/redirects/__pycache__/__init__.cpython-310.pyc,, +django/contrib/redirects/__pycache__/admin.cpython-310.pyc,, +django/contrib/redirects/__pycache__/apps.cpython-310.pyc,, +django/contrib/redirects/__pycache__/middleware.cpython-310.pyc,, +django/contrib/redirects/__pycache__/models.cpython-310.pyc,, +django/contrib/redirects/admin.py,sha256=1bPOgeZYRYCHdh7s2SpXnuL2WsfdQjD96U5Y3xhRY8g,314 +django/contrib/redirects/apps.py,sha256=1uS5EBp7WwDnY0WHeaRYo7VW9j-s20h4KDdImodjCNg,251 +django/contrib/redirects/locale/af/LC_MESSAGES/django.mo,sha256=p1jR8LLNrzuDM6gvYBzQAS5xg7X8O17301Fo5xEU2yI,1151 +django/contrib/redirects/locale/af/LC_MESSAGES/django.po,sha256=wkVhdkjL6kI-0uxzWPCrEMhf_iUSbbHV1D0dFPIw1eU,1385 +django/contrib/redirects/locale/ar/LC_MESSAGES/django.mo,sha256=FfPauXNUmQxq0R1-eQ2xw2WY1Oi33sLwVhyKX10_zFw,1336 +django/contrib/redirects/locale/ar/LC_MESSAGES/django.po,sha256=X0xX51asSDWedd56riJ4UrsCGEjH-lZdkcilIg4amgI,1595 +django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=hg1lkBEORP2vgLPRbuKcXiIFUcTvAO7KrjbPXlWhvqY,1379 +django/contrib/redirects/locale/ar_DZ/LC_MESSAGES/django.po,sha256=O4quBKA1jHATGGeDqCONDFfAqvDvOAATIBvueeMphyY,1581 +django/contrib/redirects/locale/ast/LC_MESSAGES/django.mo,sha256=a1ixBQQIdBZ7o-ADnF2r74CBtPLsuatG7txjc05_GXI,1071 +django/contrib/redirects/locale/ast/LC_MESSAGES/django.po,sha256=PguAqeIUeTMWsADOYLTxoC6AuKrCloi8HN18hbm3pZ0,1266 +django/contrib/redirects/locale/az/LC_MESSAGES/django.mo,sha256=IBIB2EW9ZYQTD0x4d8VadXY0lFx-XYtKCd1F_e72ibA,1106 +django/contrib/redirects/locale/az/LC_MESSAGES/django.po,sha256=D3ZGFhKeMTjJ4YtUOTRjBCvZ2cofqfksbk39mvHDemw,1384 +django/contrib/redirects/locale/be/LC_MESSAGES/django.mo,sha256=fVqy28ml508UJf5AA-QVsS5dzKI8Q_ugZZ34WjTpJ-s,1426 +django/contrib/redirects/locale/be/LC_MESSAGES/django.po,sha256=zHBVewcpt0KoavV96v3F4wybqtkGb1jUuPz7sbiWWDI,1662 +django/contrib/redirects/locale/bg/LC_MESSAGES/django.mo,sha256=o-ETSDGtAFZRo3SPd_IHe0mJ3R0RHA32KpgfOmUH11M,1279 +django/contrib/redirects/locale/bg/LC_MESSAGES/django.po,sha256=9qm8s6vj-0LStnyEJ8iYVi13_MfugVAAs2RHvIi7kW8,1587 +django/contrib/redirects/locale/bn/LC_MESSAGES/django.mo,sha256=SbQh_pgxNCogvUFud7xW9T6NTAvpaQb2jngXCtpjICM,1319 +django/contrib/redirects/locale/bn/LC_MESSAGES/django.po,sha256=LgUuiPryDLSXxo_4KMCdjM5XC3BiRfINuEk0s5PUQYQ,1511 +django/contrib/redirects/locale/br/LC_MESSAGES/django.mo,sha256=Yt8xo5B5LJ9HB8IChCkj5mljFQAAKlaW_gurtF8q8Yw,1429 +django/contrib/redirects/locale/br/LC_MESSAGES/django.po,sha256=L2qPx6mZEVUNay1yYEweKBLr_fXVURCnACfsezfP_pI,1623 +django/contrib/redirects/locale/bs/LC_MESSAGES/django.mo,sha256=0Yak4rXHjRRXLu3oYYzvS8qxvk2v4IFvUiDPA68a5YI,1115 +django/contrib/redirects/locale/bs/LC_MESSAGES/django.po,sha256=s9Nhx3H4074hlSqo1zgQRJbozakdJTwA1aTuMSqEJWw,1316 +django/contrib/redirects/locale/ca/LC_MESSAGES/django.mo,sha256=VHE6qHCEoA7rQk0fMUpoTfwqSfu63-CiOFvhvKp5DMQ,1136 +django/contrib/redirects/locale/ca/LC_MESSAGES/django.po,sha256=PSMb_7iZBuYhtdR8byh9zr9dr50Z_tQ518DUlqoEA_M,1484 +django/contrib/redirects/locale/ckb/LC_MESSAGES/django.mo,sha256=23RM9kso65HHxGHQ_DKxGDaUkmdX72DfYvqQfhr7JKw,1340 +django/contrib/redirects/locale/ckb/LC_MESSAGES/django.po,sha256=cGrAq3e6h3vbYrtyi0oFSfZmLlJ0-Y3uqrvFon48n80,1521 +django/contrib/redirects/locale/cs/LC_MESSAGES/django.mo,sha256=UwYsoEHsg7FJLVe0JxdOa1cTGypqJFienAbWe7Vldf0,1229 +django/contrib/redirects/locale/cs/LC_MESSAGES/django.po,sha256=hnWJLXX7IjwZK7_8L3p-dpj5XpDmEo7lQ7-F4upjn7U,1504 +django/contrib/redirects/locale/cy/LC_MESSAGES/django.mo,sha256=NSGoK12A7gbtuAuzQEVFPNSZMqqmhHyRvTEn9PUm9So,1132 +django/contrib/redirects/locale/cy/LC_MESSAGES/django.po,sha256=jDmC64z5exPnO9zwRkBmpa9v3DBlaeHRhqZYPoWqiIY,1360 +django/contrib/redirects/locale/da/LC_MESSAGES/django.mo,sha256=_UVfTMRG__5j7Ak8Q3HtXSy_DPGpZ1XvKj9MHdmR_xI,1132 +django/contrib/redirects/locale/da/LC_MESSAGES/django.po,sha256=RAWWbZXbJciNSdw4skUEoTnOb19iKXAe1KXJLWi0zPQ,1418 +django/contrib/redirects/locale/de/LC_MESSAGES/django.mo,sha256=uh-ldy-QkWS5-ARX6cLyzxzdhbTb_chyEbBPFCvCKuE,1155 +django/contrib/redirects/locale/de/LC_MESSAGES/django.po,sha256=hhGNnVCRV4HNxhCYfmVXTOIkabD7qsVQccwxKa5Tz9g,1424 +django/contrib/redirects/locale/dsb/LC_MESSAGES/django.mo,sha256=LXgczA38RzrN7zSWpxKy8_RY4gPg5tZLl30CJGjJ63s,1236 +django/contrib/redirects/locale/dsb/LC_MESSAGES/django.po,sha256=rI9dyDp7zuZ6CjvFyo2OkGUDK5XzdvdI0ma8IGVkjp4,1431 +django/contrib/redirects/locale/el/LC_MESSAGES/django.mo,sha256=sD3HT4e53Yd3HmQap_Mqlxkm0xF98A6PFW8Lil0PihI,1395 +django/contrib/redirects/locale/el/LC_MESSAGES/django.po,sha256=puhVCcshg5HaPHsVAOucneVgBYT6swhCCBpVGOZykgA,1716 +django/contrib/redirects/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/redirects/locale/en/LC_MESSAGES/django.po,sha256=u4RcMkFmNvlG9Bv6kM0a0scWUMDUbTEDJGR90-G8C0E,1123 +django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.mo,sha256=wxCpSLGl_zsE47kDwilDkpihazwHkA363PvtGOLWhdk,1127 +django/contrib/redirects/locale/en_AU/LC_MESSAGES/django.po,sha256=zujH1WuxoHw_32flptG0x2Ob_BlilLKXuMjQxVbZmgw,1307 +django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.mo,sha256=VscL30uJnV-eiQZITpBCy0xk_FfKdnMh4O9Hk4HGxww,1053 +django/contrib/redirects/locale/en_GB/LC_MESSAGES/django.po,sha256=loe8xIVjZ7eyteQNLPoa-QceBZdgky22dR6deK5ubmA,1246 +django/contrib/redirects/locale/eo/LC_MESSAGES/django.mo,sha256=WZ3NHrS0qMoCJER5jWnGI12bvY5wH0yytM8F7BFTgYc,712 +django/contrib/redirects/locale/eo/LC_MESSAGES/django.po,sha256=T-Gw75sOjZgqpwjIfieIrLxbg1kekWzjrJYSMld2OEQ,1299 +django/contrib/redirects/locale/es/LC_MESSAGES/django.mo,sha256=xyeIQL_pHFyo7p7SkeuxzKdDsma2EXhvnPNDHUhaBv8,1159 +django/contrib/redirects/locale/es/LC_MESSAGES/django.po,sha256=Y3hPQrcbhLtR-pPYRJJXkJME5M8Enr20j9D63hhe9ZA,1490 +django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.mo,sha256=JdKzpdyf9W2m_0_NguvXvyciOh6LAATfE6lqcsp45To,1144 +django/contrib/redirects/locale/es_AR/LC_MESSAGES/django.po,sha256=3zrKJXLh_mrjc4A6g9O6ePyFz8PNUMYTPjNFpvEhaDo,1364 +django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.mo,sha256=wcAMOiqsgz2KEpRwirRH9FNoto6vmo_hxthrQJi0IHU,1147 +django/contrib/redirects/locale/es_CO/LC_MESSAGES/django.po,sha256=n8DM14vHekZRayH0B6Pm3L5XnSo4lto4ZAdu4OhcOmc,1291 +django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.mo,sha256=38fbiReibMAmC75BCCbyo7pA2VA3QvmRqVEo_K6Ejow,1116 +django/contrib/redirects/locale/es_MX/LC_MESSAGES/django.po,sha256=t7R6PiQ1bCc7jhfMrjHlZxVQ6BRlWT2Vv4XXhxBD_Oo,1397 +django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486 +django/contrib/redirects/locale/es_VE/LC_MESSAGES/django.po,sha256=f4XZW8OHjRJoztMJtSDCxd2_Mfy-XK44hLtigjGSsZY,958 +django/contrib/redirects/locale/et/LC_MESSAGES/django.mo,sha256=34-Z1s9msdnj6U7prMctEWCxAR8TNnP44MIoyUuFsls,1131 +django/contrib/redirects/locale/et/LC_MESSAGES/django.po,sha256=1VWcUbM9z_nNmiGnT9Mka3Y3ZLRVHuJdS_j_yNXvmQ0,1479 +django/contrib/redirects/locale/eu/LC_MESSAGES/django.mo,sha256=yHlAEz01pWse4ZworAj7JiATUam5Fp20EZd_3PRgSNw,1126 +django/contrib/redirects/locale/eu/LC_MESSAGES/django.po,sha256=zAvSdahjvq727hXeGjHJ_R5L5meCrOv98tbH3rwlBcE,1404 +django/contrib/redirects/locale/fa/LC_MESSAGES/django.mo,sha256=vZa1KKm2y8duEv9UbJMyiM8WO2EAXcevdR3Lj1ISgLU,1234 +django/contrib/redirects/locale/fa/LC_MESSAGES/django.po,sha256=1quB0Wx5VTIjX2QUCpENl1GA2hpSdsRpgK931jr20B0,1541 +django/contrib/redirects/locale/fi/LC_MESSAGES/django.mo,sha256=xJEd4M2IowXxKBlaGuOEgFKA9OuihcgPoK07Beat4cc,1164 +django/contrib/redirects/locale/fi/LC_MESSAGES/django.po,sha256=1I7AoXMPRDMY6TCjPkQh0Q9g68r9BwKOwki9DybcFWc,1429 +django/contrib/redirects/locale/fr/LC_MESSAGES/django.mo,sha256=YhVNoNaHdSOp2P2F7xfo2MHCd2KkHiehpVjLyJ4VLuw,1155 +django/contrib/redirects/locale/fr/LC_MESSAGES/django.po,sha256=-ljzEKiU05annJ8DHw4OOg8eDCAnWLV2V33R-tQn9dE,1391 +django/contrib/redirects/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/redirects/locale/fy/LC_MESSAGES/django.po,sha256=D7xverCbf3kTCcFM8h7EKWM5DcxZRqeOSKDB1irbKeE,948 +django/contrib/redirects/locale/ga/LC_MESSAGES/django.mo,sha256=DMxYLCVQl6qtLf8SXpcy1u9DLbTVFM-03Q2iXjNxNs0,1182 +django/contrib/redirects/locale/ga/LC_MESSAGES/django.po,sha256=HL2vCAoXAj0pk4MkrriUY_Jp2xvDaMqJo8i1z2MkKT8,1497 +django/contrib/redirects/locale/gd/LC_MESSAGES/django.mo,sha256=baZXdulbPZwe4_Q3OwfHFl4GJ4hCYtoZz-lE4wcdJvg,1250 +django/contrib/redirects/locale/gd/LC_MESSAGES/django.po,sha256=M4E2giFgzRowd3OsvhD389MyJmT5osKz1Vs1sEfmUpU,1428 +django/contrib/redirects/locale/gl/LC_MESSAGES/django.mo,sha256=au4ulT76A8cd_C_DmtEdiuQ14dIJaprVvFbS9_hYRNk,1131 +django/contrib/redirects/locale/gl/LC_MESSAGES/django.po,sha256=r2t9gHhIvPb8d9XR8fG0b_eW5xkkQswuj4ekJI9x90w,1393 +django/contrib/redirects/locale/he/LC_MESSAGES/django.mo,sha256=Yu8KTmY0mJEcxhkhTEVElPBaWwO9Zj4NqC8eopW0cRc,1278 +django/contrib/redirects/locale/he/LC_MESSAGES/django.po,sha256=UcCd_BqHOkTV1dP0hgJ4dNQzBZ4p8TujwSjF3FWAMjo,1513 +django/contrib/redirects/locale/hi/LC_MESSAGES/django.mo,sha256=onR8L7Kvkx6HgFLK7jT-wA_zjarBN8pyltG6BbKFIWU,1409 +django/contrib/redirects/locale/hi/LC_MESSAGES/django.po,sha256=fNv9_qwR9iS-pjWNXnrUFIqvc10lwg3bfj5lgdQOy1U,1649 +django/contrib/redirects/locale/hr/LC_MESSAGES/django.mo,sha256=7wHi6Uu0czZhI6v0ndJJ1wSkalTRfn7D5ovyw8tr4U4,1207 +django/contrib/redirects/locale/hr/LC_MESSAGES/django.po,sha256=HtxZwZ-ymmf-XID0z5s7nGYg-4gJL8i6FDGWt9i4Wns,1406 +django/contrib/redirects/locale/hsb/LC_MESSAGES/django.mo,sha256=6lfIW4LcMGvuLOY0U4w1V6Xwcd_TsUC3r-QzZOOLwys,1221 +django/contrib/redirects/locale/hsb/LC_MESSAGES/django.po,sha256=l5pATo8NHa8ypB8dCigRwqpLZvV8W0v2vPh60oAeGn0,1420 +django/contrib/redirects/locale/hu/LC_MESSAGES/django.mo,sha256=4oYBNGEmFMISzw3LExVf6CHsJD_o20mMy132pwzM-wk,1111 +django/contrib/redirects/locale/hu/LC_MESSAGES/django.po,sha256=UYJ_ZrAnOqA6S8nkkfN_FBLxCyPHJjOMd1OSIUVc8aY,1383 +django/contrib/redirects/locale/hy/LC_MESSAGES/django.mo,sha256=gT5x1TZXMNyBwfmQ-C_cOB60JGYdKIM7tVb3-J5d6nw,1261 +django/contrib/redirects/locale/hy/LC_MESSAGES/django.po,sha256=40QTpth2AVeoy9P36rMJC2C82YsBh_KYup19WL6zM6w,1359 +django/contrib/redirects/locale/ia/LC_MESSAGES/django.mo,sha256=PDB5ZQP6iH31xN6N2YmPZYjt6zzc88TRmh9_gAWH2U0,1152 +django/contrib/redirects/locale/ia/LC_MESSAGES/django.po,sha256=GXjbzY-cQz2QLx_iuqgijT7VUMcoNKL7prbP6yIbj8E,1297 +django/contrib/redirects/locale/id/LC_MESSAGES/django.mo,sha256=XEsvVWMR9As9csO_6iXNAcLZrErxz3HfDj5GTe06fJU,1105 +django/contrib/redirects/locale/id/LC_MESSAGES/django.po,sha256=t8FoC1xIB-XHDplyDJByQGFnHggxR0LSfUMGwWoAKWE,1410 +django/contrib/redirects/locale/io/LC_MESSAGES/django.mo,sha256=vz7TWRML-DFDFapbEXTByb9-pRQwoeJ0ApSdh6nOzXY,1019 +django/contrib/redirects/locale/io/LC_MESSAGES/django.po,sha256=obStuMYYSQ7x2utkGS3gekdPfnsNAwp3DcNwlwdg1sI,1228 +django/contrib/redirects/locale/is/LC_MESSAGES/django.mo,sha256=aMjlGilYfP7clGriAp1Za60uCD40rvLt9sKXuYX3ABg,1040 +django/contrib/redirects/locale/is/LC_MESSAGES/django.po,sha256=nw5fxVV20eQqsk4WKg6cIiKttG3zsITSVzH4p5xBV8s,1299 +django/contrib/redirects/locale/it/LC_MESSAGES/django.mo,sha256=bBj6dvhZSpxojLZ0GiMBamh1xiluxAYMt6RHubi9CxU,1092 +django/contrib/redirects/locale/it/LC_MESSAGES/django.po,sha256=NHSVus7ixtrB7JDIrYw22srZcse5i4Z9y8Ply_-Jcts,1390 +django/contrib/redirects/locale/ja/LC_MESSAGES/django.mo,sha256=XSJw3iLK0gYVjZ86MYuV4jfoiN_-WkH--oMK5uW9cs8,1193 +django/contrib/redirects/locale/ja/LC_MESSAGES/django.po,sha256=SlYrmC3arGgS7SL8cCnq7d37P-bQGcmpgUXAwVC2eRw,1510 +django/contrib/redirects/locale/ka/LC_MESSAGES/django.mo,sha256=0aOLKrhUX6YAIMNyt6KES9q2iFk2GupEr76WeGlJMkk,1511 +django/contrib/redirects/locale/ka/LC_MESSAGES/django.po,sha256=AQWIEdhxp55XnJwwHrUxxQaGbLJPmdo1YLeT86IJqnY,1725 +django/contrib/redirects/locale/kab/LC_MESSAGES/django.mo,sha256=Ogx9NXK1Nfw4ctZfp-slIL81ziDX3f4DZ01OkVNY5Tw,699 +django/contrib/redirects/locale/kab/LC_MESSAGES/django.po,sha256=gI6aUPkXH-XzKrStDsMCMNfQKDEc-D1ffqE-Z-ItQuI,1001 +django/contrib/redirects/locale/kk/LC_MESSAGES/django.mo,sha256=KVLc6PKL1MP_Px0LmpoW2lIvgLiSzlvoJ9062F-s3Zw,1261 +django/contrib/redirects/locale/kk/LC_MESSAGES/django.po,sha256=Xoy4mnOT51F_GS1oIO91EAuwt-ZfePKh-sutedo6D_g,1478 +django/contrib/redirects/locale/km/LC_MESSAGES/django.mo,sha256=tcW1s7jvTG0cagtdRNT0jSNkhX-B903LKl7bK31ZvJU,1248 +django/contrib/redirects/locale/km/LC_MESSAGES/django.po,sha256=KJ4h1umpfFLdsWZtsfXoeOl6cUPUD97U4ISWt80UZ2U,1437 +django/contrib/redirects/locale/kn/LC_MESSAGES/django.mo,sha256=24GHcQlEoCDri-98eLtqLbGjtJz9cTPAfYdAijsL5ck,788 +django/contrib/redirects/locale/kn/LC_MESSAGES/django.po,sha256=xkH24itr2fpuCQMGQ3xssOqaN_7KzM-GLy0u00ti27I,1245 +django/contrib/redirects/locale/ko/LC_MESSAGES/django.mo,sha256=_m-8YdcKaUqQ-O-ioyJqlvD3d4pT9KEES-_U5v32tVo,1152 +django/contrib/redirects/locale/ko/LC_MESSAGES/django.po,sha256=6m_YYMBCPXdKzk0mN4MdHzroU78uDRp70B67qMu0Ew8,1564 +django/contrib/redirects/locale/ky/LC_MESSAGES/django.mo,sha256=4jX_g-hledmjWEx0RvY99G5QcBj_mQt_HZzpd000J44,1265 +django/contrib/redirects/locale/ky/LC_MESSAGES/django.po,sha256=yvx21nxsqqVzPyyxX9_rF-oeaY2WszXrG4ZDSZTW6-4,1522 +django/contrib/redirects/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/redirects/locale/lb/LC_MESSAGES/django.po,sha256=Hv1CF9CC78YuVVNpklDtPJDU5-iIUeuXcljewmc9akg,946 +django/contrib/redirects/locale/lt/LC_MESSAGES/django.mo,sha256=reiFMXJnvE4XUosbKjyvUFzl4IKjlJoFK1gVJE9Tbnc,1191 +django/contrib/redirects/locale/lt/LC_MESSAGES/django.po,sha256=G56UIYuuVLgwzHCIj_suHNYPe1z76Y_cauWfGEs4nKI,1448 +django/contrib/redirects/locale/lv/LC_MESSAGES/django.mo,sha256=slGK6O2tYD5yciS8m_7h2WA4LOPf05nQ4oTRKB63etE,1175 +django/contrib/redirects/locale/lv/LC_MESSAGES/django.po,sha256=GUDn1IYQ5UMOQUBvGfuVOeVb-bpf5FHVigqTt_N0I0M,1442 +django/contrib/redirects/locale/mk/LC_MESSAGES/django.mo,sha256=3XGgf2K60LclScPKcgw07TId6x535AW5jtGVJ9lC01A,1353 +django/contrib/redirects/locale/mk/LC_MESSAGES/django.po,sha256=Smsdpid5VByoxvnfzju_XOlp6aTPl8qshFptot3cRYM,1596 +django/contrib/redirects/locale/ml/LC_MESSAGES/django.mo,sha256=IhSkvbgX9xfE4GypOQ7W7SDM-wOOqx1xgSTW7L1JofU,1573 +django/contrib/redirects/locale/ml/LC_MESSAGES/django.po,sha256=9KpXf88GRUB5I51Rj3q9qhvhjHFINuiJ9ig0SZdYE6k,1755 +django/contrib/redirects/locale/mn/LC_MESSAGES/django.mo,sha256=14fdHC_hZrRaA0EAFzBJy8BHj4jMMX6l2e6rLLBtJ8E,1274 +django/contrib/redirects/locale/mn/LC_MESSAGES/django.po,sha256=7_QzUWf5l0P-7gM35p9UW7bOj33NabQq_zSrekUeZsY,1502 +django/contrib/redirects/locale/mr/LC_MESSAGES/django.mo,sha256=KWFQR7X6niKMWIqY93sKtS6o41hsG4pEGLhXwC6MmDI,1530 +django/contrib/redirects/locale/mr/LC_MESSAGES/django.po,sha256=UZp4529Fm4US-Yi5eOlT6Ja7S_s1pc73LqNwEvaxXGw,1687 +django/contrib/redirects/locale/ms/LC_MESSAGES/django.mo,sha256=WUk6hvvHPWuylCGiDvy0MstWoQ1mdmwwfqlms1Nv4Ng,1094 +django/contrib/redirects/locale/ms/LC_MESSAGES/django.po,sha256=bsQDwxqtS5FgPCqTrfm9kw2hH_R2y44DnI5nluUgduc,1255 +django/contrib/redirects/locale/my/LC_MESSAGES/django.mo,sha256=H5-y9A3_1yIXJzC4sSuHqhURxhOlnYEL8Nvc0IF4zUE,549 +django/contrib/redirects/locale/my/LC_MESSAGES/django.po,sha256=MZGNt0jMQA6aHA6OmjvaC_ajvRWfUfDiKkV0j3_E480,1052 +django/contrib/redirects/locale/nb/LC_MESSAGES/django.mo,sha256=pxRtj5VFxTQBbi_mDS05iGoQs4BZ4y6LLJZ9pozJezY,1110 +django/contrib/redirects/locale/nb/LC_MESSAGES/django.po,sha256=ALYXciVa0d0sG70dqjtk17Yh_qwzKAzTXDlEZSU9kc0,1392 +django/contrib/redirects/locale/ne/LC_MESSAGES/django.mo,sha256=TxTnBGIi5k0PKAjADeCuOAJQV5dtzLrsFRXBXtfszWI,1420 +django/contrib/redirects/locale/ne/LC_MESSAGES/django.po,sha256=5b5R-6AlSIQrDyTtcmquoW5xrQRGZwlxZpBpZfVo5t4,1607 +django/contrib/redirects/locale/nl/LC_MESSAGES/django.mo,sha256=Xeh1YbEAu7Lhz07RXPTMDyv7AyWF9Bhe-9oHdWT74mo,1129 +django/contrib/redirects/locale/nl/LC_MESSAGES/django.po,sha256=QuNgrX7w2wO15KPEe3ogVhXbkt0v60EwKmKfD7-PedU,1476 +django/contrib/redirects/locale/nn/LC_MESSAGES/django.mo,sha256=8TQXBF2mzENl7lFpcrsKxkJ4nKySTOgXJM5_I2OD7q8,1143 +django/contrib/redirects/locale/nn/LC_MESSAGES/django.po,sha256=pfrKVQd1wLKKpq-b7CBpc-rZnEEgyZFDSjbipsEiwxM,1344 +django/contrib/redirects/locale/os/LC_MESSAGES/django.mo,sha256=joQ-ibV9_6ctGMNPLZQLCx5fUamRQngs6_LDd_s9sMQ,1150 +django/contrib/redirects/locale/os/LC_MESSAGES/django.po,sha256=ZwFWiuGS9comy7r2kMnKuqaPOvVehVdAAuFvXM5ldxM,1358 +django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo,sha256=MY-OIDNXlZth-ZRoOJ52nlUPg_51_F5k0NBIpc7GZEw,748 +django/contrib/redirects/locale/pa/LC_MESSAGES/django.po,sha256=TPDTK2ZvDyvO1ob8Qfr64QDbHVWAREfEeBO5w9jf63E,1199 +django/contrib/redirects/locale/pl/LC_MESSAGES/django.mo,sha256=9Sc_8aDC8-PADnr4hYdat6iRUXj0QxsWR1RGWKIQP3M,1285 +django/contrib/redirects/locale/pl/LC_MESSAGES/django.po,sha256=RLuSAlWQPvxDGSNHL3j5ohMdf4IZL-g21-_QIuTdY4c,1605 +django/contrib/redirects/locale/pt/LC_MESSAGES/django.mo,sha256=WocPaVk3fQEz_MLmGVtFBGwsThD-gNU7GDocqEbeaBA,1129 +django/contrib/redirects/locale/pt/LC_MESSAGES/django.po,sha256=ptCzoE41c9uFAbgSjb6VHSFYPEUv_51YyBdoThXN3XA,1350 +django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.mo,sha256=adnRlAeOrULZkdpZGhHbb4D5A-hzJxeYlkfcbarx7pE,1224 +django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po,sha256=DLTeZs_Xng3j8bveJizEIBLBjd4lJH_a-TzZxJgtu20,1703 +django/contrib/redirects/locale/ro/LC_MESSAGES/django.mo,sha256=D8FkmV6IxZOn5QAPBu9PwhStBpVQWudU62wKa7ADfJY,1158 +django/contrib/redirects/locale/ro/LC_MESSAGES/django.po,sha256=Z_-pDi2-A7_KXrEQtFlAJ_KLO0vXFKCbMphsNlqfNJk,1477 +django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo,sha256=IvO0IXq1xuX0wpo2hV8po1AMifLS3ElGyQal0vmC_Jw,1457 +django/contrib/redirects/locale/ru/LC_MESSAGES/django.po,sha256=FHb4L3RMVV5ajxGj9y6ZymPtO_XjZrhHmvCZBPwwzmQ,1762 +django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo,sha256=TTgi-SVyS9nbBCsI6NPbg-QA-GMc_-ciYewOUHDb1bM,1222 +django/contrib/redirects/locale/sk/LC_MESSAGES/django.po,sha256=yDuSGdVfHhsorxQNQ6S7ocyJfrI07pcLzyhkvXNCZXk,1506 +django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo,sha256=GAZtOFSUxsOHdXs3AzT40D-3JFWIlNDZU_Z-cMvdaHo,1173 +django/contrib/redirects/locale/sl/LC_MESSAGES/django.po,sha256=gkZTyxNh8L2gNxyLVzm-M1HTiK8KDvughTa2MK9NzWo,1351 +django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo,sha256=f2HyVjWFGnjNXV-EIk0YMFaMH6_ZwYLYgSDwU4fIJfM,1165 +django/contrib/redirects/locale/sq/LC_MESSAGES/django.po,sha256=gbd4JxoevGfDTRx3iYfDtlnh54EwyRKYXxs4XagHvRM,1453 +django/contrib/redirects/locale/sr/LC_MESSAGES/django.mo,sha256=OK90avxrpYxBcvPIZ_tDlSZP6PyRCzFg_7h0F_JlMy8,1367 +django/contrib/redirects/locale/sr/LC_MESSAGES/django.po,sha256=Ipi7j7q5N8aNGWmkz5XGlOPqpD46xCLKarfs-lNbKqM,1629 +django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=qYXT0j80c7a5jMsxeezncAL9Gff2Pb7eJz8iTX0TRX4,1210 +django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po,sha256=CL3ij3uGK8UOMggLXf0MctEydLbyi-9zvkXN5Teuu9c,1424 +django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo,sha256=2j_IyOgbM_yED5lF10r7KGguEC2qX58dRIVogWj5PVY,1134 +django/contrib/redirects/locale/sv/LC_MESSAGES/django.po,sha256=lIFNLfEondtzlwlG3tDf3AH59uEotLtj-XdL87c-QUo,1404 +django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo,sha256=qQjxB8Z6uKoNOa3wI6aDiAYLpWhx7z2yI7nEbXtMOXc,1165 +django/contrib/redirects/locale/sw/LC_MESSAGES/django.po,sha256=rAAmAwjvy69tVeB-QeccIS8CMA96XLeWdfRwDy3_QA0,1385 +django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo,sha256=AE6Py2_CV2gQKjKQAa_UgkLT9i61x3i1hegQpRGuZZM,1502 +django/contrib/redirects/locale/ta/LC_MESSAGES/django.po,sha256=ojdq8p4HnwtK0n6By2I6_xuucOpJIobJEGRMGc_TrS8,1700 +django/contrib/redirects/locale/te/LC_MESSAGES/django.mo,sha256=Gtcs4cbgrD7-bSkPKiPbM5DcjONS2fSdHhvWdbs_E1M,467 +django/contrib/redirects/locale/te/LC_MESSAGES/django.po,sha256=RT-t3TjcOLyNQQWljVrIcPWErKssh_HQMyGujloy-EI,939 +django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo,sha256=6e4Pk9vX1csvSz80spVLhNTd3N251JrXaCga9n60AP8,782 +django/contrib/redirects/locale/tg/LC_MESSAGES/django.po,sha256=2Cmle5usoNZBo8nTfAiqCRq3KqN1WKKdc-mogUOJm9I,1177 +django/contrib/redirects/locale/th/LC_MESSAGES/django.mo,sha256=1l6eO0k1KjcmuRJKUS4ZdtJGhAUmUDMAMIeNwEobQqY,1331 +django/contrib/redirects/locale/th/LC_MESSAGES/django.po,sha256=DVVqpGC6zL8Hy8e6P8ZkhKbvcMJmXV5euLxmfoTCtms,1513 +django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo,sha256=NkxO6C7s1HHT1Jrmwad9zaD3pPyW_sPuZz3F2AGUD7M,1155 +django/contrib/redirects/locale/tk/LC_MESSAGES/django.po,sha256=0EQj1I1oNbAovKmF7o2rQ8_QsQiYqEFDab2KlCFw0s0,1373 +django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo,sha256=-qySxKYwxfFO79cBytvzTBeFGdio1wJlM5DeBBfdxns,1133 +django/contrib/redirects/locale/tr/LC_MESSAGES/django.po,sha256=-03z3YMI6tlt12xwFI2lWchOxiIVbkdVRhghaCoMKlk,1408 +django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo,sha256=Hf1JXcCGNwedxy1nVRM_pQ0yUebC-tvOXr7P0h86JyI,1178 +django/contrib/redirects/locale/tt/LC_MESSAGES/django.po,sha256=2WCyBQtqZk-8GXgtu-x94JYSNrryy2QoMnirhiBrgV0,1376 +django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/redirects/locale/udm/LC_MESSAGES/django.po,sha256=xsxlm4itpyLlLdPQRIHLuvTYRvruhM3Ezc9jtp3XSm4,934 +django/contrib/redirects/locale/ug/LC_MESSAGES/django.mo,sha256=qV4UXMJUeNM2vw0LWn-YR9TDn1sQVvnEUcXh7_AX3Jo,1409 +django/contrib/redirects/locale/ug/LC_MESSAGES/django.po,sha256=dilTTU3q5BCYiUIgpjncD3ijPaQgp1l73poSrsZiUUc,1633 +django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo,sha256=QbN1ABfbr2YbZQXz2U4DI-6iTvWoKPrLAn5tGq57G5Y,1569 +django/contrib/redirects/locale/uk/LC_MESSAGES/django.po,sha256=pH9M4ilsJneoHw6E1E3T54QCHGS_i4tlhDc0nbAJP8I,1949 +django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo,sha256=CQkt-yxyAaTd_Aj1ZZC8s5-4fI2TRyTEZ-SYJZgpRrQ,1138 +django/contrib/redirects/locale/ur/LC_MESSAGES/django.po,sha256=CkhmN49PvYTccvlSRu8qGpcbx2C-1aY7K3Lq1VC2fuM,1330 +django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo,sha256=vD0Y920SSsRsLROKFaU6YM8CT5KjQxJcgMh5bZ4Pugo,743 +django/contrib/redirects/locale/uz/LC_MESSAGES/django.po,sha256=G2Rj-6g8Vse2Bp8L_hGIO84S--akagMXj8gSa7F2lK4,1195 +django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo,sha256=BquXycJKh-7-D9p-rGUNnjqzs1d6S1YhEJjFW8_ARFA,1106 +django/contrib/redirects/locale/vi/LC_MESSAGES/django.po,sha256=xsCASrGZNbQk4d1mhsTZBcCpPJ0KO6Jr4Zz1wfnL67s,1301 +django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=iftb_HccNV383_odHbB6Tikn2h7EtP_9QK-Plq2xwTY,1100 +django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po,sha256=xZmfuCEYx7ou_qvtxBcBly5mBmkSBEhnx0xqJj3nvMw,1490 +django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=Dj3gCstbzcxZyR6iL-U_ridpKcyDI8UIAohw8Rq82bM,1108 +django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po,sha256=UvNH_gQtAhWqN-d3qGOB3nuqrKqFhxjIGu09WsZ7_oQ,1413 +django/contrib/redirects/middleware.py,sha256=ydqidqi5JTaoguEFQBRzLEkU3HeiohgVsFglHUE-HIU,1921 +django/contrib/redirects/migrations/0001_initial.py,sha256=0mXB5TgK_fwYbmbB_e7tKSjgOvpHWnZXg0IFcVtnmfU,2101 +django/contrib/redirects/migrations/0002_alter_redirect_new_path_help_text.py,sha256=RXPdSbYewnW1bjjXxNqUIL-qIeSxdBUehBp0BjfRl8o,635 +django/contrib/redirects/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/redirects/migrations/__pycache__/0001_initial.cpython-310.pyc,, +django/contrib/redirects/migrations/__pycache__/0002_alter_redirect_new_path_help_text.cpython-310.pyc,, +django/contrib/redirects/migrations/__pycache__/__init__.cpython-310.pyc,, +django/contrib/redirects/models.py,sha256=KJ6mj0BS243BNPKp26K7OSqcT9j49FPth5m0gNWWxFM,1083 +django/contrib/sessions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sessions/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sessions/__pycache__/apps.cpython-310.pyc,, +django/contrib/sessions/__pycache__/base_session.cpython-310.pyc,, +django/contrib/sessions/__pycache__/exceptions.cpython-310.pyc,, +django/contrib/sessions/__pycache__/middleware.cpython-310.pyc,, +django/contrib/sessions/__pycache__/models.cpython-310.pyc,, +django/contrib/sessions/__pycache__/serializers.cpython-310.pyc,, +django/contrib/sessions/apps.py,sha256=5WIMqa3ymqEvYMnFHe3uWZB8XSijUF_NSgaorRD50Lg,194 +django/contrib/sessions/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sessions/backends/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sessions/backends/__pycache__/base.cpython-310.pyc,, +django/contrib/sessions/backends/__pycache__/cache.cpython-310.pyc,, +django/contrib/sessions/backends/__pycache__/cached_db.cpython-310.pyc,, +django/contrib/sessions/backends/__pycache__/db.cpython-310.pyc,, +django/contrib/sessions/backends/__pycache__/file.cpython-310.pyc,, +django/contrib/sessions/backends/__pycache__/signed_cookies.cpython-310.pyc,, +django/contrib/sessions/backends/base.py,sha256=uw4jDJHvBQLI1XJCru-_fYZ2Pzfz1U-iiN8sJxNNaVs,16958 +django/contrib/sessions/backends/cache.py,sha256=m9WMB8we8T1j0k9rHP9_7nBuGzDVap3rGMjoM7N5Xe4,4674 +django/contrib/sessions/backends/cached_db.py,sha256=m348hgYLr-rl760T-Yxm2FJmQ6vbI-nZ2vi5QhIybCI,4148 +django/contrib/sessions/backends/db.py,sha256=qoFg94ju0_KtsPUgFCiKAvxbMOXc1YdGAfjktn00nyA,6907 +django/contrib/sessions/backends/file.py,sha256=FtK6zcbQGwLxtINvqTRHNovLHTDuyk61Y7zwNndSUyg,8200 +django/contrib/sessions/backends/signed_cookies.py,sha256=Al_HQ7OnDs77U9AgTcjN5VUVst5dTP-ZUbhuj6Bgsk0,3218 +django/contrib/sessions/base_session.py,sha256=euTO04sxDEk0lovU38a2TLYXJBA-g6nze9asqK2PoNU,1491 +django/contrib/sessions/exceptions.py,sha256=KhkhXiFwfUflSP_t6wCLOEXz1YjBRTKVNbrLmGhOTLo,359 +django/contrib/sessions/locale/af/LC_MESSAGES/django.mo,sha256=0DS0pgVrMN-bUimDfesgHs8Lgr0loz2c6nJdz58RxyQ,717 +django/contrib/sessions/locale/af/LC_MESSAGES/django.po,sha256=ZJRLBshQCAiTTAUycdB3MZIadLeHR5LxbSlDvSWLnEo,838 +django/contrib/sessions/locale/ar/LC_MESSAGES/django.mo,sha256=yoepqaR68PTGLx--cAOzP94Sqyl5xIYpeQ0IFWgY380,846 +django/contrib/sessions/locale/ar/LC_MESSAGES/django.po,sha256=ZgwtBYIdtnqp_8nKHXF1NVJFzQU81-3yv9b7STrQHMc,995 +django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=_iSasR22CxvNWfei6aE_24woPhhhvNzQl5FUO_649dc,817 +django/contrib/sessions/locale/ar_DZ/LC_MESSAGES/django.po,sha256=vop5scstamgFSnO_FWXCEnI7R1N26t7jy_mZUAfETcY,978 +django/contrib/sessions/locale/ast/LC_MESSAGES/django.mo,sha256=hz2m-PkrHby2CKfIOARj6kCzisT-Vs0syfDSTx_iVVw,702 +django/contrib/sessions/locale/ast/LC_MESSAGES/django.po,sha256=M90j1Nx6oDJ16hguUkfKYlyb5OymUeZ5xzPixWxSC7I,846 +django/contrib/sessions/locale/az/LC_MESSAGES/django.mo,sha256=_4XcYdtRasbCjRoaWGoULsXX2cEa--KdRdqbnGoaRuM,731 +django/contrib/sessions/locale/az/LC_MESSAGES/django.po,sha256=qYd7vz6A-hHQNwewzI6wEsxRVLdoc2xLGm1RPW0Hxc4,891 +django/contrib/sessions/locale/be/LC_MESSAGES/django.mo,sha256=FHZ72QuOd-vAOjOXisLs4CaEk7uZuzjO_EfUSB6754M,854 +django/contrib/sessions/locale/be/LC_MESSAGES/django.po,sha256=tHsYVn3XNTcukB0SrHUWP1iV763rrQHCimOyJHRPiek,1023 +django/contrib/sessions/locale/bg/LC_MESSAGES/django.mo,sha256=fFZ8EgRlJ1Z-IP8gPtsUXAnqVHbqQRZpYv6PLWNlNVA,759 +django/contrib/sessions/locale/bg/LC_MESSAGES/django.po,sha256=tXcaDPNmFIv0RU-7sGscRkLCbKEgTBowzVj3AYymarY,997 +django/contrib/sessions/locale/bn/LC_MESSAGES/django.mo,sha256=0BdFN7ou9tmoVG00fCA-frb1Tri3iKz43W7SWal398s,762 +django/contrib/sessions/locale/bn/LC_MESSAGES/django.po,sha256=LycmTel6LXV2HGGN6qzlAfID-cVEQCNnW1Nv_hbWXJk,909 +django/contrib/sessions/locale/br/LC_MESSAGES/django.mo,sha256=6ubPQUyXX08KUssyVZBMMkTlD94mlA6wzsteAMiZ8C8,1027 +django/contrib/sessions/locale/br/LC_MESSAGES/django.po,sha256=LKxGGHOQejKpUp18rCU2FXW8D_H3WuP_P6dPlEluwcE,1201 +django/contrib/sessions/locale/bs/LC_MESSAGES/django.mo,sha256=M7TvlJMrSUAFhp7oUSpUKejnbTuIK-19yiGBBECl9Sc,759 +django/contrib/sessions/locale/bs/LC_MESSAGES/django.po,sha256=Ur0AeRjXUsLgDJhcGiw75hRk4Qe98DzPBOocD7GFDRQ,909 +django/contrib/sessions/locale/ca/LC_MESSAGES/django.mo,sha256=tbaZ48PaihGGD9-2oTKiMFY3kbXjU59nNciCRINOBNk,738 +django/contrib/sessions/locale/ca/LC_MESSAGES/django.po,sha256=tJuJdehKuD9aXOauWOkE5idQhsVsLbeg1Usmc6N_SP0,906 +django/contrib/sessions/locale/ckb/LC_MESSAGES/django.mo,sha256=qTCUlxmStU9w1nXRAc_gRodaN6ojJK_XAxDXoYC5vQI,741 +django/contrib/sessions/locale/ckb/LC_MESSAGES/django.po,sha256=F2bHLL66fWF5_VTM5QvNUFakY7gPRDr1qCjW6AkYxec,905 +django/contrib/sessions/locale/cs/LC_MESSAGES/django.mo,sha256=wEFP4NNaRQDbcbw96UC906jN4rOrlPJMn60VloXr944,759 +django/contrib/sessions/locale/cs/LC_MESSAGES/django.po,sha256=7XkKESwfOmbDRDbUYr1f62-fDOuyI-aCqLGaEiDrmX8,962 +django/contrib/sessions/locale/cy/LC_MESSAGES/django.mo,sha256=GeWVeV2PvgLQV8ecVUA2g3-VvdzMsedgIDUSpn8DByk,774 +django/contrib/sessions/locale/cy/LC_MESSAGES/django.po,sha256=zo18MXtkEdO1L0Q6ewFurx3lsEWTCdh0JpQJTmvw5bY,952 +django/contrib/sessions/locale/da/LC_MESSAGES/django.mo,sha256=7_YecCzfeYQp9zVYt2B7MtjhAAuVb0BcK2D5Qv_uAbg,681 +django/contrib/sessions/locale/da/LC_MESSAGES/django.po,sha256=qX_Oo7niVo57bazlIYFA6bnVmPBclUUTWvZFYNLaG04,880 +django/contrib/sessions/locale/de/LC_MESSAGES/django.mo,sha256=N3kTal0YK9z7Te3zYGLbJmoSB6oWaviWDLGdPlsPa9g,721 +django/contrib/sessions/locale/de/LC_MESSAGES/django.po,sha256=0qnfDeCUQN2buKn6R0MvwhQP05XWxSu-xgvfxvnJe3k,844 +django/contrib/sessions/locale/dsb/LC_MESSAGES/django.mo,sha256=RABl3WZmY6gLh4IqmTUhoBEXygDzjp_5lLF1MU9U5fA,810 +django/contrib/sessions/locale/dsb/LC_MESSAGES/django.po,sha256=cItKs5tASYHzDxfTg0A_dgBQounpzoGyOEFn18E_W_g,934 +django/contrib/sessions/locale/el/LC_MESSAGES/django.mo,sha256=QbTbmcfgc8_4r5hFrIghDhk2XQ4f8_emKmqupMG2ah0,809 +django/contrib/sessions/locale/el/LC_MESSAGES/django.po,sha256=HeaEbpVmFhhrZt2NsZteYaYoeo8FYKZF0IoNJwtzZkc,971 +django/contrib/sessions/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/sessions/locale/en/LC_MESSAGES/django.po,sha256=afaM-IIUZtcRZduojUTS8tT0w7C4Ya9lXgReOvq_iF0,804 +django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.mo,sha256=FgY1K6IVyQjMjXqVZxcsyWW_Tu5ckfrbmIfNYq5P-_E,693 +django/contrib/sessions/locale/en_AU/LC_MESSAGES/django.po,sha256=cMV15gJq8jNSUzkhn7uyOf2JYMFx7BNH1oFYa1vISnc,853 +django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.mo,sha256=T5NQCTYkpERfP9yKbUvixT0VdBt1zGmGB8ITlkVc420,707 +django/contrib/sessions/locale/en_GB/LC_MESSAGES/django.po,sha256=1ks_VE1qpEfPcyKg0HybkTG0-DTttTHTfUPhQCR53sw,849 +django/contrib/sessions/locale/eo/LC_MESSAGES/django.mo,sha256=eBvYQbZS_WxVV3QCSZAOyHNIljC2ZXxVc4mktUuXVjI,727 +django/contrib/sessions/locale/eo/LC_MESSAGES/django.po,sha256=Ru9xicyTgHWVHh26hO2nQNFRQmwBnYKEagsS8TZRv3E,917 +django/contrib/sessions/locale/es/LC_MESSAGES/django.mo,sha256=jbHSvHjO2OCLlBD66LefocKOEbefWbPhj-l3NugiWuc,734 +django/contrib/sessions/locale/es/LC_MESSAGES/django.po,sha256=fY5WXeONEXHeuBlH0LkvzdZ2CSgbvLZ8BJc429aIbhI,909 +django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.mo,sha256=_8icF2dMUWj4WW967rc5npgndXBAdJrIiz_VKf5D-Rw,694 +django/contrib/sessions/locale/es_AR/LC_MESSAGES/django.po,sha256=AnmvjeOA7EBTJ6wMOkCl8JRLVYRU8KS0egPijcKutns,879 +django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.mo,sha256=UP7ia0gV9W-l0Qq5AS4ZPadJtml8iuzzlS5C9guMgh8,754 +django/contrib/sessions/locale/es_CO/LC_MESSAGES/django.po,sha256=_XeiiRWvDaGjofamsRHr5up_EQvcw0w-GLLeWK27Af8,878 +django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.mo,sha256=MDM0K3xMvyf8ymvAurHYuacpxfG_YfJFyNnp1uuc6yY,756 +django/contrib/sessions/locale/es_MX/LC_MESSAGES/django.po,sha256=Y7VNa16F_yyK7_XJvF36rR2XNW8aBJK4UDweufyXpxE,892 +django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486 +django/contrib/sessions/locale/es_VE/LC_MESSAGES/django.po,sha256=zWjgB0AmsmhX2tjk1PgldttqY56Czz8epOVCaYWXTLU,761 +django/contrib/sessions/locale/et/LC_MESSAGES/django.mo,sha256=aL1jZWourEC7jtjsuBZHD-Gw9lpL6L1SoqjTtzguxD0,737 +django/contrib/sessions/locale/et/LC_MESSAGES/django.po,sha256=VNBYohAOs59jYWkjVMY-v2zwVy5AKrtBbFRJZLwdCFg,899 +django/contrib/sessions/locale/eu/LC_MESSAGES/django.mo,sha256=M9piOB_t-ZnfN6pX-jeY0yWh2S_5cCuo1oGiy7X65A4,728 +django/contrib/sessions/locale/eu/LC_MESSAGES/django.po,sha256=bHdSoknoH0_dy26e93tWVdO4TT7rnCPXlSLPsYAhwyw,893 +django/contrib/sessions/locale/fa/LC_MESSAGES/django.mo,sha256=6DdJcqaYuBnhpFFHR42w-RqML0eQPFMAUEEDY0Redy8,755 +django/contrib/sessions/locale/fa/LC_MESSAGES/django.po,sha256=rklhNf0UFl2bM6mt7x9lWvfzPH4XWGbrW9Gc2w-9rzg,922 +django/contrib/sessions/locale/fi/LC_MESSAGES/django.mo,sha256=oAugvlTEvJmG8KsZw09WcfnifYY5oHnGo4lxcxqKeaY,721 +django/contrib/sessions/locale/fi/LC_MESSAGES/django.po,sha256=BVVrjbZZtLGAuZ9HK63p769CbjZFZMlS4BewSMfNMKU,889 +django/contrib/sessions/locale/fr/LC_MESSAGES/django.mo,sha256=aDGYdzx2eInF6IZ-UzPDEJkuYVPnvwVND3qVuSfJNWw,692 +django/contrib/sessions/locale/fr/LC_MESSAGES/django.po,sha256=hARxGdtBOzEZ_iVyzkNvcKlgyM8fOkdXTH3upj2XFYM,893 +django/contrib/sessions/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/sessions/locale/fy/LC_MESSAGES/django.po,sha256=U-VEY4WbmIkmrnPK4Mv-B-pbdtDzusBCVmE8iHyvzFU,751 +django/contrib/sessions/locale/ga/LC_MESSAGES/django.mo,sha256=zTrydRCRDiUQwF4tQ3cN1-5w36i6KptagsdA5_SaGy0,747 +django/contrib/sessions/locale/ga/LC_MESSAGES/django.po,sha256=Qpk1JaUWiHSEPdgBk-O_KfvGzwlZ4IAA6c6-nsJe400,958 +django/contrib/sessions/locale/gd/LC_MESSAGES/django.mo,sha256=Yi8blY_fUD5YTlnUD6YXZvv1qjm4QDriO6CJIUe1wIk,791 +django/contrib/sessions/locale/gd/LC_MESSAGES/django.po,sha256=fEa40AUqA5vh743Zqv0FO2WxSFXGYk4IzUR4BoaP-C4,890 +django/contrib/sessions/locale/gl/LC_MESSAGES/django.mo,sha256=lC8uu-mKxt48DLzRvaxz-mOqR0ZfvEuaBI1Hi_nuMpo,692 +django/contrib/sessions/locale/gl/LC_MESSAGES/django.po,sha256=L34leIfwmRJoqX0jfefbNHz0CmON5cSaRXeh7pmFqCY,943 +django/contrib/sessions/locale/he/LC_MESSAGES/django.mo,sha256=qhgjSWfGAOgl-i7iwzSrJttx88xcj1pB0iLkEK64mJU,809 +django/contrib/sessions/locale/he/LC_MESSAGES/django.po,sha256=KvQG6wOpokM-2JkhWnB2UUQacy5Ie1402K_pH2zUOu0,1066 +django/contrib/sessions/locale/hi/LC_MESSAGES/django.mo,sha256=naqxOjfAnNKy3qqnUG-4LGf9arLRJpjyWWmSj5tEfao,759 +django/contrib/sessions/locale/hi/LC_MESSAGES/django.po,sha256=WnTGvOz9YINMcUJg2BYCaHceZLKaTfsba_0AZtRNP38,951 +django/contrib/sessions/locale/hr/LC_MESSAGES/django.mo,sha256=axyJAmXmadpFxIhu8rroVD8NsGGadQemh9-_ZDo7L1U,819 +django/contrib/sessions/locale/hr/LC_MESSAGES/django.po,sha256=3G-qOYXBO-eMWWsa5LwTCW9M1oF0hlWgEz7hAK8hJqI,998 +django/contrib/sessions/locale/hsb/LC_MESSAGES/django.mo,sha256=_OXpOlCt4KU0i65Iw4LMjSsyn__E9wH20l9vDNBSEzw,805 +django/contrib/sessions/locale/hsb/LC_MESSAGES/django.po,sha256=yv3vX_UCDrdl07GQ79Mnytwgz2oTvySYOG9enzMpFJA,929 +django/contrib/sessions/locale/hu/LC_MESSAGES/django.mo,sha256=ik40LnsWkKYEUioJB9e11EX9XZ-qWMa-S7haxGhM-iI,727 +django/contrib/sessions/locale/hu/LC_MESSAGES/django.po,sha256=1-UWEEsFxRwmshP2x4pJbitWIGZ1YMeDDxnAX-XGNxc,884 +django/contrib/sessions/locale/hy/LC_MESSAGES/django.mo,sha256=x6VQWGdidRJFUJme-6jf1pcitktcQHQ7fhmw2UBej1Q,815 +django/contrib/sessions/locale/hy/LC_MESSAGES/django.po,sha256=eRMa3_A2Vx195mx2lvza1v-wcEcEeMrU63f0bgPPFjc,893 +django/contrib/sessions/locale/ia/LC_MESSAGES/django.mo,sha256=-o4aQPNJeqSDRSLqcKuYvJuKNBbFqDJDe3IzHgSgZeQ,744 +django/contrib/sessions/locale/ia/LC_MESSAGES/django.po,sha256=PULLDd3QOIU03kgradgQzT6IicoPhLPlUvFgRl-tGbA,869 +django/contrib/sessions/locale/id/LC_MESSAGES/django.mo,sha256=mOaIF0NGOO0-dt-nhHL-i3cfvt9-JKTbyUkFWPqDS9Y,705 +django/contrib/sessions/locale/id/LC_MESSAGES/django.po,sha256=EA6AJno3CaFOO-dEU9VQ_GEI-RAXS0v0uFqn1RJGjEs,914 +django/contrib/sessions/locale/io/LC_MESSAGES/django.mo,sha256=_rqAY6reegqmxmWc-pW8_kDaG9zflZuD-PGOVFsjRHo,683 +django/contrib/sessions/locale/io/LC_MESSAGES/django.po,sha256=tbKMxGuB6mh_m0ex9rO9KkTy6qyuRW2ERrQsGwmPiaw,840 +django/contrib/sessions/locale/is/LC_MESSAGES/django.mo,sha256=3QeMl-MCnBie9Sc_aQ1I7BrBhkbuArpoSJP95UEs4lg,706 +django/contrib/sessions/locale/is/LC_MESSAGES/django.po,sha256=LADIFJv8L5vgDJxiQUmKPSN64zzzrIKImh8wpLBEVWQ,853 +django/contrib/sessions/locale/it/LC_MESSAGES/django.mo,sha256=qTY3O-0FbbpZ5-BR5xOJWP0rlnIkBZf-oSawW_YJWlk,726 +django/contrib/sessions/locale/it/LC_MESSAGES/django.po,sha256=hEv0iTGLuUvEBk-lF-w7a9P3ifC0-eiodNtuSc7cXhg,869 +django/contrib/sessions/locale/ja/LC_MESSAGES/django.mo,sha256=hbv9FzWzXRIGRh_Kf_FLQB34xfmPU_9RQKn9u1kJqGU,757 +django/contrib/sessions/locale/ja/LC_MESSAGES/django.po,sha256=ppGx5ekOWGgDF3vzyrWsqnFUZ-sVZZhiOhvAzl_8v54,920 +django/contrib/sessions/locale/ka/LC_MESSAGES/django.mo,sha256=VZ-ysrDbea_-tMV-1xtlTeW62IAy2RWR94V3Y1iSh4U,803 +django/contrib/sessions/locale/ka/LC_MESSAGES/django.po,sha256=hqiWUiATlrc7qISF7ndlelIrFwc61kzhKje9l-DY6V4,955 +django/contrib/sessions/locale/kab/LC_MESSAGES/django.mo,sha256=W_yE0NDPJrVznA2Qb89VuprJNwyxSg59ovvjkQe6mAs,743 +django/contrib/sessions/locale/kab/LC_MESSAGES/django.po,sha256=FJeEuv4P3NT_PpWHEUsQVSWXu65nYkJ6Z2AlbSKb0ZA,821 +django/contrib/sessions/locale/kk/LC_MESSAGES/django.mo,sha256=FROGz_MuIhsIU5_-EYV38cHnRZrc3-OxxkBeK0ax9Rk,810 +django/contrib/sessions/locale/kk/LC_MESSAGES/django.po,sha256=P-oHO3Oi3V_RjWHjEAHdTrDfTwKP2xh3yJh7BlXL1VQ,1029 +django/contrib/sessions/locale/km/LC_MESSAGES/django.mo,sha256=VOuKsIG2DEeCA5JdheuMIeJlpmAhKrI6lD4KWYqIIPk,929 +django/contrib/sessions/locale/km/LC_MESSAGES/django.po,sha256=09i6Nd_rUK7UqFpJ70LMXTR6xS0NuGETRLe0CopMVBk,1073 +django/contrib/sessions/locale/kn/LC_MESSAGES/django.mo,sha256=TMZ71RqNR6zI20BeozyLa9cjYrWlvfIajGDfpnHd3pQ,810 +django/contrib/sessions/locale/kn/LC_MESSAGES/django.po,sha256=whdM8P74jkAAHvjgJN8Q77dYd9sIsf_135ID8KBu-a8,990 +django/contrib/sessions/locale/ko/LC_MESSAGES/django.mo,sha256=MAgc0EkV0IrWjC6bSvKiyRlGXtgjhZF-ltTuyAFNDUk,653 +django/contrib/sessions/locale/ko/LC_MESSAGES/django.po,sha256=Fn9KkX9fEOKu2WjUYsP_xHEBbdoDeFHSoE096ctnFFc,874 +django/contrib/sessions/locale/ky/LC_MESSAGES/django.mo,sha256=ME7YUgKOYQz9FF_IdrqHImieEONDrkcn4T3HxTZKSV0,742 +django/contrib/sessions/locale/ky/LC_MESSAGES/django.po,sha256=JZHTs9wYmlWzilRMyp-jZWFSzGxWtPiQefPmLL9yhtM,915 +django/contrib/sessions/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/sessions/locale/lb/LC_MESSAGES/django.po,sha256=3igeAnQjDg6D7ItBkQQhyBoFJOZlBxT7NoZiExwD-Fo,749 +django/contrib/sessions/locale/lt/LC_MESSAGES/django.mo,sha256=L9w8-qxlDlCqR_2P0PZegfhok_I61n0mJ1koJxzufy4,786 +django/contrib/sessions/locale/lt/LC_MESSAGES/django.po,sha256=dEefLGtg5flFr_v4vHS5HhK1kxx9WYWTw98cvEn132M,1023 +django/contrib/sessions/locale/lv/LC_MESSAGES/django.mo,sha256=exEzDUNwNS0GLsUkKPu_SfqBxU7T6VRA_T2schIQZ88,753 +django/contrib/sessions/locale/lv/LC_MESSAGES/django.po,sha256=fBgQEbsGg1ECVm1PFDrS2sfKs2eqmsqrSYzx9ELotNQ,909 +django/contrib/sessions/locale/mk/LC_MESSAGES/django.mo,sha256=4oTWp8-qzUQBiqG32hNieABgT3O17q2C4iEhcFtAxLA,816 +django/contrib/sessions/locale/mk/LC_MESSAGES/django.po,sha256=afApb5YRhPXUWR8yF_TTym73u0ov7lWiwRda1-uNiLY,988 +django/contrib/sessions/locale/ml/LC_MESSAGES/django.mo,sha256=tff5TsHILSV1kAAB3bzHQZDB9fgMglZJTofzCunGBzc,854 +django/contrib/sessions/locale/ml/LC_MESSAGES/django.po,sha256=eRkeupt42kUey_9vJmlH8USshnXPZ8M7aYHq88u-5iY,1016 +django/contrib/sessions/locale/mn/LC_MESSAGES/django.mo,sha256=CcCH2ggVYrD29Q11ZMthcscBno2ePkQDbZfoYquTRPM,784 +django/contrib/sessions/locale/mn/LC_MESSAGES/django.po,sha256=nvcjbJzXiDvWFXrM5CxgOQIq8XucsZEUVdYkY8LnCRE,992 +django/contrib/sessions/locale/mr/LC_MESSAGES/django.mo,sha256=rFOGgJ9q9AUlEV_XT-Sycs9eaDtD9so7ZNBTkI-E-Ew,768 +django/contrib/sessions/locale/mr/LC_MESSAGES/django.po,sha256=ZMojWauBzqXR7YSTJ5eAVAX4Xqbv6WEoYOpNL4GQaqU,907 +django/contrib/sessions/locale/ms/LC_MESSAGES/django.mo,sha256=rFi4D_ZURYUPjs5AqJ66bW70yL7AekAKWnrZRBvGPiE,649 +django/contrib/sessions/locale/ms/LC_MESSAGES/django.po,sha256=nZuJ_D0JZUzmGensLa7tSgzbBo05qgQcuHmte2oU6WQ,786 +django/contrib/sessions/locale/my/LC_MESSAGES/django.mo,sha256=8zzzyfJYok969YuAwDUaa6YhxaSi3wcXy3HRNXDb_70,872 +django/contrib/sessions/locale/my/LC_MESSAGES/django.po,sha256=mfs0zRBI0tugyyEfXBZzZ_FMIohydq6EYPZGra678pw,997 +django/contrib/sessions/locale/nb/LC_MESSAGES/django.mo,sha256=hfJ1NCFgcAAtUvNEpaZ9b31PyidHxDGicifUWANIbM8,717 +django/contrib/sessions/locale/nb/LC_MESSAGES/django.po,sha256=yXr6oYuiu01oELdQKuztQFWz8x5C2zS5OzEfU9MHJsU,908 +django/contrib/sessions/locale/ne/LC_MESSAGES/django.mo,sha256=slFgMrqGVtLRHdGorLGPpB09SM92_WnbnRR0rlpNlPQ,802 +django/contrib/sessions/locale/ne/LC_MESSAGES/django.po,sha256=1vyoiGnnaB8f9SFz8PGfzpw6V_NoL78DQwjjnB6fS98,978 +django/contrib/sessions/locale/nl/LC_MESSAGES/django.mo,sha256=84BTlTyxa409moKbQMFyJisI65w22p09qjJHBAmQe-g,692 +django/contrib/sessions/locale/nl/LC_MESSAGES/django.po,sha256=smRr-QPGm6h6hdXxghggWES8b2NnL7yDQ07coUypa8g,909 +django/contrib/sessions/locale/nn/LC_MESSAGES/django.mo,sha256=cytH72J3yS1PURcgyrD8R2PV5d3SbPE73IAqOMBPPVg,667 +django/contrib/sessions/locale/nn/LC_MESSAGES/django.po,sha256=y9l60yy_W3qjxWzxgJg5VgEH9KAIHIQb5hv7mgnep9w,851 +django/contrib/sessions/locale/os/LC_MESSAGES/django.mo,sha256=xVux1Ag45Jo9HQBbkrRzcWrNjqP09nMQl16jIh0YVlo,732 +django/contrib/sessions/locale/os/LC_MESSAGES/django.po,sha256=1hG5Vsz2a2yW05_Z9cTNrBKtK9VRPZuQdx4KJ_0n98o,892 +django/contrib/sessions/locale/pa/LC_MESSAGES/django.mo,sha256=qEx4r_ONwXK1-qYD5uxxXEQPqK5I6rf38QZoUSm7UVA,771 +django/contrib/sessions/locale/pa/LC_MESSAGES/django.po,sha256=M7fmVGP8DtZGEuTV3iJhuWWqILVUTDZvUey_mrP4_fM,918 +django/contrib/sessions/locale/pl/LC_MESSAGES/django.mo,sha256=F9CQb7gQ1ltP6B82JNKu8IAsTdHK5TNke0rtDIgNz3c,828 +django/contrib/sessions/locale/pl/LC_MESSAGES/django.po,sha256=C_MJBB-vwTZbx-t4-mzun-RxHhdOVv04b6xrWdnTv8E,1084 +django/contrib/sessions/locale/pt/LC_MESSAGES/django.mo,sha256=dlJF7hF4GjLmQPdAJhtf-FCKX26XsOmZlChOcxxIqPk,738 +django/contrib/sessions/locale/pt/LC_MESSAGES/django.po,sha256=cOycrw3HCHjSYBadpalyrg5LdRTlqZCTyMh93GOQ8O0,896 +django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.mo,sha256=XHNF5D8oXIia3e3LYwxd46a2JOgDc_ykvc8yuo21fT0,757 +django/contrib/sessions/locale/pt_BR/LC_MESSAGES/django.po,sha256=K_zxKaUKngWPFpvHgXOcymJEsiONSw-OrVrroRXmUUk,924 +django/contrib/sessions/locale/ro/LC_MESSAGES/django.mo,sha256=WR9I9Gum_pq7Qg2Gzhf-zAv43OwR_uDtsbhtx4Ta5gE,776 +django/contrib/sessions/locale/ro/LC_MESSAGES/django.po,sha256=fEgVxL_0Llnjspu9EsXBf8AVL0DGdfF7NgV88G7WN1E,987 +django/contrib/sessions/locale/ru/LC_MESSAGES/django.mo,sha256=n-8vXR5spEbdfyeWOYWC_6kBbAppNoRrWYgqKFY6gJA,913 +django/contrib/sessions/locale/ru/LC_MESSAGES/django.po,sha256=sNqNGdoof6eXzFlh4YIp1O54MdDOAFDjD3GvAFsNP8k,1101 +django/contrib/sessions/locale/sk/LC_MESSAGES/django.mo,sha256=Yntm624Wt410RwuNPU1c-WwQoyrRrBs69VlKMlNUHeQ,766 +django/contrib/sessions/locale/sk/LC_MESSAGES/django.po,sha256=wt7BJk6RpFogJ2Wwa9Mh0mJi9YMpNYKTUSDuDuv1Ong,975 +django/contrib/sessions/locale/sl/LC_MESSAGES/django.mo,sha256=EE6mB8BiYRyAxK6qzurRWcaYVs96FO_4rERYQdtIt3k,770 +django/contrib/sessions/locale/sl/LC_MESSAGES/django.po,sha256=KTjBWyvaNCHbpV9K6vbnavwxxXqf2DlIqVPv7MVFcO8,928 +django/contrib/sessions/locale/sq/LC_MESSAGES/django.mo,sha256=eRaTy3WOC76EYLtMSD4xtJj2h8eE4W-TS4VvCVxI5bw,683 +django/contrib/sessions/locale/sq/LC_MESSAGES/django.po,sha256=9pzp7834LQKafe5fJzC4OKsAd6XfgtEQl6K6hVLaBQM,844 +django/contrib/sessions/locale/sr/LC_MESSAGES/django.mo,sha256=ZDBOYmWIoSyDeT0nYIIFeMtW5jwpr257CbdTZlkVeRQ,855 +django/contrib/sessions/locale/sr/LC_MESSAGES/django.po,sha256=OXQOYeac0ghuzLrwaErJGr1FczuORTu2yroFX5hvRnk,1027 +django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=f3x9f9hTOsJltghjzJMdd8ueDwzxJex6zTXsU-_Hf_Y,757 +django/contrib/sessions/locale/sr_Latn/LC_MESSAGES/django.po,sha256=HKjo7hjSAvgrIvlI0SkgF3zxz8TtKWyBT51UGNhDwek,946 +django/contrib/sessions/locale/sv/LC_MESSAGES/django.mo,sha256=SGbr0K_5iAMA22MfseAldMDgLSEBrI56pCtyV8tMAPc,707 +django/contrib/sessions/locale/sv/LC_MESSAGES/django.po,sha256=vraY3915wBYGeYu9Ro0-TlBeLWqGZP1fbckLv8y47Ys,853 +django/contrib/sessions/locale/sw/LC_MESSAGES/django.mo,sha256=Edhqp8yuBnrGtJqPO7jxobeXN4uU5wKSLrOsFO1F23k,743 +django/contrib/sessions/locale/sw/LC_MESSAGES/django.po,sha256=iY4rN4T-AA2FBQA7DiWWFvrclqKiDYQefqwwVw61-f8,858 +django/contrib/sessions/locale/ta/LC_MESSAGES/django.mo,sha256=qLIThhFQbJKc1_UVr7wVIm1rJfK2rO5m84BCB_oKq7s,801 +django/contrib/sessions/locale/ta/LC_MESSAGES/django.po,sha256=bYqtYf9XgP9IKKFJXh0u64JhRhDvPPUliI1J-NeRpKE,945 +django/contrib/sessions/locale/te/LC_MESSAGES/django.mo,sha256=kteZeivEckt4AmAeKgmgouMQo1qqSQrI8M42B16gMnQ,786 +django/contrib/sessions/locale/te/LC_MESSAGES/django.po,sha256=dQgiNS52RHrL6bV9CEO7Jk9lk3YUQrUBDCg_bP2OSZc,980 +django/contrib/sessions/locale/tg/LC_MESSAGES/django.mo,sha256=N6AiKfV47QTlO5Z_r4SQZXVLtouu-NVSwWkePgD17Tc,747 +django/contrib/sessions/locale/tg/LC_MESSAGES/django.po,sha256=wvvDNu060yqlTxy3swM0x3v6QpvCB9DkfNm0Q-kb9Xk,910 +django/contrib/sessions/locale/th/LC_MESSAGES/django.mo,sha256=D41vbkoYMdYPj3587p-c5yytLVi9pE5xvRZEYhZrxPs,814 +django/contrib/sessions/locale/th/LC_MESSAGES/django.po,sha256=43704TUv4ysKhL8T5MowZwlyv1JZrPyVGrpdIyb3r40,988 +django/contrib/sessions/locale/tk/LC_MESSAGES/django.mo,sha256=pT_hpKCwFT60GUXzD_4z8JOhmh1HRnkZj-QSouVEgUA,699 +django/contrib/sessions/locale/tk/LC_MESSAGES/django.po,sha256=trqXxfyIbh4V4szol0pXETmEWRxAAKywPZ9EzVMVE-I,865 +django/contrib/sessions/locale/tr/LC_MESSAGES/django.mo,sha256=STDnYOeO1d9nSCVf7pSkMq8R7z1aeqq-xAuIYjsofuE,685 +django/contrib/sessions/locale/tr/LC_MESSAGES/django.po,sha256=XYKo0_P5xitYehvjMzEw2MTp_Nza-cIXEECV3dA6BmY,863 +django/contrib/sessions/locale/tt/LC_MESSAGES/django.mo,sha256=Q-FGu_ljTsxXO_EWu7zCzGwoqFXkeoTzWSlvx85VLGc,806 +django/contrib/sessions/locale/tt/LC_MESSAGES/django.po,sha256=UC85dFs_1836noZTuZEzPqAjQMFfSvj7oGmEWOGcfCA,962 +django/contrib/sessions/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/sessions/locale/udm/LC_MESSAGES/django.po,sha256=CPml2Fn9Ax_qO5brCFDLPBoTiNdvsvJb1btQ0COwUfY,737 +django/contrib/sessions/locale/ug/LC_MESSAGES/django.mo,sha256=HMwjTByc3HrhFvCt_iOioYZE7JEKLzNlb2DTu6TCgto,748 +django/contrib/sessions/locale/ug/LC_MESSAGES/django.po,sha256=QEdIUuvVMFbOPSCYs6k-61rBwmTUXFCcR1pKn53dXtQ,864 +django/contrib/sessions/locale/uk/LC_MESSAGES/django.mo,sha256=jzNrLuFghQMCHNRQ0ihnKMCicgear0yWiTOLnvdPszw,841 +django/contrib/sessions/locale/uk/LC_MESSAGES/django.po,sha256=4K2geuGjRpJCtNfGPMhYWZlGxUy5xzIoDKA2jL2iGos,1171 +django/contrib/sessions/locale/ur/LC_MESSAGES/django.mo,sha256=FkGIiHegr8HR8zjVyJ9TTW1T9WYtAL5Mg77nRKnKqWk,729 +django/contrib/sessions/locale/ur/LC_MESSAGES/django.po,sha256=qR4QEBTP6CH09XFCzsPSPg2Dv0LqzbRV_I67HO2OUwk,879 +django/contrib/sessions/locale/uz/LC_MESSAGES/django.mo,sha256=asPu0RhMB_Ui1li-OTVL4qIXnM9XpjsYyx5yJldDYBY,744 +django/contrib/sessions/locale/uz/LC_MESSAGES/django.po,sha256=KsHuLgGJt-KDH0h6ND7JLP2dDJAdLVHSlau4DkkfqA8,880 +django/contrib/sessions/locale/vi/LC_MESSAGES/django.mo,sha256=KriTpT-Hgr10DMnY5Bmbd4isxmSFLmav8vg2tuL2Bb8,679 +django/contrib/sessions/locale/vi/LC_MESSAGES/django.po,sha256=M7S46Q0Q961ykz_5FCAN8SXQ54w8tp4rZeZpy6bPtXs,909 +django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=zsbhIMocgB8Yn1XEBxbIIbBh8tLifvvYNlhe5U61ch8,722 +django/contrib/sessions/locale/zh_Hans/LC_MESSAGES/django.po,sha256=tPshgXjEv6pME4N082ztamJhd5whHB2_IV_egdP-LlQ,889 +django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=l6mWJJ_Lbfn3GsvmblZMtyXzgzqgIgroAOCg3DdzQyI,676 +django/contrib/sessions/locale/zh_Hant/LC_MESSAGES/django.po,sha256=MRV_86xy4ILP46qZtxkHGJwWEvXwF5XAvJ16LNMdx3Q,904 +django/contrib/sessions/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sessions/management/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sessions/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sessions/management/commands/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sessions/management/commands/__pycache__/clearsessions.cpython-310.pyc,, +django/contrib/sessions/management/commands/clearsessions.py,sha256=pAiO5o7zgButVlYAV93bPnmiwzWP7V5N7-xPtxSkjJg,661 +django/contrib/sessions/middleware.py,sha256=ziZex9xiqxBYl9SC91i4QIDYuoenz4OoKaNO7sXu8kQ,3483 +django/contrib/sessions/migrations/0001_initial.py,sha256=KqQ44jk-5RNcTdqUv95l_UnoMA8cP5O-0lrjoJ8vabk,1148 +django/contrib/sessions/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sessions/migrations/__pycache__/0001_initial.cpython-310.pyc,, +django/contrib/sessions/migrations/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sessions/models.py,sha256=BguwuQSDzpeTNXhteYRAcspg1rop431tjFeZUVWZNYc,1250 +django/contrib/sessions/serializers.py,sha256=S9oDsUAjFv2MTlLQA6AoehggKyHXpu6-Qnrqybhgvkg,106 +django/contrib/sitemaps/__init__.py,sha256=hZuWQsKCQHfgPOx1GQPETMzTT9oqzcpp2wDMfGiLhp8,6923 +django/contrib/sitemaps/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sitemaps/__pycache__/apps.cpython-310.pyc,, +django/contrib/sitemaps/__pycache__/views.cpython-310.pyc,, +django/contrib/sitemaps/apps.py,sha256=xYE-mAs37nL8ZAnv052LhUKVUwGYKB3xyPy4t8pwOpw,249 +django/contrib/sitemaps/templates/sitemap.xml,sha256=L092SHTtwtmNJ_Lj_jLrzHhfI0-OKKIw5fpyOfr4qRs,683 +django/contrib/sitemaps/templates/sitemap_index.xml,sha256=SQf9avfFmnT8j-nLEc8lVQQcdhiy_qhnqjssIMti3oU,360 +django/contrib/sitemaps/views.py,sha256=WoBVQN0jHzjrhuB-_tMdbC8S1Hb9TAnVyL1Kk3CcGM4,4657 +django/contrib/sites/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sites/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sites/__pycache__/admin.cpython-310.pyc,, +django/contrib/sites/__pycache__/apps.cpython-310.pyc,, +django/contrib/sites/__pycache__/checks.cpython-310.pyc,, +django/contrib/sites/__pycache__/management.cpython-310.pyc,, +django/contrib/sites/__pycache__/managers.cpython-310.pyc,, +django/contrib/sites/__pycache__/middleware.cpython-310.pyc,, +django/contrib/sites/__pycache__/models.cpython-310.pyc,, +django/contrib/sites/__pycache__/requests.cpython-310.pyc,, +django/contrib/sites/__pycache__/shortcuts.cpython-310.pyc,, +django/contrib/sites/admin.py,sha256=IWvGDQUTDPEUsd-uuxfHxJq4syGtddNKUdkP0nmVUMA,214 +django/contrib/sites/apps.py,sha256=uBLHUyQoSuo1Q7NwLTwlvsTuRU1MXwj4t6lRUnIBdwk,562 +django/contrib/sites/checks.py,sha256=AydGM1G1L9mvmTbNMTXRbZzPbHpIiknkRzLh5uFQLLI,366 +django/contrib/sites/locale/af/LC_MESSAGES/django.mo,sha256=A10bZFMs-wUetVfF5UrFwmuiKnN4ZnlrR4Rx8U4Ut1A,786 +django/contrib/sites/locale/af/LC_MESSAGES/django.po,sha256=O0-ZRvmXvV_34kONuqakuXV5OmYbQ569K1Puj3qQNac,907 +django/contrib/sites/locale/ar/LC_MESSAGES/django.mo,sha256=kLoytp2jvhWn6p1c8kNVua2sYAMnrpS4xnbluHD22Vs,947 +django/contrib/sites/locale/ar/LC_MESSAGES/django.po,sha256=HYA3pA29GktzXBP-soUEn9VP2vkZuhVIXVA8TNPCHCs,1135 +django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.mo,sha256=-ltwY57Th6LNqU3bgOPPP7qWtII5c6rj8Dv8eY7PZ84,918 +django/contrib/sites/locale/ar_DZ/LC_MESSAGES/django.po,sha256=KRTjZ2dFRWVPmE_hC5Hq8eDv3GQs3yQKCgV5ISFmEKk,1079 +django/contrib/sites/locale/ast/LC_MESSAGES/django.mo,sha256=eEvaeiGnZFBPGzKLlRz4M9AHemgJVAb-yNpbpxRqtd0,774 +django/contrib/sites/locale/ast/LC_MESSAGES/django.po,sha256=huBohKzLpdaJRFMFXXSDhDCUOqVqyWXfxb8_lLOkUd0,915 +django/contrib/sites/locale/az/LC_MESSAGES/django.mo,sha256=CjAGI4qGoXN95q4LpCLXLKvaNB33Ocf5SfXdurFBkas,773 +django/contrib/sites/locale/az/LC_MESSAGES/django.po,sha256=E84kNPFhgHmIfYT0uzCnTPGwPkAqKzqwFvJB7pETbVo,933 +django/contrib/sites/locale/be/LC_MESSAGES/django.mo,sha256=HGh78mI50ZldBtQ8jId26SI-lSHv4ZLcveRN2J8VzH8,983 +django/contrib/sites/locale/be/LC_MESSAGES/django.po,sha256=W5FhVJKcmd3WHl2Lpd5NJUsc7_sE_1Pipk3CVPoGPa4,1152 +django/contrib/sites/locale/bg/LC_MESSAGES/django.mo,sha256=a2R52umIQIhnzFaFYSRhQ6nBlywE8RGMj2FUOFmyb0A,904 +django/contrib/sites/locale/bg/LC_MESSAGES/django.po,sha256=awB8RMS-qByhNB6eH2f0Oyxb3SH8waLhrZ--rokGfaI,1118 +django/contrib/sites/locale/bn/LC_MESSAGES/django.mo,sha256=cI3a9_L-OC7gtdyRNaGX7A5w0Za0M4ERnYB7rSNkuRU,925 +django/contrib/sites/locale/bn/LC_MESSAGES/django.po,sha256=8ZxYF16bgtTZSZRZFok6IJxUV02vIztoVx2qXqwO8NM,1090 +django/contrib/sites/locale/br/LC_MESSAGES/django.mo,sha256=rI_dIznbwnadZbxOPtQxZ1pGYePNwcNNXt05iiPkchU,1107 +django/contrib/sites/locale/br/LC_MESSAGES/django.po,sha256=7Ein5Xw73DNGGtdd595Bx6ixfSD-dBXZNBUU44pSLuQ,1281 +django/contrib/sites/locale/bs/LC_MESSAGES/django.mo,sha256=bDeqQNme586LnQRQdvOWaLGZssjOoECef3vMq_OCXno,692 +django/contrib/sites/locale/bs/LC_MESSAGES/django.po,sha256=xRTWInDNiLxikjwsjgW_pYjhy24zOro90-909ns9fig,923 +django/contrib/sites/locale/ca/LC_MESSAGES/django.mo,sha256=lEUuQEpgDY3bVWzRONrPzYlojRoNduT16_oYDkkbdfk,791 +django/contrib/sites/locale/ca/LC_MESSAGES/django.po,sha256=aORAoVn69iG1ynmEfnkBzBO-UZOzzbkPVOU-ZvfMtZg,996 +django/contrib/sites/locale/ckb/LC_MESSAGES/django.mo,sha256=Chp4sX73l_RFw4aaf9x67vEO1_cM8eh5c0URKBgMU-Q,843 +django/contrib/sites/locale/ckb/LC_MESSAGES/django.po,sha256=2NPav4574kEwTS_nZTUoVbYxJFzsaC5MdQUCD9iqC6E,1007 +django/contrib/sites/locale/cs/LC_MESSAGES/django.mo,sha256=mnXnpU7sLDTJ3OrIUTnGarPYsupNIUPV4ex_BPWU8fk,827 +django/contrib/sites/locale/cs/LC_MESSAGES/django.po,sha256=ONzFlwzmt7p5jdp6111qQkkevckRrd7GNS0lkDPKu-4,1035 +django/contrib/sites/locale/cy/LC_MESSAGES/django.mo,sha256=70pOie0K__hkmM9oBUaQfVwHjK8Cl48E26kRQL2mtew,835 +django/contrib/sites/locale/cy/LC_MESSAGES/django.po,sha256=FAZrVc72x-4R1A-1qYOBwADoXngC_F6FO8nRjr5-Z6g,1013 +django/contrib/sites/locale/da/LC_MESSAGES/django.mo,sha256=FTOyV1DIH9sMldyjgPw98d2HCotoO4zJ_KY_C9DCB7Y,753 +django/contrib/sites/locale/da/LC_MESSAGES/django.po,sha256=Po1Z6u52CFCyz9hLfK009pMbZzZgHrBse0ViX8wCYm8,957 +django/contrib/sites/locale/de/LC_MESSAGES/django.mo,sha256=5Q6X0_bDQ1ZRpkTy7UpPNzrhmQsB9Q0P1agB7koRyzs,792 +django/contrib/sites/locale/de/LC_MESSAGES/django.po,sha256=aD0wBinqtDUPvBbwtHrLEhFdoVRx1nOh17cJFuWhN3U,980 +django/contrib/sites/locale/dsb/LC_MESSAGES/django.mo,sha256=pPpWYsYp81MTrqCsGF0QnGktZNIll70bdBwSkuVE8go,868 +django/contrib/sites/locale/dsb/LC_MESSAGES/django.po,sha256=IA3G8AKJls20gzfxnrfPzivMNpL8A0zBQBg7OyzrP6g,992 +django/contrib/sites/locale/el/LC_MESSAGES/django.mo,sha256=G9o1zLGysUePGzZRicQ2aIIrc2UXMLTQmdpbrUMfWBU,878 +django/contrib/sites/locale/el/LC_MESSAGES/django.po,sha256=RBi_D-_znYuV6LXfTlSOf1Mvuyl96fIyEoiZ-lgeyWs,1133 +django/contrib/sites/locale/en/LC_MESSAGES/django.mo,sha256=U0OV81NfbuNL9ctF-gbGUG5al1StqN-daB-F-gFBFC8,356 +django/contrib/sites/locale/en/LC_MESSAGES/django.po,sha256=tSjfrNZ_FqLHsXjm5NuTyo5-JpdlPLsPZjFqF2APhy8,817 +django/contrib/sites/locale/en_AU/LC_MESSAGES/django.mo,sha256=G--2j_CR99JjRgVIX2Y_5pDfO7IgIkvK4kYHZtGzpxU,753 +django/contrib/sites/locale/en_AU/LC_MESSAGES/django.po,sha256=Giw634r94MJT1Q3qgqM7gZakQCasRM9Dm7MDkb9JOc8,913 +django/contrib/sites/locale/en_GB/LC_MESSAGES/django.mo,sha256=FbSh7msJdrHsXr0EtDMuODFzSANG_HJ3iBlW8ePpqFs,639 +django/contrib/sites/locale/en_GB/LC_MESSAGES/django.po,sha256=Ib-DIuTWlrN3kg99kLCuqWJVtt1NWaFD4UbDFK6d4KY,862 +django/contrib/sites/locale/eo/LC_MESSAGES/django.mo,sha256=N4KkH12OHxic3pp1okeBhpfDx8XxxpULk3UC219vjWU,792 +django/contrib/sites/locale/eo/LC_MESSAGES/django.po,sha256=ymXSJaFJWGBO903ObqR-ows-p4T3KyUplc_p_3r1uk8,1043 +django/contrib/sites/locale/es/LC_MESSAGES/django.mo,sha256=qLN1uoCdslxdYWgdjgSBi7szllP-mQZtHbuZnNOthsQ,804 +django/contrib/sites/locale/es/LC_MESSAGES/django.po,sha256=QClia2zY39269VSQzkQsLwwukthN6u2JBsjbLNxA1VQ,1066 +django/contrib/sites/locale/es_AR/LC_MESSAGES/django.mo,sha256=_O4rVk7IM2BBlZvjDP2SvTOo8WWqthQi5exQzt027-s,776 +django/contrib/sites/locale/es_AR/LC_MESSAGES/django.po,sha256=RwyNylXbyxdSXn6qRDXd99-GaEPlmr6TicHTUW0boaQ,969 +django/contrib/sites/locale/es_CO/LC_MESSAGES/django.mo,sha256=a4Xje2M26wyIx6Wlg6puHo_OXjiDEy7b0FquT9gbThA,825 +django/contrib/sites/locale/es_CO/LC_MESSAGES/django.po,sha256=9bnRhVD099JzkheO80l65dufjuawsj9aSFgFu5A-lnM,949 +django/contrib/sites/locale/es_MX/LC_MESSAGES/django.mo,sha256=AtGta5jBL9XNBvfSpsCcnDtDhvcb89ALl4hNjSPxibM,809 +django/contrib/sites/locale/es_MX/LC_MESSAGES/django.po,sha256=TnkpQp-7swH-x9cytUJe-QJRd2n_pYMVo0ltDw9Pu8o,991 +django/contrib/sites/locale/es_VE/LC_MESSAGES/django.mo,sha256=59fZBDut-htCj38ZUoqPjhXJPjZBz-xpU9__QFr3kLs,486 +django/contrib/sites/locale/es_VE/LC_MESSAGES/django.po,sha256=8PWXy2L1l67wDIi98Q45j7OpVITr0Lt4zwitAnB-d_o,791 +django/contrib/sites/locale/et/LC_MESSAGES/django.mo,sha256=I2E-49UQsG-F26OeAfnKlfUdA3YCkUSV8ffA-GMSkE0,788 +django/contrib/sites/locale/et/LC_MESSAGES/django.po,sha256=mEfD6EyQ15PPivb5FTlkabt3Lo_XGtomI9XzHrrh34Y,992 +django/contrib/sites/locale/eu/LC_MESSAGES/django.mo,sha256=1HTAFI3DvTAflLJsN7NVtSd4XOTlfoeLGFyYCOX69Ec,807 +django/contrib/sites/locale/eu/LC_MESSAGES/django.po,sha256=NWxdE5-mF6Ak4nPRpCFEgAMIsVDe9YBEZl81v9kEuX8,1023 +django/contrib/sites/locale/fa/LC_MESSAGES/django.mo,sha256=odtsOpZ6noNqwDb18HDc2e6nz3NMsa-wrTN-9dk7d9w,872 +django/contrib/sites/locale/fa/LC_MESSAGES/django.po,sha256=-DirRvcTqcpIy90QAUiCSoNkCDRifqpWSzLriJ4cwQU,1094 +django/contrib/sites/locale/fi/LC_MESSAGES/django.mo,sha256=I5DUeLk1ChUC32q5uzriABCLLJpJKNbEK4BfqylPQzg,786 +django/contrib/sites/locale/fi/LC_MESSAGES/django.po,sha256=LH2sFIKM3YHPoz9zIu10z1DFv1svXphBdOhXNy4a17s,929 +django/contrib/sites/locale/fr/LC_MESSAGES/django.mo,sha256=W7Ne5HqgnRcl42njzbUaDSY059jdhwvr0tgZzecVWD8,756 +django/contrib/sites/locale/fr/LC_MESSAGES/django.po,sha256=u24rHDJ47AoBgcmBwI1tIescAgbjFxov6y906H_uhK0,999 +django/contrib/sites/locale/fy/LC_MESSAGES/django.mo,sha256=YQQy7wpjBORD9Isd-p0lLzYrUgAqv770_56-vXa0EOc,476 +django/contrib/sites/locale/fy/LC_MESSAGES/django.po,sha256=Yh6Lw0QI2Me0zCtlyXraFLjERKqklB6-IJLDTjH_jTs,781 +django/contrib/sites/locale/ga/LC_MESSAGES/django.mo,sha256=RKnHbMHTD4CAxNU6SXQ6jCbgzqDIZZuGOFcdX_baCA4,814 +django/contrib/sites/locale/ga/LC_MESSAGES/django.po,sha256=fqY_eHIE04JxXXyi5ZECLMzcfyG0ZXasxG6ZIErkcrQ,1058 +django/contrib/sites/locale/gd/LC_MESSAGES/django.mo,sha256=df4XIGGD6FIyMUXsb-SoSqNfBFAsRXf4qYtolh_C964,858 +django/contrib/sites/locale/gd/LC_MESSAGES/django.po,sha256=NPKp7A5-y-MR7r8r4WqtcVQJEHCIOP5mLTd0cIfUsug,957 +django/contrib/sites/locale/gl/LC_MESSAGES/django.mo,sha256=tiRYDFC1_V2n1jkEQqhjjQBdZzFkhxzNfHIzG2l3PX4,728 +django/contrib/sites/locale/gl/LC_MESSAGES/django.po,sha256=DNY_rv6w6VrAu3hMUwx3cgLLyH4PFfgaJ9dSKfLBrpI,979 +django/contrib/sites/locale/he/LC_MESSAGES/django.mo,sha256=L3bganfG4gHqp2WXGh4rfWmmbaIxHaGc7-ypAqjSL_E,820 +django/contrib/sites/locale/he/LC_MESSAGES/django.po,sha256=iO3OZwz2aiuAzugkKp5Hxonwdg3kKjBurxR685J2ZMk,1082 +django/contrib/sites/locale/hi/LC_MESSAGES/django.mo,sha256=J4oIS1vJnCvdCCUD4tlTUVyTe4Xn0gKcWedfhH4C0t0,665 +django/contrib/sites/locale/hi/LC_MESSAGES/django.po,sha256=INBrm37jL3okBHuzX8MSN1vMptj77a-4kwQkAyt8w_8,890 +django/contrib/sites/locale/hr/LC_MESSAGES/django.mo,sha256=KjDUhEaOuYSMexcURu2UgfkatN2rrUcAbCUbcpVSInk,876 +django/contrib/sites/locale/hr/LC_MESSAGES/django.po,sha256=-nFMFkVuDoKYDFV_zdNULOqQlnqtiCG57aakN5hqlmg,1055 +django/contrib/sites/locale/hsb/LC_MESSAGES/django.mo,sha256=RyHVb7u9aRn5BXmWzR1gApbZlOioPDJ59ufR1Oo3e8Y,863 +django/contrib/sites/locale/hsb/LC_MESSAGES/django.po,sha256=Aq54y5Gb14bIt28oDDrFltnSOk31Z2YalwaJMDMXfWc,987 +django/contrib/sites/locale/hu/LC_MESSAGES/django.mo,sha256=P--LN84U2BeZAvRVR-OiWl4R02cTTBi2o8XR2yHIwIU,796 +django/contrib/sites/locale/hu/LC_MESSAGES/django.po,sha256=b0VhyFdNaZZR5MH1vFsLL69FmICN8Dz-sTRk0PdK49E,953 +django/contrib/sites/locale/hy/LC_MESSAGES/django.mo,sha256=Hs9XwRHRkHicLWt_NvWvr7nMocmY-Kc8XphhVSAMQRc,906 +django/contrib/sites/locale/hy/LC_MESSAGES/django.po,sha256=MU4hXXGfjXKfYcjxDYzFfsEUIelz5ZzyQLkeSrUQKa0,1049 +django/contrib/sites/locale/ia/LC_MESSAGES/django.mo,sha256=gRMs-W5EiY26gqzwnDXEMbeb1vs0bYZ2DC2a9VCciew,809 +django/contrib/sites/locale/ia/LC_MESSAGES/django.po,sha256=HXZzn9ACIqfR2YoyvpK2FjZ7QuEq_RVZ1kSC4nxMgeg,934 +django/contrib/sites/locale/id/LC_MESSAGES/django.mo,sha256=__2E_2TmVUcbf1ygxtS1lHvkhv8L0mdTAtJpBsdH24Y,791 +django/contrib/sites/locale/id/LC_MESSAGES/django.po,sha256=e5teAHiMjLR8RDlg8q99qtW-K81ltcIiBIdb1MZw2sE,1000 +django/contrib/sites/locale/io/LC_MESSAGES/django.mo,sha256=W-NP0b-zR1oWUZnHZ6fPu5AC2Q6o7nUNoxssgeguUBo,760 +django/contrib/sites/locale/io/LC_MESSAGES/django.po,sha256=G4GUUz3rxoBjWTs-j5RFCvv52AEHiwrCBwom5hYeBSE,914 +django/contrib/sites/locale/is/LC_MESSAGES/django.mo,sha256=lkJgTzDjh5PNfIJpOS2DxKmwVUs9Sl5XwFHv4YdCB30,812 +django/contrib/sites/locale/is/LC_MESSAGES/django.po,sha256=1DVgAcHSZVyDd5xn483oqICIG4ooyZY8ko7A3aDogKM,976 +django/contrib/sites/locale/it/LC_MESSAGES/django.mo,sha256=6NQjjtDMudnAgnDCkemOXinzX0J-eAE5gSq1F8kjusY,795 +django/contrib/sites/locale/it/LC_MESSAGES/django.po,sha256=zxavlLMmp1t1rCDsgrw12kVgxiK5EyR_mOalSu8-ws8,984 +django/contrib/sites/locale/ja/LC_MESSAGES/django.mo,sha256=RNuCS6wv8uK5TmXkSH_7SjsbUFkf24spZfTsvfoTKro,814 +django/contrib/sites/locale/ja/LC_MESSAGES/django.po,sha256=e-cj92VOVc5ycIY6NwyFh5bO7Q9q5vp5CG4dOzd_eWQ,982 +django/contrib/sites/locale/ka/LC_MESSAGES/django.mo,sha256=m8GTqr9j0ijn0YJhvnsYwlk5oYcASKbHg_5hLqZ91TI,993 +django/contrib/sites/locale/ka/LC_MESSAGES/django.po,sha256=1upohcHrQH9T34b6lW09MTtFkk5WswdYOLs2vMAJIuE,1160 +django/contrib/sites/locale/kab/LC_MESSAGES/django.mo,sha256=Utdj5gH5YPeaYMjeMzF-vjqYvYTCipre2qCBkEJSc-Y,808 +django/contrib/sites/locale/kab/LC_MESSAGES/django.po,sha256=d78Z-YanYZkyP5tpasj8oAa5RimVEmce6dlq5vDSscA,886 +django/contrib/sites/locale/kk/LC_MESSAGES/django.mo,sha256=T2dTZ83vBRfQb2dRaKOrhvO00BHQu_2bu0O0k7RsvGA,895 +django/contrib/sites/locale/kk/LC_MESSAGES/django.po,sha256=HvdSFqsumyNurDJ6NKVLjtDdSIg0KZN2v29dM748GtU,1062 +django/contrib/sites/locale/km/LC_MESSAGES/django.mo,sha256=Q7pn5E4qN957j20-iCHgrfI-p8sm3Tc8O2DWeuH0By8,701 +django/contrib/sites/locale/km/LC_MESSAGES/django.po,sha256=TOs76vlCMYOZrdHgXPWZhQH1kTBQTpzsDJ8N4kbJQ7E,926 +django/contrib/sites/locale/kn/LC_MESSAGES/django.mo,sha256=_jl_4_39oe940UMyb15NljGOd45kkCeVNpJy6JvGWTE,673 +django/contrib/sites/locale/kn/LC_MESSAGES/django.po,sha256=cMPXF2DeiQuErhyFMe4i7swxMoqoz1sqtBEXf4Ghx1c,921 +django/contrib/sites/locale/ko/LC_MESSAGES/django.mo,sha256=OSr4OPZCkJqp2ymg32reatGzafM5Qq8fY4D4Dl21Cqk,744 +django/contrib/sites/locale/ko/LC_MESSAGES/django.po,sha256=Lekvcfi1xH8QVwFeSbKU3i26w71ALRy5rbPi3xS03Bw,1052 +django/contrib/sites/locale/ky/LC_MESSAGES/django.mo,sha256=IYxp8jG5iyN81h7YJqOiSQdOH7DnwOiIvelKZfzP6ZA,811 +django/contrib/sites/locale/ky/LC_MESSAGES/django.po,sha256=rxPdgQoBtGQSi5diOy3MXyoM4ffpwdWCc4WE3pjIHEI,927 +django/contrib/sites/locale/lb/LC_MESSAGES/django.mo,sha256=xokesKl7h7k9dXFKIJwGETgwx1Ytq6mk2erBSxkgY-o,474 +django/contrib/sites/locale/lb/LC_MESSAGES/django.po,sha256=1yRdK9Zyh7kcWG7wUexuF9-zxEaKLS2gG3ggVOHbRJ8,779 +django/contrib/sites/locale/lt/LC_MESSAGES/django.mo,sha256=bK6PJtd7DaOgDukkzuqos5ktgdjSF_ffL9IJTQY839s,869 +django/contrib/sites/locale/lt/LC_MESSAGES/django.po,sha256=T-vdVqs9KCz9vMs9FfushgZN9z7LQOT-C86D85H2X8c,1195 +django/contrib/sites/locale/lv/LC_MESSAGES/django.mo,sha256=t9bQiVqpAmXrq8QijN4Lh0n6EGUGQjnuH7hDcu21z4c,823 +django/contrib/sites/locale/lv/LC_MESSAGES/django.po,sha256=vMaEtXGosD3AcTomiuctbOpjLes8TRBnumLe8DC4yq4,1023 +django/contrib/sites/locale/mk/LC_MESSAGES/django.mo,sha256=_YXasRJRWjYmmiEWCrAoqnrKuHHPBG_v_EYTUe16Nfo,885 +django/contrib/sites/locale/mk/LC_MESSAGES/django.po,sha256=AgdIjiSpN0P5o5rr5Ie4sFhnmS5d4doB1ffk91lmOvY,1062 +django/contrib/sites/locale/ml/LC_MESSAGES/django.mo,sha256=axNQVBY0nbR7hYa5bzNtdxB17AUOs2WXhu0Rg--FA3Q,1007 +django/contrib/sites/locale/ml/LC_MESSAGES/django.po,sha256=Sg7hHfK8OMs05ebtTv8gxS6_2kZv-OODwf7okP95Jtk,1169 +django/contrib/sites/locale/mn/LC_MESSAGES/django.mo,sha256=w2sqJRAe0wyz_IuCZ_Ocubs_VHL6wV1BcutWPz0dseQ,867 +django/contrib/sites/locale/mn/LC_MESSAGES/django.po,sha256=Zh_Eao0kLZsrQ8wkL1f-pRrsAtNJOspu45uStq5t8Mo,1127 +django/contrib/sites/locale/mr/LC_MESSAGES/django.mo,sha256=CudEHmP5qNvQ-BfEBOoYMh0qGVw80m-wgeu7eh7zaCQ,884 +django/contrib/sites/locale/mr/LC_MESSAGES/django.po,sha256=FtdCo3O-35EIuOP5OOQU8afWDCbn4ge2lmxjVAYtbGU,1023 +django/contrib/sites/locale/ms/LC_MESSAGES/django.mo,sha256=GToJlS8yDNEy-D3-p7p8ZlWEZYHlSzZAcVIH5nQEkkI,727 +django/contrib/sites/locale/ms/LC_MESSAGES/django.po,sha256=_4l4DCIqSWZtZZNyfzpBA0V-CbAaHe9Ckz06VLbTjFo,864 +django/contrib/sites/locale/my/LC_MESSAGES/django.mo,sha256=jN59e9wRheZYx1A4t_BKc7Hx11J5LJg2wQRd21aQv08,961 +django/contrib/sites/locale/my/LC_MESSAGES/django.po,sha256=EhqYIW5-rX33YjsDsBwfiFb3BK6fZKVc3CRYeJpZX1E,1086 +django/contrib/sites/locale/nb/LC_MESSAGES/django.mo,sha256=AaiHGcmcciy5IMBPVAShcc1OQOETJvBCv7GYHMcIQMA,793 +django/contrib/sites/locale/nb/LC_MESSAGES/django.po,sha256=936zoN1sPSiiq7GuH01umrw8W6BtymYEU3bCfOQyfWE,1000 +django/contrib/sites/locale/ne/LC_MESSAGES/django.mo,sha256=n96YovpBax3T5VZSmIfGmd7Zakn9FJShJs5rvUX7Kf0,863 +django/contrib/sites/locale/ne/LC_MESSAGES/django.po,sha256=B14rhDd8GAaIjxd1sYjxO2pZfS8gAwZ1C-kCdVkRXho,1078 +django/contrib/sites/locale/nl/LC_MESSAGES/django.mo,sha256=ghu-tNPNZuE4sVRDWDVmmmVNPYZLWYm_UPJRqh8wmec,735 +django/contrib/sites/locale/nl/LC_MESSAGES/django.po,sha256=1DCQNzMRhy4vW-KkmlPGy58UR27Np5ilmYhmjaq-8_k,1030 +django/contrib/sites/locale/nn/LC_MESSAGES/django.mo,sha256=eSW8kwbzm2HsE9s9IRCsAo9juimVQjcfdd8rtl3TQJM,731 +django/contrib/sites/locale/nn/LC_MESSAGES/django.po,sha256=OOyvE7iji9hwvz8Z_OxWoKw2e3ptk3dqeqlriXgilSc,915 +django/contrib/sites/locale/os/LC_MESSAGES/django.mo,sha256=Su06FkWMOPzBxoung3bEju_EnyAEAXROoe33imO65uQ,806 +django/contrib/sites/locale/os/LC_MESSAGES/django.po,sha256=4i4rX6aXDUKjq64T02iStqV2V2erUsSVnTivh2XtQeY,963 +django/contrib/sites/locale/pa/LC_MESSAGES/django.mo,sha256=tOHiisOtZrTyIFoo4Ipn_XFH9hhu-ubJLMdOML5ZUgk,684 +django/contrib/sites/locale/pa/LC_MESSAGES/django.po,sha256=ztGyuqvzxRfNjqDG0rMLCu_oQ8V3Dxdsx0WZoYUyNv8,912 +django/contrib/sites/locale/pl/LC_MESSAGES/django.mo,sha256=lo5K262sZmo-hXvcHoBsEDqX8oJEPSxJY5EfRIqHZh0,903 +django/contrib/sites/locale/pl/LC_MESSAGES/django.po,sha256=-kQ49UvXITMy1vjJoN_emuazV_EjNDQnZDERXWNoKvw,1181 +django/contrib/sites/locale/pt/LC_MESSAGES/django.mo,sha256=PrcFQ04lFJ7mIYThXbW6acmDigEFIoLAC0PYk5hfaJs,797 +django/contrib/sites/locale/pt/LC_MESSAGES/django.po,sha256=Aj8hYI9W5nk5uxKHj1oE-b9bxmmuoeXLKaJDPfI2x2o,993 +django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.mo,sha256=BsFfarOR6Qk67fB-tTWgGhuOReJSgjwJBkIzZsv28vo,824 +django/contrib/sites/locale/pt_BR/LC_MESSAGES/django.po,sha256=jfvgelpWn2VQqYe2_CE39SLTsscCckvjuZo6dWII28c,1023 +django/contrib/sites/locale/ro/LC_MESSAGES/django.mo,sha256=oGsZw4_uYpaH6adMxnAuifJgHeZ_ytRZ4rFhiNfRQkQ,857 +django/contrib/sites/locale/ro/LC_MESSAGES/django.po,sha256=tWbWVbjFFELNzSXX4_5ltmzEeEJsY3pKwgEOjgV_W_8,1112 +django/contrib/sites/locale/ru/LC_MESSAGES/django.mo,sha256=bIZJWMpm2O5S6RC_2cfkrp5NXaTU2GWSsMr0wHVEmcw,1016 +django/contrib/sites/locale/ru/LC_MESSAGES/django.po,sha256=jHy5GR05ZSjLmAwaVNq3m0WdhO9GYxge3rDBziqesA8,1300 +django/contrib/sites/locale/sk/LC_MESSAGES/django.mo,sha256=-EYdm14ZjoR8bd7Rv2b5G7UJVSKmZa1ItLsdATR3-Cg,822 +django/contrib/sites/locale/sk/LC_MESSAGES/django.po,sha256=VSRlsq8uk-hP0JI94iWsGX8Al76vvGK4N1xIoFtoRQM,1070 +django/contrib/sites/locale/sl/LC_MESSAGES/django.mo,sha256=JmkpTKJGWgnBM3CqOUriGvrDnvg2YWabIU2kbYAOM4s,845 +django/contrib/sites/locale/sl/LC_MESSAGES/django.po,sha256=qWrWrSz5r3UOVraX08ILt3TTmfyTDGKbJKbTlN9YImU,1059 +django/contrib/sites/locale/sq/LC_MESSAGES/django.mo,sha256=DMLN1ZDJeDnslavjcKloXSXn6IvangVliVP3O6U8dAY,769 +django/contrib/sites/locale/sq/LC_MESSAGES/django.po,sha256=zg3ALcMNZErAS_xFxmtv6TmXZ0vxobX5AzCwOSRSwc8,930 +django/contrib/sites/locale/sr/LC_MESSAGES/django.mo,sha256=8kfi9IPdB2reF8C_eC2phaP6qonboHPwes_w3UgNtzw,935 +django/contrib/sites/locale/sr/LC_MESSAGES/django.po,sha256=A7xaen8H1W4uMBRAqCXT_0KQMoA2-45AUNDfGo9FydI,1107 +django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.mo,sha256=jMXiq18efq0wErJAQfJR1fCnkYcEb7OYXg8sv6kzP0s,815 +django/contrib/sites/locale/sr_Latn/LC_MESSAGES/django.po,sha256=9jkWYcZCTfQr2UZtyvhWDAmEHBrzunJUZcx7FlrFOis,1004 +django/contrib/sites/locale/sv/LC_MESSAGES/django.mo,sha256=1AttMJ2KbQQgJVH9e9KuCKC0UqDHvWSPcKkbPkSLphQ,768 +django/contrib/sites/locale/sv/LC_MESSAGES/django.po,sha256=N7wqrcFb5ZNX83q1ZCkpkP94Lb3ZIBUATDssNT8F51c,1028 +django/contrib/sites/locale/sw/LC_MESSAGES/django.mo,sha256=cWjjDdFXBGmpUm03UDtgdDrREa2r75oMsXiEPT_Bx3g,781 +django/contrib/sites/locale/sw/LC_MESSAGES/django.po,sha256=oOKNdztQQU0sd6XmLI-n3ONmTL7jx3Q0z1YD8673Wi8,901 +django/contrib/sites/locale/ta/LC_MESSAGES/django.mo,sha256=CLO41KsSKqBrgtrHi6fmXaBk-_Y2l4KBLDJctZuZyWY,714 +django/contrib/sites/locale/ta/LC_MESSAGES/django.po,sha256=YsTITHg7ikkNcsP29tDgkZrUdtO0s9PrV1XPu4mgqCw,939 +django/contrib/sites/locale/te/LC_MESSAGES/django.mo,sha256=GmIWuVyIOcoQoAmr2HxCwBDE9JUYEktzYig93H_4v50,687 +django/contrib/sites/locale/te/LC_MESSAGES/django.po,sha256=jbncxU9H3EjXxWPsEoCKJhKi392XXTGvWyuenqLDxps,912 +django/contrib/sites/locale/tg/LC_MESSAGES/django.mo,sha256=wiWRlf3AN5zlFMNyP_rSDZS7M5rHQJ2DTUHARtXjim8,863 +django/contrib/sites/locale/tg/LC_MESSAGES/django.po,sha256=VBGZfJIw40JZe15ghsk-n3qUVX0VH2nFQQhpBy_lk1Y,1026 +django/contrib/sites/locale/th/LC_MESSAGES/django.mo,sha256=dQOp4JoP3gvfsxqEQ73L6F8FgH1YtAA9hYY-Uz5sv6Y,898 +django/contrib/sites/locale/th/LC_MESSAGES/django.po,sha256=auZBoKKKCHZbbh0PaUr9YKiWB1TEYZoj4bE7efAonV8,1077 +django/contrib/sites/locale/tk/LC_MESSAGES/django.mo,sha256=YhzSiVb_NdG1s7G1-SGGd4R3uweZQgnTs3G8Lv9r5z0,755 +django/contrib/sites/locale/tk/LC_MESSAGES/django.po,sha256=sigmzH3Ni2vJwLJ7ba8EeB4wnDXsg8rQRFExZAGycF4,917 +django/contrib/sites/locale/tr/LC_MESSAGES/django.mo,sha256=ryf01jcvvBMGPKkdViieDuor-Lr2KRXZeFF1gPupCOA,758 +django/contrib/sites/locale/tr/LC_MESSAGES/django.po,sha256=L9tsnwxw1BEJD-Nm3m1RAS7ekgdmyC0ETs_mr7tQw1E,1043 +django/contrib/sites/locale/tt/LC_MESSAGES/django.mo,sha256=gmmjXeEQUlBpfDmouhxE-qpEtv-iWdQSobYL5MWprZc,706 +django/contrib/sites/locale/tt/LC_MESSAGES/django.po,sha256=yj49TjwcZ4YrGqnJrKh3neKydlTgwYduto9KsmxI_eI,930 +django/contrib/sites/locale/udm/LC_MESSAGES/django.mo,sha256=CNmoKj9Uc0qEInnV5t0Nt4ZnKSZCRdIG5fyfSsqwky4,462 +django/contrib/sites/locale/udm/LC_MESSAGES/django.po,sha256=vrLZ0XJF63CO3IucbQpd12lxuoM9S8tTUv6cpu3g81c,767 +django/contrib/sites/locale/ug/LC_MESSAGES/django.mo,sha256=EBWMPAJLaxkIPQ5hm_nMRxs7Y0SEEgu6zcDM4jBUAt8,868 +django/contrib/sites/locale/ug/LC_MESSAGES/django.po,sha256=9a0kmoIxg-KMu5faIjcRgWehr3Ild-stVZsBdDrzHV0,1030 +django/contrib/sites/locale/uk/LC_MESSAGES/django.mo,sha256=H4806mPqOoHJFm549F7drzsfkvAXWKmn1w_WVwQx9rk,960 +django/contrib/sites/locale/uk/LC_MESSAGES/django.po,sha256=CJZTOaurDXwpgBiwXx3W7juaF0EctEImPhJdDn8j1xU,1341 +django/contrib/sites/locale/ur/LC_MESSAGES/django.mo,sha256=s6QL8AB_Mp9haXS4n1r9b0YhEUECPxUyPrHTMI3agts,654 +django/contrib/sites/locale/ur/LC_MESSAGES/django.po,sha256=R9tv3qtett8CUGackoHrc5XADeygVKAE0Fz8YzK2PZ4,885 +django/contrib/sites/locale/uz/LC_MESSAGES/django.mo,sha256=OsuqnLEDl9gUAwsmM2s1KH7VD74ID-k7JXcjGhjFlEY,799 +django/contrib/sites/locale/uz/LC_MESSAGES/django.po,sha256=RoaOwLDjkqqIJTuxpuY7eMLo42n6FoYAYutCfMaDk4I,935 +django/contrib/sites/locale/vi/LC_MESSAGES/django.mo,sha256=YOaKcdrN1238Zdm81jUkc2cpxjInAbdnhsSqHP_jQsI,762 +django/contrib/sites/locale/vi/LC_MESSAGES/django.po,sha256=AHcqR2p0fdscLvzbJO_a-CzMzaeRL4LOw4HB9K3noVQ,989 +django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.mo,sha256=7D9_pDY5lBRpo1kfzIQL-PNvIg-ofCm7cBHE1-JWlMk,779 +django/contrib/sites/locale/zh_Hans/LC_MESSAGES/django.po,sha256=xI_N00xhV8dWDp4fg5Mmj9ivOBBdHP79T3-JYXPyc5M,946 +django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.mo,sha256=C4ZEuruq2Qnj7Zk-ZUfPWjLHcbNaC0V9MlDs8Go9Ieo,736 +django/contrib/sites/locale/zh_Hant/LC_MESSAGES/django.po,sha256=wGZCUT4Yg8FJLZZ6C_mf5Lly3YkPIhbTBiyTmj5emj8,1055 +django/contrib/sites/management.py,sha256=AElGktvFhWXJtlJwOKpUlIeuv2thkNM8F6boliML84U,1646 +django/contrib/sites/managers.py,sha256=uqD_Cu3P4NCp7VVdGn0NvHfhsZB05MLmiPmgot-ygz4,1994 +django/contrib/sites/middleware.py,sha256=qYcVHsHOg0VxQNS4saoLHkdF503nJR-D7Z01vE0SvUM,309 +django/contrib/sites/migrations/0001_initial.py,sha256=8fY63Z5DwbKQ1HtvAajKDhBLEufigRTsoRazyEf5RU4,1361 +django/contrib/sites/migrations/0002_alter_domain_unique.py,sha256=llK7IKQKnFCK5viHLew2ZMdV9e1sHy0H1blszEu_NKs,549 +django/contrib/sites/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/sites/migrations/__pycache__/0001_initial.cpython-310.pyc,, +django/contrib/sites/migrations/__pycache__/0002_alter_domain_unique.cpython-310.pyc,, +django/contrib/sites/migrations/__pycache__/__init__.cpython-310.pyc,, +django/contrib/sites/models.py,sha256=0DWVfDGMYqTZgs_LP6hlVxY3ztbwPzulE9Dos8z6M3Q,3695 +django/contrib/sites/requests.py,sha256=baABc6fmTejNmk8M3fcoQ1cuI2qpJzF8Y47A1xSt8gY,641 +django/contrib/sites/shortcuts.py,sha256=nekVQADJROFYwKCD7flmWDMQ9uLAaaKztHVKl5emuWc,573 +django/contrib/staticfiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/staticfiles/__pycache__/__init__.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/apps.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/checks.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/finders.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/handlers.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/storage.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/testing.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/urls.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/utils.cpython-310.pyc,, +django/contrib/staticfiles/__pycache__/views.cpython-310.pyc,, +django/contrib/staticfiles/apps.py,sha256=8G9HetU3WBNDfXKfzYfyXjZ--X3loBkkQSB7xfleIl4,504 +django/contrib/staticfiles/checks.py,sha256=FPzYotgRzxqWYDnjIK78bgQAfBSFqeJB04RDVMxlhng,846 +django/contrib/staticfiles/finders.py,sha256=_mfSsh1rOFW_ZHzX__fug0yGAuBqdXI-v0cG1aTRMEE,10996 +django/contrib/staticfiles/handlers.py,sha256=DeDbXvIUeSs0icls4e1HQ3y-6-agjO_c2O5ufkSnuls,4035 +django/contrib/staticfiles/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/staticfiles/management/__pycache__/__init__.cpython-310.pyc,, +django/contrib/staticfiles/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/staticfiles/management/commands/__pycache__/__init__.cpython-310.pyc,, +django/contrib/staticfiles/management/commands/__pycache__/collectstatic.cpython-310.pyc,, +django/contrib/staticfiles/management/commands/__pycache__/findstatic.cpython-310.pyc,, +django/contrib/staticfiles/management/commands/__pycache__/runserver.cpython-310.pyc,, +django/contrib/staticfiles/management/commands/collectstatic.py,sha256=Zd65dgKD8JlXmoDb3ig6tvZka4gMV_6egbLcoRLJ1SA,15137 +django/contrib/staticfiles/management/commands/findstatic.py,sha256=TMMGlbV-B1aq1b27nA6Otu6hV44pqAzeuEtTV2DPmp0,1638 +django/contrib/staticfiles/management/commands/runserver.py,sha256=U_7oCY8LJX5Jn1xlMv-qF4EQoUvlT0ldB5E_0sJmRtw,1373 +django/contrib/staticfiles/storage.py,sha256=ZI_qo3HWJ64rXMExqay2XXlzviqsy7Yy4mU9Zv5jvfM,21036 +django/contrib/staticfiles/testing.py,sha256=4X-EtOfXnwkJAyFT8qe4H4sbVTKgM65klLUtY81KHiE,463 +django/contrib/staticfiles/urls.py,sha256=owDM_hdyPeRmxYxZisSMoplwnzWrptI_W8-3K2f7ITA,498 +django/contrib/staticfiles/utils.py,sha256=iPXHA0yMXu37PQwCrq9zjhSzjZf_zEBXJ-dHGsqZoX8,2279 +django/contrib/staticfiles/views.py,sha256=mX70oejBU2FPZ9_idkI0EiRBkTjKcCD7JJ34gYxhM2M,1262 +django/contrib/syndication/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/contrib/syndication/__pycache__/__init__.cpython-310.pyc,, +django/contrib/syndication/__pycache__/apps.cpython-310.pyc,, +django/contrib/syndication/__pycache__/views.cpython-310.pyc,, +django/contrib/syndication/apps.py,sha256=7IpHoihPWtOcA6S4O6VoG0XRlqEp3jsfrNf-D-eluic,203 +django/contrib/syndication/views.py,sha256=c8T8V49cyTMk6KLna8fbULOr3aMjkqye6C5lMAFofUU,9309 +django/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/__pycache__/__init__.cpython-310.pyc,, +django/core/__pycache__/asgi.cpython-310.pyc,, +django/core/__pycache__/exceptions.cpython-310.pyc,, +django/core/__pycache__/paginator.cpython-310.pyc,, +django/core/__pycache__/signals.cpython-310.pyc,, +django/core/__pycache__/signing.cpython-310.pyc,, +django/core/__pycache__/validators.cpython-310.pyc,, +django/core/__pycache__/wsgi.cpython-310.pyc,, +django/core/asgi.py,sha256=N2L3GS6F6oL-yD9Tu2otspCi2UhbRQ90LEx3ExOP1m0,386 +django/core/cache/__init__.py,sha256=Z1LsL-TNTNVU5X3CLeHeK4Fbfar76n4zwBr4aC9kxuI,1929 +django/core/cache/__pycache__/__init__.cpython-310.pyc,, +django/core/cache/__pycache__/utils.cpython-310.pyc,, +django/core/cache/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/cache/backends/__pycache__/__init__.cpython-310.pyc,, +django/core/cache/backends/__pycache__/base.cpython-310.pyc,, +django/core/cache/backends/__pycache__/db.cpython-310.pyc,, +django/core/cache/backends/__pycache__/dummy.cpython-310.pyc,, +django/core/cache/backends/__pycache__/filebased.cpython-310.pyc,, +django/core/cache/backends/__pycache__/locmem.cpython-310.pyc,, +django/core/cache/backends/__pycache__/memcached.cpython-310.pyc,, +django/core/cache/backends/__pycache__/redis.cpython-310.pyc,, +django/core/cache/backends/base.py,sha256=n7j5e0LbCYY3y6mv96_qEqPW1g5a_Ogp6J98dqtScv0,14291 +django/core/cache/backends/db.py,sha256=HlTGDpZugousm1JUeT9HCdp1_leMdKihOJu8cWyIqfg,11372 +django/core/cache/backends/dummy.py,sha256=fQbFiL72DnVKP9UU4WDsZYaxYKx7FlMOJhtP8aky2ic,1043 +django/core/cache/backends/filebased.py,sha256=yV5BkcKMbNFD_RuBwj--M51JY-RVUKblfNORt5-_dac,5794 +django/core/cache/backends/locmem.py,sha256=cqdFgPxYrfEKDvKR2IYiFV7-MwhM0CIHPxLTBxJMDTQ,4035 +django/core/cache/backends/memcached.py,sha256=cB5QRCdr9uocB-tWA1FMBQtWQRqHSRpE7UcIMYI86gI,6776 +django/core/cache/backends/redis.py,sha256=TB1bw1JK7jmUMLlu-nzuuMhtUp0JXBxzFOX149RVeFc,7924 +django/core/cache/utils.py,sha256=3ZLYgUDD6iLiLMC6vjXKfUQigsoU23ffpJx8e71M4XA,397 +django/core/checks/__init__.py,sha256=gFG0gY0C0L-akCrk1F0Q_WmkptYDLXYdyzr3wNJVIi4,1195 +django/core/checks/__pycache__/__init__.cpython-310.pyc,, +django/core/checks/__pycache__/async_checks.cpython-310.pyc,, +django/core/checks/__pycache__/caches.cpython-310.pyc,, +django/core/checks/__pycache__/database.cpython-310.pyc,, +django/core/checks/__pycache__/files.cpython-310.pyc,, +django/core/checks/__pycache__/messages.cpython-310.pyc,, +django/core/checks/__pycache__/model_checks.cpython-310.pyc,, +django/core/checks/__pycache__/registry.cpython-310.pyc,, +django/core/checks/__pycache__/templates.cpython-310.pyc,, +django/core/checks/__pycache__/translation.cpython-310.pyc,, +django/core/checks/__pycache__/urls.cpython-310.pyc,, +django/core/checks/async_checks.py,sha256=A9p_jebELrf4fiD6jJtBM6Gvm8cMb03sSuW9Ncx3-vU,403 +django/core/checks/caches.py,sha256=hbcIFD_grXUQR2lGAzzlCX6qMJfkXj02ZDJElgdT5Yg,2643 +django/core/checks/compatibility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/checks/compatibility/__pycache__/__init__.cpython-310.pyc,, +django/core/checks/compatibility/__pycache__/django_4_0.cpython-310.pyc,, +django/core/checks/compatibility/django_4_0.py,sha256=2s7lm9LZ0NrhaYSrw1Y5mMkL5BC68SS-TyD-TKczbEI,657 +django/core/checks/database.py,sha256=sBj-8o4DmpG5QPy1KXgXtZ0FZ0T9xdlT4XBIc70wmEQ,341 +django/core/checks/files.py,sha256=W4yYHiWrqi0d_G6tDWTw79pr2dgJY41rOv7mRpbtp2Q,522 +django/core/checks/messages.py,sha256=vIJtvmeafgwFzwcXaoRBWkcL_t2gLTLjstWSw5xCtjQ,2241 +django/core/checks/model_checks.py,sha256=8aK5uit9yP_lDfdXBJPlz_r-46faP_gIOXLszXqLQqY,8830 +django/core/checks/registry.py,sha256=Qqig55OhANmA-QBQBSTLuy64Z2VqPT97lLlSHBgyq9g,3456 +django/core/checks/security/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/checks/security/__pycache__/__init__.cpython-310.pyc,, +django/core/checks/security/__pycache__/base.cpython-310.pyc,, +django/core/checks/security/__pycache__/csrf.cpython-310.pyc,, +django/core/checks/security/__pycache__/sessions.cpython-310.pyc,, +django/core/checks/security/base.py,sha256=I0Gm446twRIhbRopEmKsdsYW_NdI7_nK_ZV28msRPEo,9140 +django/core/checks/security/csrf.py,sha256=hmFJ4m9oxDGwhDAWedmtpnIYQcI8Mxcge1D6CCoOBbc,2055 +django/core/checks/security/sessions.py,sha256=Qyb93CJeQBM5LLhhrqor4KQJR2tSpFklS-p7WltXcHc,2554 +django/core/checks/templates.py,sha256=leQ8nyjQBzofWFTo6YH9NkLmt582OlG2p8sFw00sbew,296 +django/core/checks/translation.py,sha256=it7VjXf10-HBdCc3z55_lSxwok9qEncdojRBG74d4FA,1990 +django/core/checks/urls.py,sha256=-H945kSYVe_am-2XJI_T4c2V34lySfA6ZHnEEW8USJ8,4917 +django/core/exceptions.py,sha256=eMWYfZAUY9xvOIVm41ByemPfXNIY59xxO6-vT5oNWIE,6577 +django/core/files/__init__.py,sha256=Rhz5Jm9BM6gy_nf5yMtswN1VsTIILYUL7Z-5edjh_HI,60 +django/core/files/__pycache__/__init__.cpython-310.pyc,, +django/core/files/__pycache__/base.cpython-310.pyc,, +django/core/files/__pycache__/images.cpython-310.pyc,, +django/core/files/__pycache__/locks.cpython-310.pyc,, +django/core/files/__pycache__/move.cpython-310.pyc,, +django/core/files/__pycache__/temp.cpython-310.pyc,, +django/core/files/__pycache__/uploadedfile.cpython-310.pyc,, +django/core/files/__pycache__/uploadhandler.cpython-310.pyc,, +django/core/files/__pycache__/utils.cpython-310.pyc,, +django/core/files/base.py,sha256=MKNxxgiuwHHwGifpydBgjfZpTzdF7VxCQnVV-w8bqhg,4845 +django/core/files/images.py,sha256=Yms--hugUWcpsZJJJ0-UwkIe3PVZ4LjMFz4O7Ew9FBE,2644 +django/core/files/locks.py,sha256=mp96hc8nMob8cMESiASFWUTUn_afW8A4ag_viWz0ojU,3614 +django/core/files/move.py,sha256=Xv8ejaYIITJzLN2NlCE0MhFqalBYUIZiyYbjMIblkAo,2919 +django/core/files/storage/__init__.py,sha256=EosmC1_WLaAFOuapjyoKFNudQiyRIW8C2hx90oQaVD4,622 +django/core/files/storage/__pycache__/__init__.cpython-310.pyc,, +django/core/files/storage/__pycache__/base.cpython-310.pyc,, +django/core/files/storage/__pycache__/filesystem.cpython-310.pyc,, +django/core/files/storage/__pycache__/handler.cpython-310.pyc,, +django/core/files/storage/__pycache__/memory.cpython-310.pyc,, +django/core/files/storage/__pycache__/mixins.cpython-310.pyc,, +django/core/files/storage/base.py,sha256=83MumBD3zLS_tegimD51Oh9yQsIL4cYbW9dduhRnHqI,8296 +django/core/files/storage/filesystem.py,sha256=s0leHXerlPHf_VbnV-WC3YN88rOecmdjXb-k5T5lIvk,9572 +django/core/files/storage/handler.py,sha256=ntOJZ2nf2VUaUY7tKH0mndORFiGKSdh_16o3OtilIBI,1507 +django/core/files/storage/memory.py,sha256=Mz27sDPbeRXGjh77id2LHt8sErp5WAmNj89NBNRDA3I,9745 +django/core/files/storage/mixins.py,sha256=j_Y3unzk9Ccmx-QQjj4AoC3MUhXIw5nFbDYF3Qn_Fh0,700 +django/core/files/temp.py,sha256=iUegEgQ3UyUrDN10SgvKIrHfBPSej1lk-LAgJqMZBcU,2503 +django/core/files/uploadedfile.py,sha256=6hBjxmx8P0fxmZQbtj4OTsXtUk9GdIA7IUcv_KwSI08,4189 +django/core/files/uploadhandler.py,sha256=tMzeS-FJOMQBYQm2ORsLwltwZZrdOizyJSmdFjer_Sw,7180 +django/core/files/utils.py,sha256=tBT8c8wCObMmiVF4BpBpCV5_hhgMKxe2poiunwFpIcw,2602 +django/core/handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/handlers/__pycache__/__init__.cpython-310.pyc,, +django/core/handlers/__pycache__/asgi.cpython-310.pyc,, +django/core/handlers/__pycache__/base.cpython-310.pyc,, +django/core/handlers/__pycache__/exception.cpython-310.pyc,, +django/core/handlers/__pycache__/wsgi.cpython-310.pyc,, +django/core/handlers/asgi.py,sha256=-lHVt6z6ioCs0CgGIrsPVXvpqqdaH-Lc3Xb99RdSbu4,13839 +django/core/handlers/base.py,sha256=j7ScIbMLKYa52HqwHYhIfMWWAG749natcsBsVQsvBjc,14813 +django/core/handlers/exception.py,sha256=Qa03HgQpLx7nqp5emF0bwdiemE0X7U9FfuLfoOHMf_4,5922 +django/core/handlers/wsgi.py,sha256=81DErgzHAaZcw2UivrKqwS69QpoRF8tm0ASEc4v3uQ4,7315 +django/core/mail/__init__.py,sha256=gSCtVTSbqIqkHMK7no1mIqrcircH1fuIuqZmXONayuY,4959 +django/core/mail/__pycache__/__init__.cpython-310.pyc,, +django/core/mail/__pycache__/message.cpython-310.pyc,, +django/core/mail/__pycache__/utils.cpython-310.pyc,, +django/core/mail/backends/__init__.py,sha256=VJ_9dBWKA48MXBZXVUaTy9NhgfRonapA6UAjVFEPKD8,37 +django/core/mail/backends/__pycache__/__init__.cpython-310.pyc,, +django/core/mail/backends/__pycache__/base.cpython-310.pyc,, +django/core/mail/backends/__pycache__/console.cpython-310.pyc,, +django/core/mail/backends/__pycache__/dummy.cpython-310.pyc,, +django/core/mail/backends/__pycache__/filebased.cpython-310.pyc,, +django/core/mail/backends/__pycache__/locmem.cpython-310.pyc,, +django/core/mail/backends/__pycache__/smtp.cpython-310.pyc,, +django/core/mail/backends/base.py,sha256=Cljbb7nil40Dfpob2R8iLmlO0Yv_wlOCBA9hF2Z6W54,1683 +django/core/mail/backends/console.py,sha256=H6lWE18H8uSxj7LB1SGTqQ7UFpk9gWLZYq6reowixLU,1427 +django/core/mail/backends/dummy.py,sha256=sI7tAa3MfG43UHARduttBvEAYYfiLasgF39jzaZPu9E,234 +django/core/mail/backends/filebased.py,sha256=AbEBL9tXr6WIhuSQvm3dHoCpuMoDTSIkx6qFb4GMUe4,2353 +django/core/mail/backends/locmem.py,sha256=95yAcfid-4akp2Eq1DkNrHiYF2-0pKR2N7VCPxMu_50,913 +django/core/mail/backends/smtp.py,sha256=vYF03edaHedkcZqoKaSL38B2BFwuzA_uPXeMdPrDFBo,5803 +django/core/mail/message.py,sha256=QxGgpJfOGQYdHDtRvX57bTfhM_4CzR4S3lSIj0bBszA,17849 +django/core/mail/utils.py,sha256=Wf-pdSdv0WLREYzI7EVWr59K6o7tfb3d2HSbAyE3SOE,506 +django/core/management/__init__.py,sha256=gkXgKuqIpyFauk2-kgOgU-IDxcw8TjAKM_MU-erraE0,17407 +django/core/management/__pycache__/__init__.cpython-310.pyc,, +django/core/management/__pycache__/base.cpython-310.pyc,, +django/core/management/__pycache__/color.cpython-310.pyc,, +django/core/management/__pycache__/sql.cpython-310.pyc,, +django/core/management/__pycache__/templates.cpython-310.pyc,, +django/core/management/__pycache__/utils.cpython-310.pyc,, +django/core/management/base.py,sha256=zJ5lX6qXvsKBWWiBIGmDm8eSJPyiCqdWoSXPbHV_qyE,24392 +django/core/management/color.py,sha256=KXdNATK5AvxVK8wtKH2GTWApnLGCZ_1NKewTsLWCBc0,3168 +django/core/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/management/commands/__pycache__/__init__.cpython-310.pyc,, +django/core/management/commands/__pycache__/check.cpython-310.pyc,, +django/core/management/commands/__pycache__/compilemessages.cpython-310.pyc,, +django/core/management/commands/__pycache__/createcachetable.cpython-310.pyc,, +django/core/management/commands/__pycache__/dbshell.cpython-310.pyc,, +django/core/management/commands/__pycache__/diffsettings.cpython-310.pyc,, +django/core/management/commands/__pycache__/dumpdata.cpython-310.pyc,, +django/core/management/commands/__pycache__/flush.cpython-310.pyc,, +django/core/management/commands/__pycache__/inspectdb.cpython-310.pyc,, +django/core/management/commands/__pycache__/loaddata.cpython-310.pyc,, +django/core/management/commands/__pycache__/makemessages.cpython-310.pyc,, +django/core/management/commands/__pycache__/makemigrations.cpython-310.pyc,, +django/core/management/commands/__pycache__/migrate.cpython-310.pyc,, +django/core/management/commands/__pycache__/optimizemigration.cpython-310.pyc,, +django/core/management/commands/__pycache__/runserver.cpython-310.pyc,, +django/core/management/commands/__pycache__/sendtestemail.cpython-310.pyc,, +django/core/management/commands/__pycache__/shell.cpython-310.pyc,, +django/core/management/commands/__pycache__/showmigrations.cpython-310.pyc,, +django/core/management/commands/__pycache__/sqlflush.cpython-310.pyc,, +django/core/management/commands/__pycache__/sqlmigrate.cpython-310.pyc,, +django/core/management/commands/__pycache__/sqlsequencereset.cpython-310.pyc,, +django/core/management/commands/__pycache__/squashmigrations.cpython-310.pyc,, +django/core/management/commands/__pycache__/startapp.cpython-310.pyc,, +django/core/management/commands/__pycache__/startproject.cpython-310.pyc,, +django/core/management/commands/__pycache__/test.cpython-310.pyc,, +django/core/management/commands/__pycache__/testserver.cpython-310.pyc,, +django/core/management/commands/check.py,sha256=X68B4VTS8i-3LPY0TjuQOc9AM5m9HOMBNPGbzv3FDfA,2832 +django/core/management/commands/compilemessages.py,sha256=gblYId4asdPcuP2tlw5IqpIblKLB9zeW2qzjA4q-fFw,7076 +django/core/management/commands/createcachetable.py,sha256=bdKfxftffjoKQgSJfCBJRgVCwzhqnUn88MvAMPNTits,4656 +django/core/management/commands/dbshell.py,sha256=0ZofTU8SWm7M-vimeLJvRzN5YVEZ7-U-BgZTqXhHjUM,1781 +django/core/management/commands/diffsettings.py,sha256=NNL_J0P3HRzAZd9XcW7Eo_iE_lNliIpKtdcarDbBRpc,3554 +django/core/management/commands/dumpdata.py,sha256=eGPBqrzdk4YZpyRaIUQWKfxe7qprKBYY_jC8DcuJILw,11180 +django/core/management/commands/flush.py,sha256=1LRuBYcWCqIKa23IHLEdtIZzgUGGDGw0YSb6RTX1SaE,3651 +django/core/management/commands/inspectdb.py,sha256=PJ-zDxhwWY3suqZ4odnWyDLry0wy_i3CzMS1JubzNw0,17372 +django/core/management/commands/loaddata.py,sha256=8odpvT9UxaJuHA7ze5dDUHzFeq-dhdbH9Lk19JY3QZo,16008 +django/core/management/commands/makemessages.py,sha256=2wWAiFl-S9SRY5qgBU1GCB68EjnnfVhp_zzv6Jo6q8s,29423 +django/core/management/commands/makemigrations.py,sha256=gxIR6-Dc3OyaW2VrN8j4hVAql8OSN7tZ38x-bjagRpU,22466 +django/core/management/commands/migrate.py,sha256=-r78CKcgXqmFTK_ZGkmqLTgZr6UGAv_kZ7hyVsiFL1M,21415 +django/core/management/commands/optimizemigration.py,sha256=GVWIhX94tOLHEx53w-VrUc48euVWpKCLMw-BbpiQgIg,5224 +django/core/management/commands/runserver.py,sha256=Ax-IvMnZAleIhXdFJlU10YT5pPpXvjSaYbxZvygUMTI,6913 +django/core/management/commands/sendtestemail.py,sha256=sF5TUMbD_tlGBnUsn9t-oFVGNSyeiWRIrgyPbJE88cs,1518 +django/core/management/commands/shell.py,sha256=LKmj6KYv6zpJzQ2mWtR4-u2CDSQL-_Na6TsT4JLYsi4,4613 +django/core/management/commands/showmigrations.py,sha256=24s51EzwIhL6lIpumivpaixQTDGx7I1qJ0wKFNGaEMU,6847 +django/core/management/commands/sqlflush.py,sha256=7KiAXzUqqE3IeGresT-kVzyk_i8XP2NTsIBmYt30D3Y,1031 +django/core/management/commands/sqlmigrate.py,sha256=uMz1V1AZxyyo9UNs4x_vMh3_-aCcYLVxy0VHILtKBLU,3348 +django/core/management/commands/sqlsequencereset.py,sha256=cdnbbd7y81CAYK9KX-V6Ho8KJIO_mVtG3V6tftIBp6g,1101 +django/core/management/commands/squashmigrations.py,sha256=ltDbyWCCLwNknkjG9rZG7DpLl7XgQKXJN7F31uVY5z8,10862 +django/core/management/commands/startapp.py,sha256=Dhllhaf1q3EKVnyBLhJ9QsWf6JmjAtYnVLruHsmMlcQ,503 +django/core/management/commands/startproject.py,sha256=Iv7KOco1GkzGqUEME_LCx5vGi4JfY8-lzdkazDqF7k8,789 +django/core/management/commands/test.py,sha256=UXxsInhGqrcsMMiHk6uBvAwMMzCZDwJl5_Ql3L6lkx8,2367 +django/core/management/commands/testserver.py,sha256=aiS0tCe6uXp9hjcE1LUfZ118xAcMa28ImHL4ynQSqO8,2238 +django/core/management/sql.py,sha256=fP6Bvq4NrQB_9Tb6XsYeCg57xs2Ck6uaCXq0ojFOSvA,1851 +django/core/management/templates.py,sha256=PlaxlTex6m1d42f_HT-B2nhittfw6RmjkIphVlQ558c,15415 +django/core/management/utils.py,sha256=VbXTgGLO7HYzg3Y93nt8VkHbPOBWWyojVHDMfdyzcyc,5434 +django/core/paginator.py,sha256=YFR2EE0W2cLhEuXSWI67c33DreVVSxlz9xRjqGs50zc,7905 +django/core/serializers/__init__.py,sha256=gaH58ip_2dyUFDlfOPenMkVJftQQOBvXqCcZBjAKwTA,8772 +django/core/serializers/__pycache__/__init__.cpython-310.pyc,, +django/core/serializers/__pycache__/base.cpython-310.pyc,, +django/core/serializers/__pycache__/json.cpython-310.pyc,, +django/core/serializers/__pycache__/jsonl.cpython-310.pyc,, +django/core/serializers/__pycache__/python.cpython-310.pyc,, +django/core/serializers/__pycache__/pyyaml.cpython-310.pyc,, +django/core/serializers/__pycache__/xml_serializer.cpython-310.pyc,, +django/core/serializers/base.py,sha256=6LnbPCb4wbDYsE3svEztt2AlS5hZx3NmIdM_0uRijh0,12631 +django/core/serializers/json.py,sha256=dP-VqkWpam7kZxTTPqnB5nZY9CEgS48bi1JAm27jwUo,3464 +django/core/serializers/jsonl.py,sha256=671JRbWRgOH3-oeD3auK9QCziwtrcdbyCIRDy5s4Evw,1879 +django/core/serializers/python.py,sha256=Sokl0FEwRwgKV7hKDAOZL30-Si6DWs9_kANyt7mFjss,6866 +django/core/serializers/pyyaml.py,sha256=77zu6PCfJg_75m36lX9X5018ADcux5qsDGajKNh4pI8,2955 +django/core/serializers/xml_serializer.py,sha256=HL7H3zByt0YhhoAAAzWiIq_zWG6R_byKDdBINX0v79g,18323 +django/core/servers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/core/servers/__pycache__/__init__.cpython-310.pyc,, +django/core/servers/__pycache__/basehttp.cpython-310.pyc,, +django/core/servers/basehttp.py,sha256=0XtDP4SDBGovGKe6oXBba6-qgBJK2lw1umB8RXSOtUo,9995 +django/core/signals.py,sha256=5vh1e7IgPN78WXPo7-hEMPN9tQcqJSZHu0WCibNgd-E,151 +django/core/signing.py,sha256=5-uDACJ8WxTJmwfwPoXRIO4nSr2v4032aTVwPaPLxWA,8772 +django/core/validators.py,sha256=yZ6fwLErkwHBbH5Vw6eULvO_OvxNYDGYFhvKM2DhtX0,23358 +django/core/wsgi.py,sha256=2sYMSe3IBrENeQT7rys-04CRmf8hW2Q2CjlkBUIyjHk,388 +django/db/__init__.py,sha256=CBuehITrkVMn02P63M0GY1MnZuC0GefA1MAoxlVo3b4,1533 +django/db/__pycache__/__init__.cpython-310.pyc,, +django/db/__pycache__/transaction.cpython-310.pyc,, +django/db/__pycache__/utils.cpython-310.pyc,, +django/db/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/__pycache__/__init__.cpython-310.pyc,, +django/db/backends/__pycache__/ddl_references.cpython-310.pyc,, +django/db/backends/__pycache__/signals.cpython-310.pyc,, +django/db/backends/__pycache__/utils.cpython-310.pyc,, +django/db/backends/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/base/__pycache__/__init__.cpython-310.pyc,, +django/db/backends/base/__pycache__/base.cpython-310.pyc,, +django/db/backends/base/__pycache__/client.cpython-310.pyc,, +django/db/backends/base/__pycache__/creation.cpython-310.pyc,, +django/db/backends/base/__pycache__/features.cpython-310.pyc,, +django/db/backends/base/__pycache__/introspection.cpython-310.pyc,, +django/db/backends/base/__pycache__/operations.cpython-310.pyc,, +django/db/backends/base/__pycache__/schema.cpython-310.pyc,, +django/db/backends/base/__pycache__/validation.cpython-310.pyc,, +django/db/backends/base/base.py,sha256=MHWLJhA7-1OyOs9-L0CQLBoH8_Iw1_VOTZw1xJSP6GU,28603 +django/db/backends/base/client.py,sha256=90Ffs6zZYCli3tJjwsPH8TItZ8tz1Pp-zhQa-EpsNqc,937 +django/db/backends/base/creation.py,sha256=AFQL_xz48jYzZTdHl3r3d_2v_xGyJMMENXmEUcbRv48,15847 +django/db/backends/base/features.py,sha256=ijP81ZHfZPlUMKVHTjNxZ3IRWmwPdy4hpE6CxJSKZk8,15914 +django/db/backends/base/introspection.py,sha256=CJG3MUmR-wJpNm-gNWuMRMNknWp3ZdZ9DRUbKxcnwuo,7900 +django/db/backends/base/operations.py,sha256=j3OSjD1goRgNntZGnQ15-A7IKj9vV6rFrp338uqNLS8,30229 +django/db/backends/base/schema.py,sha256=mOcKOflaMQgRQ0I6IrOwbN6ET74F1rvm6Davghr3jYY,82021 +django/db/backends/base/validation.py,sha256=2zpI11hyUJr0I0cA1xmvoFwQVdZ-7_1T2F11TpQ0Rkk,1067 +django/db/backends/ddl_references.py,sha256=dUlkGLGdjOnacR_8PaweA5XSwgD8wojMTJUVOCOKVLY,8619 +django/db/backends/dummy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/dummy/__pycache__/__init__.cpython-310.pyc,, +django/db/backends/dummy/__pycache__/base.cpython-310.pyc,, +django/db/backends/dummy/__pycache__/features.cpython-310.pyc,, +django/db/backends/dummy/base.py,sha256=im1_ubNhbY6cP8yNntqDr6Hlg5d5c_5r5IUCPCDfv28,2181 +django/db/backends/dummy/features.py,sha256=Pg8_jND-aoJomTaBBXU3hJEjzpB-rLs6VwpoKkOYuQg,181 +django/db/backends/mysql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/mysql/__pycache__/__init__.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/base.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/client.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/compiler.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/creation.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/features.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/introspection.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/operations.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/schema.cpython-310.pyc,, +django/db/backends/mysql/__pycache__/validation.cpython-310.pyc,, +django/db/backends/mysql/base.py,sha256=QgYv7BTHG1vGAGo6kQA27ihnyPhlxLzOPf3pBLuxpME,16861 +django/db/backends/mysql/client.py,sha256=IpwdI-H5r-QUoM8ZvPXHykNxKb2wevcUx8HvxTn_otU,2988 +django/db/backends/mysql/compiler.py,sha256=SPhbsHi8x_r4ZG8U7-Tnqr6F0G4rsxOyJjITKPHz3zE,3333 +django/db/backends/mysql/creation.py,sha256=8BV8YHk3qEq555nH3NHukxpZZgxtvXFvkv7XvkRlhKA,3449 +django/db/backends/mysql/features.py,sha256=IgbPUyEdeaUjQyo-_gbxMOtnkC-QCn1CPBe21CMRSwU,11998 +django/db/backends/mysql/introspection.py,sha256=AY06ZLynWypYTEGAsR-t4F9Uj7Fb0Hqi-QNW1YwRnEQ,14498 +django/db/backends/mysql/operations.py,sha256=R6dNA_IV4_o4e2gq8kh2kfqu4yoYoZVw_LGrqwNBxtQ,18437 +django/db/backends/mysql/schema.py,sha256=gT0N65db0omSMm4w09CccIN44cPbXzocL0ptzbUpWtc,11259 +django/db/backends/mysql/validation.py,sha256=XERj0lPEihKThPvzoVJmNpWdPOun64cRF3gHv-zmCGk,3093 +django/db/backends/oracle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/oracle/__pycache__/__init__.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/base.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/client.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/creation.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/features.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/functions.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/introspection.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/operations.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/oracledb_any.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/schema.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/utils.cpython-310.pyc,, +django/db/backends/oracle/__pycache__/validation.cpython-310.pyc,, +django/db/backends/oracle/base.py,sha256=Cu9jrGmB_6GlRIJjagt584MnhxO-8aoMtiL1Dt4bE-0,24171 +django/db/backends/oracle/client.py,sha256=DfDURfno8Sek13M8r5S2t2T8VUutx2hBT9DZRfow9VQ,784 +django/db/backends/oracle/creation.py,sha256=yHymYOsth1y8jxiyP5k7MZQeatKw75XvTT3J88vNLkE,20840 +django/db/backends/oracle/features.py,sha256=vZVkuIvOFqadou2pxSyhjIHqIjGLaZvAYi0UmV75vts,8530 +django/db/backends/oracle/functions.py,sha256=2OoBYyY1Lb4B5hYbkRHjd8YY_artr3QeGu2hlojC-vc,812 +django/db/backends/oracle/introspection.py,sha256=MjjO-PqpcfiUd9WkLqiC8XGgbC4gocvymqQ1bh-ceKk,15474 +django/db/backends/oracle/operations.py,sha256=IVYHcknSUT0OEjnmmJV0yUFZTm-kDUuaJU97_7hGkBk,30008 +django/db/backends/oracle/oracledb_any.py,sha256=dZY337k3TH1JfZaXZR6HmDy6roolJrj50Sbv-27neFg,550 +django/db/backends/oracle/schema.py,sha256=M_Zuts3EQHIm966nK5rLIfxMYcNBc9i8QCePAdsBmKw,10700 +django/db/backends/oracle/utils.py,sha256=C9gumfPZAToaBg3HgsUoH5EU-_goM8ZrL_7VI5yw098,2753 +django/db/backends/oracle/validation.py,sha256=cq-Bvy5C0_rmkgng0SSQ4s74FKg2yTM1N782Gfz86nY,860 +django/db/backends/postgresql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/postgresql/__pycache__/__init__.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/base.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/client.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/creation.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/features.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/introspection.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/operations.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/psycopg_any.cpython-310.pyc,, +django/db/backends/postgresql/__pycache__/schema.cpython-310.pyc,, +django/db/backends/postgresql/base.py,sha256=1ztHLo0_MVteU_WoEOXoDWoDEDBfpmjHoNDzRQOKr6c,23486 +django/db/backends/postgresql/client.py,sha256=BxpiOYe2hzg4tWjPKHDJxa8zdr6S7CN9YiaOhTDJUOo,2044 +django/db/backends/postgresql/creation.py,sha256=pZYCzq893jcMd8jhnUH2suBaOC9LrkTtpBn9gdpqxTY,3886 +django/db/backends/postgresql/features.py,sha256=fkA6TruxChcZP2Q2r1fJTzXXIek57XKXIkhusWUphe4,6378 +django/db/backends/postgresql/introspection.py,sha256=0j4Y5ZAuSk8iaMbDBjUF9zHTcL3C5WibIiJygOvZMP8,11604 +django/db/backends/postgresql/operations.py,sha256=4wtKho3nrvigXJ1ymSmsJw1blPEhcRCjYAqeajd1iRE,15473 +django/db/backends/postgresql/psycopg_any.py,sha256=X2aU-MHfDNbXaKT2-2VC3mhiAVxYth_uMJPKoAPLsKQ,3885 +django/db/backends/postgresql/schema.py,sha256=TQM6fsyMssSEs5HiqoIL1hRaZAHB1b3Gg5bLYuTKEh8,14339 +django/db/backends/signals.py,sha256=Yl14KjYJijTt1ypIZirp90lS7UTJ8UogPFI_DwbcsSc,66 +django/db/backends/sqlite3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/db/backends/sqlite3/__pycache__/__init__.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/_functions.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/base.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/client.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/creation.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/features.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/introspection.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/operations.cpython-310.pyc,, +django/db/backends/sqlite3/__pycache__/schema.cpython-310.pyc,, +django/db/backends/sqlite3/_functions.py,sha256=4rwADvq4dJu8EAzUXPnrmN_lDcfg_Xf0w7DRHgj8faw,14559 +django/db/backends/sqlite3/base.py,sha256=osegQjtwLOGgblJCVfLNjzaJQ5br7hAC6i3GRZxtjto,15000 +django/db/backends/sqlite3/client.py,sha256=Eb_-P1w0aTbZGVNYkv7KA1ku5Il1N2RQov2lc3v0nho,321 +django/db/backends/sqlite3/creation.py,sha256=Ib9pfwA53G4wZpLZgh7EvdipoSdvhg-wxKSP2ZowwFM,6849 +django/db/backends/sqlite3/features.py,sha256=Fsqn-weI5SGOE4M7MfOtaDJhWUwaOMSzE_xOBVsfaJw,6295 +django/db/backends/sqlite3/introspection.py,sha256=tW6u4aGhbTUQ0AxK3xgJPU7weA9BGkBTXelFtWRh5ow,17551 +django/db/backends/sqlite3/operations.py,sha256=paIHeI57f7wImFr6sdt9EYLMPcK875Y3fp4LW-0H7jU,16880 +django/db/backends/sqlite3/schema.py,sha256=GuyAJRj5iunzQZturcnxHN7_BPtsqrsxMA8URFO0tAA,20215 +django/db/backends/utils.py,sha256=wFyQVfVs1AxR48yQIVQ-ll1sC9GUeCxdP-aavYL0lrs,11137 +django/db/migrations/__init__.py,sha256=Oa4RvfEa6hITCqdcqwXYC66YknFKyluuy7vtNbSc-L4,97 +django/db/migrations/__pycache__/__init__.cpython-310.pyc,, +django/db/migrations/__pycache__/autodetector.cpython-310.pyc,, +django/db/migrations/__pycache__/exceptions.cpython-310.pyc,, +django/db/migrations/__pycache__/executor.cpython-310.pyc,, +django/db/migrations/__pycache__/graph.cpython-310.pyc,, +django/db/migrations/__pycache__/loader.cpython-310.pyc,, +django/db/migrations/__pycache__/migration.cpython-310.pyc,, +django/db/migrations/__pycache__/optimizer.cpython-310.pyc,, +django/db/migrations/__pycache__/questioner.cpython-310.pyc,, +django/db/migrations/__pycache__/recorder.cpython-310.pyc,, +django/db/migrations/__pycache__/serializer.cpython-310.pyc,, +django/db/migrations/__pycache__/state.cpython-310.pyc,, +django/db/migrations/__pycache__/utils.cpython-310.pyc,, +django/db/migrations/__pycache__/writer.cpython-310.pyc,, +django/db/migrations/autodetector.py,sha256=PTK23c8g2cQ5o5urT5gJpSJnrKLPKba_K2AhxHEuIXY,84048 +django/db/migrations/exceptions.py,sha256=SotQF7ZKgJpd9KN-gKDL8wCJAKSEgbZToM_vtUAnqHw,1204 +django/db/migrations/executor.py,sha256=jx9J5WdS0X48UqxHkWKd2JYBUxds46Gn03ZZNAo8pTE,19038 +django/db/migrations/graph.py,sha256=vt7Pc45LuiXR8aRCrXP5Umm6VDCCTs2LAr5NXh-rxcE,13055 +django/db/migrations/loader.py,sha256=cVeJi7PwDc2Nxzgg3K_CrhK9H2HAtaXb1tG1PyDcSEA,16877 +django/db/migrations/migration.py,sha256=itZASGGepJYCY2Uv5AmLrxOgjEH1tycGV0bv3EtRjQE,9767 +django/db/migrations/operations/__init__.py,sha256=qIOjQYpm3tOtj1jsJVSpzxDH_kYAWk8MOGj-R3WYvJc,964 +django/db/migrations/operations/__pycache__/__init__.cpython-310.pyc,, +django/db/migrations/operations/__pycache__/base.cpython-310.pyc,, +django/db/migrations/operations/__pycache__/fields.cpython-310.pyc,, +django/db/migrations/operations/__pycache__/models.cpython-310.pyc,, +django/db/migrations/operations/__pycache__/special.cpython-310.pyc,, +django/db/migrations/operations/base.py,sha256=IPBwWk-8j44IZw6FvXC9RVXqecbF0OhK-R_LMYwhNd4,5562 +django/db/migrations/operations/fields.py,sha256=OAGpT0youYLL7LcxcpO-N5fhzGlx0r_wK1ZitM7qmAE,12900 +django/db/migrations/operations/models.py,sha256=RvX62tOl3DaYktF2qJbpHLO2mKnlRd6ai3umt7qFB6Y,44385 +django/db/migrations/operations/special.py,sha256=CMLfqR4rO8AhDMNscOXjblKuvNA3vWFzg-6M_7xZnX4,7966 +django/db/migrations/optimizer.py,sha256=c0JZ5FGltD_gmh20e5SR6A21q_De6rUKfkAJKwmX4Ks,3255 +django/db/migrations/questioner.py,sha256=HVtcEBRxQwL9JrQO5r1bVIZIZUFBfs9L-siuDQERZh0,13330 +django/db/migrations/recorder.py,sha256=HviA3DydJPqpE8gowv1lAnIdLMTSRpRXuLFn53r-Q1Y,3827 +django/db/migrations/serializer.py,sha256=oPznMQhNezYzUb-R1U79iIAp4DtZocFvjK--B0Bbyv4,14133 +django/db/migrations/state.py,sha256=W46D-rTkF2bLonDKgg6ucEyGAY-TEU2W4Gp5R43aubY,40750 +django/db/migrations/utils.py,sha256=pdrzumGDhgytc5KVWdZov7cQtBt3jRASLqbmBxSRSvg,4401 +django/db/migrations/writer.py,sha256=OWRUgtTrBLndIUeNxL3-6gI5ORPdIWG_Jy9Iluizs0M,11613 +django/db/models/__init__.py,sha256=Br4FzeU4EiGShlasR9xYwaXVXfVUtnbsrp7kEkWo-QQ,2992 +django/db/models/__pycache__/__init__.cpython-310.pyc,, +django/db/models/__pycache__/aggregates.cpython-310.pyc,, +django/db/models/__pycache__/base.cpython-310.pyc,, +django/db/models/__pycache__/constants.cpython-310.pyc,, +django/db/models/__pycache__/constraints.cpython-310.pyc,, +django/db/models/__pycache__/deletion.cpython-310.pyc,, +django/db/models/__pycache__/enums.cpython-310.pyc,, +django/db/models/__pycache__/expressions.cpython-310.pyc,, +django/db/models/__pycache__/indexes.cpython-310.pyc,, +django/db/models/__pycache__/lookups.cpython-310.pyc,, +django/db/models/__pycache__/manager.cpython-310.pyc,, +django/db/models/__pycache__/options.cpython-310.pyc,, +django/db/models/__pycache__/query.cpython-310.pyc,, +django/db/models/__pycache__/query_utils.cpython-310.pyc,, +django/db/models/__pycache__/signals.cpython-310.pyc,, +django/db/models/__pycache__/utils.cpython-310.pyc,, +django/db/models/aggregates.py,sha256=IRMdrM8j5t5R2Bpi-mStifRtBuaIyicymG-cSNgslCE,7663 +django/db/models/base.py,sha256=URExUInt4Syds57HC57enWrZihbp-Sz4c_yPFT8dY8U,97088 +django/db/models/constants.py,sha256=ndnj9TOTKW0p4YcIPLOLEbsH6mOgFi6B1-rIzr_iwwU,210 +django/db/models/constraints.py,sha256=xSb5vVkGuMg4-8T2u7goQ9I8AH6sk5HZR2NdoKGdGtM,27772 +django/db/models/deletion.py,sha256=-d11zKahydG3NuyeM-HZLp1ZE9HWvZbMK8DEE0PzV5Q,21003 +django/db/models/enums.py,sha256=mgBBX7bFzuPYgkPR9hvy4FZOtbZE5gfbhHWsvrIhONQ,3527 +django/db/models/expressions.py,sha256=pEEBlVnK8DVeM1kdMksnyGaLGTxWL8oXY6zfPmc4caY,72565 +django/db/models/fields/__init__.py,sha256=zuout4tQcpK99Pc5JfLRM9jE8Xi_G3r5vcgaN15_-zQ,98305 +django/db/models/fields/__pycache__/__init__.cpython-310.pyc,, +django/db/models/fields/__pycache__/files.cpython-310.pyc,, +django/db/models/fields/__pycache__/generated.cpython-310.pyc,, +django/db/models/fields/__pycache__/json.cpython-310.pyc,, +django/db/models/fields/__pycache__/mixins.cpython-310.pyc,, +django/db/models/fields/__pycache__/proxy.cpython-310.pyc,, +django/db/models/fields/__pycache__/related.cpython-310.pyc,, +django/db/models/fields/__pycache__/related_descriptors.cpython-310.pyc,, +django/db/models/fields/__pycache__/related_lookups.cpython-310.pyc,, +django/db/models/fields/__pycache__/reverse_related.cpython-310.pyc,, +django/db/models/fields/files.py,sha256=nLiRiY9bcVEwE8s5J6yxo2HqN3HreDHPDNHfaW3qLrs,20206 +django/db/models/fields/generated.py,sha256=hzCBUpS1fvoimEI_D7WtoLk6AryGw0TRdyk-UkYBDJE,7655 +django/db/models/fields/json.py,sha256=V51uZaINbGOGe9aoQMcOihpGufzJdTkvQGu00LXtRJA,22778 +django/db/models/fields/mixins.py,sha256=8HrdKIq0eG9vVstJwkK-2g2wdwyvcEVWBzP3S0hzeWY,2478 +django/db/models/fields/proxy.py,sha256=eFHyl4gRTqocjgd6nID9UlQuOIppBA57Vcr71UReTAs,515 +django/db/models/fields/related.py,sha256=HzwQIVSyRQp8smW_8ImQ-AKJt5vbJRvj3hkzF14poNo,76543 +django/db/models/fields/related_descriptors.py,sha256=7ztPstQcip5e-N7QT2BAXsAVXY5f6tnm3MFg7rxeCds,66832 +django/db/models/fields/related_lookups.py,sha256=qTe81CM5MVVxmn28jfaoTDPYgh_m4gHW7g_MyJVtrmo,7813 +django/db/models/fields/reverse_related.py,sha256=vfkd-rmEFGqwqhZKRur2KNbPvTF0L1-QYPuY3qn1aP4,12882 +django/db/models/functions/__init__.py,sha256=aglCm_JtzDYk2KmxubDN_78CGG3JCfRWnfJ74Oj5YJ4,2658 +django/db/models/functions/__pycache__/__init__.cpython-310.pyc,, +django/db/models/functions/__pycache__/comparison.cpython-310.pyc,, +django/db/models/functions/__pycache__/datetime.cpython-310.pyc,, +django/db/models/functions/__pycache__/math.cpython-310.pyc,, +django/db/models/functions/__pycache__/mixins.cpython-310.pyc,, +django/db/models/functions/__pycache__/text.cpython-310.pyc,, +django/db/models/functions/__pycache__/window.cpython-310.pyc,, +django/db/models/functions/comparison.py,sha256=2aZ9uj1WRWW1eaWVHzkW0IsQyTFYsl3DLfA2jIHXIoQ,8984 +django/db/models/functions/datetime.py,sha256=IxDj0X1IUkzbIFbyDmjQZ0PL7eIO2rMn1kU47JlSl1E,13614 +django/db/models/functions/math.py,sha256=NugCfaC8Y_VhpEr62HMeDX3O934NnuBPsk3mi5I_DmE,6140 +django/db/models/functions/mixins.py,sha256=UqpHYyF33JSEWYdggezTtWkrMkPKFEfW6enIkujzgaQ,2382 +django/db/models/functions/text.py,sha256=aBnl-5-l3qw8wa7hFIOcHCoUOLGtlk6SFFY4PYZGMtU,11528 +django/db/models/functions/window.py,sha256=g4fryay1tLQCpZRfmPQhrTiuib4RvPqtwFdodlLbi98,2841 +django/db/models/indexes.py,sha256=HYCD06Is7-f0aIGkXdWNeEXzfBoSY6ECNCiVbe8tlwk,11935 +django/db/models/lookups.py,sha256=0kFrvPOg9deZ2NN-vSNGsB55K1DyKH5770NiX1nN1gw,27407 +django/db/models/manager.py,sha256=n97p4q0ttwmI1XcF9dAl8Pfg5Zs8iudufhWebQ7Xau0,6866 +django/db/models/options.py,sha256=Q7uyChb_iUw-L9C8QNFsHi6jSRn4FqZulpxSXXqooNA,39039 +django/db/models/query.py,sha256=rdmIkedhXBaHqGvf00I3YpbuPHcCiLDpIjxle-ZU25Q,105536 +django/db/models/query_utils.py,sha256=w3x-mS-FFnF4GXkXr4_Otgv5Nst9skYNC1Hmj5pycwc,17266 +django/db/models/signals.py,sha256=mG6hxVWugr_m0ugTU2XAEMiqlu2FJ4CBuGa34dLJvEQ,1622 +django/db/models/sql/__init__.py,sha256=BGZ1GSn03dTOO8PYx6vF1-ImE3g1keZsQ74AHJoQwmQ,241 +django/db/models/sql/__pycache__/__init__.cpython-310.pyc,, +django/db/models/sql/__pycache__/compiler.cpython-310.pyc,, +django/db/models/sql/__pycache__/constants.cpython-310.pyc,, +django/db/models/sql/__pycache__/datastructures.cpython-310.pyc,, +django/db/models/sql/__pycache__/query.cpython-310.pyc,, +django/db/models/sql/__pycache__/subqueries.cpython-310.pyc,, +django/db/models/sql/__pycache__/where.cpython-310.pyc,, +django/db/models/sql/compiler.py,sha256=ny4zohi_eSFtYhri7eRJiSSgdyDV26_xpKPIOfubKqM,89920 +django/db/models/sql/constants.py,sha256=usb1LSh9WNGPsurWAGppDkV0wYJJg5GEegKibQdS718,533 +django/db/models/sql/datastructures.py,sha256=tDcVdWqVZgpzcMgEVBVBNyR21-UCoV2bd6o0AkgeUGs,8271 +django/db/models/sql/query.py,sha256=hA2k3gQUAdvWqD0V5DuhvupGMkTqzzbLjoptJqCArEw,116561 +django/db/models/sql/subqueries.py,sha256=0UgV3H-aG3178weqpp_hfQkwgUxm5t3LDlSKGAqmaU8,6029 +django/db/models/sql/where.py,sha256=Vi98aGtuFwccTDp9LJ5AtQiitnrZyF8VdRlGqsdIKBg,13049 +django/db/models/utils.py,sha256=vzojL0uUQHuOm2KxTJ19DHGnQ1pBXbnWaTlzR0vVimI,2182 +django/db/transaction.py,sha256=U9O5DF_Eg8SG1dvcn_oFimU-ONaXKoHdDsXl0ZYtjFM,12504 +django/db/utils.py,sha256=RKtSSyVJmM5__SAs1pY0njX6hLVRy1WIBggYo1zP4RI,9279 +django/dispatch/__init__.py,sha256=qP203zNwjaolUFnXLNZHnuBn7HNzyw9_JkODECRKZbc,286 +django/dispatch/__pycache__/__init__.cpython-310.pyc,, +django/dispatch/__pycache__/dispatcher.cpython-310.pyc,, +django/dispatch/dispatcher.py,sha256=OHaB-_kl1GeVwKh_bIMbHNFmH2yVN4qfSQz2aAVXfME,17777 +django/dispatch/license.txt,sha256=VABMS2BpZOvBY68W0EYHwW5Cj4p4oCb-y1P3DAn0qU8,1743 +django/forms/__init__.py,sha256=S6ckOMmvUX-vVST6AC-M8BzsfVQwuEUAdHWabMN-OGI,368 +django/forms/__pycache__/__init__.cpython-310.pyc,, +django/forms/__pycache__/boundfield.cpython-310.pyc,, +django/forms/__pycache__/fields.cpython-310.pyc,, +django/forms/__pycache__/forms.cpython-310.pyc,, +django/forms/__pycache__/formsets.cpython-310.pyc,, +django/forms/__pycache__/models.cpython-310.pyc,, +django/forms/__pycache__/renderers.cpython-310.pyc,, +django/forms/__pycache__/utils.cpython-310.pyc,, +django/forms/__pycache__/widgets.cpython-310.pyc,, +django/forms/boundfield.py,sha256=2skied44gaSV-e9TSB-iP1EVyQN_5KsOcVd30vHggmc,13029 +django/forms/fields.py,sha256=POauofCdgP4jxTeHNt9xtE0CES1ZAbi86wqEWSMjLqo,49511 +django/forms/forms.py,sha256=z43KFrTN97zgAXoybZeVafVWsRNZGHB6cwNLRUoDK9g,15767 +django/forms/formsets.py,sha256=ps-7Og-757fKSgPT6xoJJ8UFzYnIbJuZ0_rKEdZzRO4,21190 +django/forms/jinja2/django/forms/attrs.html,sha256=TD0lNK-ohDjb_bWg1Kosdn4kU01B_M0_C19dp9kYJqo,165 +django/forms/jinja2/django/forms/div.html,sha256=WaOqY1hQe1l6vnc3TdlBmQnQRsofIoNDvGAfg2-X1lU,514 +django/forms/jinja2/django/forms/errors/dict/default.html,sha256=1DLQf0Czjr5V4cghQOyJr3v34G2ClF0RAOc-H7GwXUE,49 +django/forms/jinja2/django/forms/errors/dict/text.txt,sha256=E7eqEWc6q2_kLyc9k926klRe2mPp4O2VqG-2_MliYaU,113 +django/forms/jinja2/django/forms/errors/dict/ul.html,sha256=65EYJOqDAn7-ca7FtjrcdbXygLE-RA_IJQTltO7qS1Q,137 +django/forms/jinja2/django/forms/errors/list/default.html,sha256=q41d4u6XcxDL06gRAVdU021kM_iFLIt5BuYa-HATOWE,49 +django/forms/jinja2/django/forms/errors/list/text.txt,sha256=VVbLrGMHcbs1hK9-2v2Y6SIoH9qRMtlKzM6qzLVAFyE,52 +django/forms/jinja2/django/forms/errors/list/ul.html,sha256=AwXfGxnos6llX44dhxMChz6Kk6VStAJiNzUpSLN8_y4,119 +django/forms/jinja2/django/forms/field.html,sha256=-3Ta35bjK6x9yOMn9it5RJJOVJlBXrKfZobcNV02PDY,573 +django/forms/jinja2/django/forms/formsets/div.html,sha256=uq10XZdQ1WSt6kJFoKxtluvnCKE4L3oYcLkPraF4ovs,86 +django/forms/jinja2/django/forms/formsets/p.html,sha256=HzEX7XdSDt9owDkYJvBdFIETeU9RDbXc1e4R2YEt6ec,84 +django/forms/jinja2/django/forms/formsets/table.html,sha256=L9B4E8lR0roTr7dBoMiUlekuMbO-3y4_b4NHm6Oy_Vg,88 +django/forms/jinja2/django/forms/formsets/ul.html,sha256=ANvMWb6EeFAtLPDTr61IeI3-YHtAYZCT_zmm-_y-5Oc,85 +django/forms/jinja2/django/forms/label.html,sha256=trXo6yF4ezDv-y-8y1yJnP7sSByw0TTppgZLcrmfR6M,147 +django/forms/jinja2/django/forms/p.html,sha256=NsTxSuqV58iOT7_3EvWRkY1zVYCdhzLBrtde1V47QTA,740 +django/forms/jinja2/django/forms/table.html,sha256=RoJweFtjCPwkFhAAlPT7i_sSCDxo1xMs3NH0uFIla20,881 +django/forms/jinja2/django/forms/ul.html,sha256=svUpAmU5EhhGVHKs8qXixJN-3SzPft8CXoG3-4gegs8,779 +django/forms/jinja2/django/forms/widgets/attrs.html,sha256=_J2P-AOpHFhIwaqCNcrJFxEY4s-KPdy0Wcq0KlarIG0,172 +django/forms/jinja2/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/jinja2/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/jinja2/django/forms/widgets/clearable_file_input.html,sha256=1dv4xtik6um_mzK1skURF_n4G1t1yluziQu2UWa6fX8,559 +django/forms/jinja2/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/input.html,sha256=u12fZde-ugkEAAkPAtAfSxwGQmYBkXkssWohOUs-xoE,172 +django/forms/jinja2/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219 +django/forms/jinja2/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54 +django/forms/jinja2/django/forms/widgets/multiple_input.html,sha256=voM3dqu69R0Z202TmCgMFM6toJp7FgFPVvbWY9WKEAU,395 +django/forms/jinja2/django/forms/widgets/multiwidget.html,sha256=pr-MxRyucRxn_HvBGZvbc3JbFyrAolbroxvA4zmPz2Y,86 +django/forms/jinja2/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/jinja2/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/jinja2/django/forms/widgets/select.html,sha256=ESyDzbLTtM7-OG34EuSUnvxCtyP5IrQsZh0jGFrIdEA,365 +django/forms/jinja2/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/jinja2/django/forms/widgets/select_option.html,sha256=tNa1D3G8iy2ZcWeKyI-mijjDjRmMaqSo-jnAR_VS3Qc,110 +django/forms/jinja2/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/jinja2/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/jinja2/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145 +django/forms/jinja2/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/jinja2/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/models.py,sha256=hzd8IFjIP8qauQQocI_Uf3jF0jnZkSOxDDZ0OfWo2mI,61209 +django/forms/renderers.py,sha256=48Xahe1sV49TVX_A3aKwZqMbGgC7jd0LkZ1FX2vgU_k,3203 +django/forms/templates/django/forms/attrs.html,sha256=UFPgCXXCAkbumxZE1NM-aJVE4VCe2RjCrHLNseibv3I,165 +django/forms/templates/django/forms/div.html,sha256=PgJSGlEXXLmh58WLH49cxvUaWI8bxE0ioTf-MY89uF8,525 +django/forms/templates/django/forms/errors/dict/default.html,sha256=tFtwfHlkOY_XaKjoUPsWshiSWT5olxm3kDElND-GQtQ,48 +django/forms/templates/django/forms/errors/dict/text.txt,sha256=E7eqEWc6q2_kLyc9k926klRe2mPp4O2VqG-2_MliYaU,113 +django/forms/templates/django/forms/errors/dict/ul.html,sha256=65EYJOqDAn7-ca7FtjrcdbXygLE-RA_IJQTltO7qS1Q,137 +django/forms/templates/django/forms/errors/list/default.html,sha256=Kmx1nwrzQ49MaP80Gd17GC5TQH4B7doWa3I3azXvoHA,48 +django/forms/templates/django/forms/errors/list/text.txt,sha256=VVbLrGMHcbs1hK9-2v2Y6SIoH9qRMtlKzM6qzLVAFyE,52 +django/forms/templates/django/forms/errors/list/ul.html,sha256=5kt2ckbr3esK0yoPzco2EB0WzS8MvGzau_rAcomB508,118 +django/forms/templates/django/forms/field.html,sha256=8XAHg-I3OKmLS4EGQT_zQHJKLL9z6KRPR8ehmcxsDvg,568 +django/forms/templates/django/forms/formsets/div.html,sha256=lmIRSTBuGczEd2lj-UfDS9zAlVv8ntpmRo-boDDRwEg,84 +django/forms/templates/django/forms/formsets/p.html,sha256=qkoHKem-gb3iqvTtROBcHNJqI-RoUwLHUvJC6EoHg-I,82 +django/forms/templates/django/forms/formsets/table.html,sha256=N0G9GETzJfV16wUesvdrNMDwc8Fhh6durrmkHUPeDZY,86 +django/forms/templates/django/forms/formsets/ul.html,sha256=bGQpjbpKwMahyiIP4-2p3zg3yJP-pN1A48yCqhHdw7o,83 +django/forms/templates/django/forms/label.html,sha256=0bJCdIj8G5e2Gaw3QUR0ZMdwVavC80YwxS5E0ShkzmE,122 +django/forms/templates/django/forms/p.html,sha256=NhXyxIJCngGT7xK2nA4_vpEWWiaIcIUKGVOmMcnjRy4,751 +django/forms/templates/django/forms/table.html,sha256=ELTypjKfqSluAJk6-no0m2_Rve3c6HJoWV3hQ_xfnto,892 +django/forms/templates/django/forms/ul.html,sha256=vPmRsKnLcofRZJq23XHxnBs8PLs6jD4_Pw1ULbtSxPg,790 +django/forms/templates/django/forms/widgets/attrs.html,sha256=9ylIPv5EZg-rx2qPLgobRkw6Zq_WJSM8kt106PpSYa0,172 +django/forms/templates/django/forms/widgets/checkbox.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/checkbox_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/templates/django/forms/widgets/checkbox_select.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/templates/django/forms/widgets/clearable_file_input.html,sha256=1dv4xtik6um_mzK1skURF_n4G1t1yluziQu2UWa6fX8,559 +django/forms/templates/django/forms/widgets/date.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/datetime.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/email.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/file.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/hidden.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/input.html,sha256=dwzzrLocGLZQIaGe-_X8k7z87jV6AFtn28LilnUnUH0,189 +django/forms/templates/django/forms/widgets/input_option.html,sha256=PyRNn9lmE9Da0-RK37zW4yJZUSiJWgIPCU9ou5oUC28,219 +django/forms/templates/django/forms/widgets/multiple_hidden.html,sha256=T54-n1ZeUlTd-svM3C4tLF42umKM0R5A7fdfsdthwkA,54 +django/forms/templates/django/forms/widgets/multiple_input.html,sha256=jxEWRqV32a73340eQ0uIn672Xz5jW9qm3V_srByLEd0,426 +django/forms/templates/django/forms/widgets/multiwidget.html,sha256=slk4AgCdXnVmFvavhjVcsza0quTOP2LG50D8wna0dw0,117 +django/forms/templates/django/forms/widgets/number.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/password.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/radio.html,sha256=-ob26uqmvrEUMZPQq6kAqK4KBk2YZHTCWWCM6BnaL0w,57 +django/forms/templates/django/forms/widgets/radio_option.html,sha256=U2dFtAXvOn_eK4ok0oO6BwKE-3-jozJboGah_PQFLVM,55 +django/forms/templates/django/forms/widgets/select.html,sha256=7U0RzjeESG87ENzQjPRUF71gvKvGjVVvXcpsW2-BTR4,384 +django/forms/templates/django/forms/widgets/select_date.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/templates/django/forms/widgets/select_option.html,sha256=N_psd0JYCqNhx2eh2oyvkF2KU2dv7M9mtMw_4BLYq8A,127 +django/forms/templates/django/forms/widgets/splitdatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/templates/django/forms/widgets/splithiddendatetime.html,sha256=AzaPLlNLg91qkVQwwtAJxwOqDemrtt_btSkWLpboJDs,54 +django/forms/templates/django/forms/widgets/text.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/textarea.html,sha256=Av1Y-hpXUU2AjrhnUivgZFKNBLdwCSZSeuSmCqmCkDA,145 +django/forms/templates/django/forms/widgets/time.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/templates/django/forms/widgets/url.html,sha256=fXpbxMzAdbv_avfWC5464gD2jFng931Eq7vzbzy1-yA,48 +django/forms/utils.py,sha256=Aqd1Sz6wHl7SaueN7hzE1-XqhHvy9wOCWn_TSRlqLMY,7888 +django/forms/widgets.py,sha256=0xT2Cr0DYrf8Gs4wvGvyjSHWB2GtmvpmS5_Cz8Z7Qf0,39470 +django/http/__init__.py,sha256=uVUz0ov-emc29hbD78QKKka_R1L4mpDDPhkyfkx4jzQ,1200 +django/http/__pycache__/__init__.cpython-310.pyc,, +django/http/__pycache__/cookie.cpython-310.pyc,, +django/http/__pycache__/multipartparser.cpython-310.pyc,, +django/http/__pycache__/request.cpython-310.pyc,, +django/http/__pycache__/response.cpython-310.pyc,, +django/http/cookie.py,sha256=t7yGORGClUnCYVKQqyLBlEYsxQLLHn9crsMSWqK_Eic,679 +django/http/multipartparser.py,sha256=mrVXa2yenSbSOOlhIrgbfWS-3qlhvVtDEflSgTAKtsk,27830 +django/http/request.py,sha256=SPKLZprCQ1-tdSQauspS9DeDjS97XCposUg6JQLDk8w,25750 +django/http/response.py,sha256=62Xj0NhLfYR_V_UHuLEddNKif-O55RHgZhan5D1TSxo,25348 +django/middleware/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/middleware/__pycache__/__init__.cpython-310.pyc,, +django/middleware/__pycache__/cache.cpython-310.pyc,, +django/middleware/__pycache__/clickjacking.cpython-310.pyc,, +django/middleware/__pycache__/common.cpython-310.pyc,, +django/middleware/__pycache__/csrf.cpython-310.pyc,, +django/middleware/__pycache__/gzip.cpython-310.pyc,, +django/middleware/__pycache__/http.cpython-310.pyc,, +django/middleware/__pycache__/locale.cpython-310.pyc,, +django/middleware/__pycache__/security.cpython-310.pyc,, +django/middleware/cache.py,sha256=KOlg-Knjx_17KtXr-vx2DEpWvpzojk3yFUSsMHUIYo4,8487 +django/middleware/clickjacking.py,sha256=rIm2VlbblLWrMTRYJ1JBIui5xshAM-2mpyJf989xOgY,1724 +django/middleware/common.py,sha256=ZXRbyYb2l71FRhVYV8RK_APZw9qVVHQSzLq6Ip80mFo,7666 +django/middleware/csrf.py,sha256=3wo10zy9uLq1P8dF8740-rN6gbKmEjDBDlTjX9K3M-Q,19489 +django/middleware/gzip.py,sha256=jsJeYv0-A4iD6-1Pd3Hehl2ZtshpE4WeBTei-4PwciA,2945 +django/middleware/http.py,sha256=RqXN9Kp6GEh8j_ub7YXRi6W2_CKZTZEyAPpFUzeNPBs,1616 +django/middleware/locale.py,sha256=CV8aerSUWmO6cJQ6IrD5BzT3YlOxYNIqFraCqr8DoY4,3442 +django/middleware/security.py,sha256=yqawglqNcPrITIUvQhSpn3BD899It4fhyOyJCTImlXE,2599 +django/shortcuts.py,sha256=AqabKkXfFofMyVAbkYGBZcUMkkiySRu0-CIembfO6cA,6293 +django/template/__init__.py,sha256=-hvAhcRO8ydLdjTJJFr6LYoBVCsJq561ebRqE9kYBJs,1845 +django/template/__pycache__/__init__.cpython-310.pyc,, +django/template/__pycache__/autoreload.cpython-310.pyc,, +django/template/__pycache__/base.cpython-310.pyc,, +django/template/__pycache__/context.cpython-310.pyc,, +django/template/__pycache__/context_processors.cpython-310.pyc,, +django/template/__pycache__/defaultfilters.cpython-310.pyc,, +django/template/__pycache__/defaulttags.cpython-310.pyc,, +django/template/__pycache__/engine.cpython-310.pyc,, +django/template/__pycache__/exceptions.cpython-310.pyc,, +django/template/__pycache__/library.cpython-310.pyc,, +django/template/__pycache__/loader.cpython-310.pyc,, +django/template/__pycache__/loader_tags.cpython-310.pyc,, +django/template/__pycache__/response.cpython-310.pyc,, +django/template/__pycache__/smartif.cpython-310.pyc,, +django/template/__pycache__/utils.cpython-310.pyc,, +django/template/autoreload.py,sha256=hBanYQNDNEdgpty89I2mP_bxD-MyaeXWRmgX3K6a8Zg,2063 +django/template/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/template/backends/__pycache__/__init__.cpython-310.pyc,, +django/template/backends/__pycache__/base.cpython-310.pyc,, +django/template/backends/__pycache__/django.cpython-310.pyc,, +django/template/backends/__pycache__/dummy.cpython-310.pyc,, +django/template/backends/__pycache__/jinja2.cpython-310.pyc,, +django/template/backends/__pycache__/utils.cpython-310.pyc,, +django/template/backends/base.py,sha256=IniOWzwfJHhrg0azO55fhZ3d1cghNjvsrgaMkV7o6x4,2801 +django/template/backends/django.py,sha256=wbOUhTVQyz2HvrTVG1GJUknDPJtuBFDuXbm15xf7jO4,5963 +django/template/backends/dummy.py,sha256=M62stG_knf7AdVp42ZWWddkNv6g6ck_sc1nRR6Sc_xA,1751 +django/template/backends/jinja2.py,sha256=U9WBznoElT-REbITG7DnZgR7SA_Awf1gWS9vc0yrEfs,4036 +django/template/backends/utils.py,sha256=z5X_lxKa9qL4KFDVeai-FmsewU3KLgVHO8y-gHLiVts,424 +django/template/base.py,sha256=NT8kiQUNjRuSDOJTW9ez_TEsBE2OESRM6h6yj6aqH28,40582 +django/template/context.py,sha256=Ztm5fvpHtdLVy7Dc7x5o8iZD3DtQBR7okocbKPpezYA,9353 +django/template/context_processors.py,sha256=PMIuGUE1iljf5L8oXggIdvvFOhCLJpASdwd39BMdjBE,2480 +django/template/defaultfilters.py,sha256=BxaTQcUOmE4C_-FLhCQkATQS0S0z7jGfSaouGPl3T5A,28438 +django/template/defaulttags.py,sha256=rg8MynL_3R2LzK9wGCuSdf2a_ynVOiC7bB5pcty8rh8,49678 +django/template/engine.py,sha256=gpk2HUxFfxVhw5onriW1uHVAec6JhVHqMcObNESXwO4,7773 +django/template/exceptions.py,sha256=rqG3_qZq31tUHbmtZD-MIu0StChqwaFejFFpR4u7th4,1342 +django/template/library.py,sha256=f_7-FMZRxhyhWdZMd4rGVYBnPoP8ZCPu5m-FSVoz_3s,13359 +django/template/loader.py,sha256=PVFUUtC5WgiRVVTilhQ6NFZnvjly6sP9s7anFmMoKdo,2054 +django/template/loader_tags.py,sha256=yGu7UOutGgzM_60RmNQhFL5Ctuho6_IuIM1sIzENgrc,13119 +django/template/loaders/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/template/loaders/__pycache__/__init__.cpython-310.pyc,, +django/template/loaders/__pycache__/app_directories.cpython-310.pyc,, +django/template/loaders/__pycache__/base.cpython-310.pyc,, +django/template/loaders/__pycache__/cached.cpython-310.pyc,, +django/template/loaders/__pycache__/filesystem.cpython-310.pyc,, +django/template/loaders/__pycache__/locmem.cpython-310.pyc,, +django/template/loaders/app_directories.py,sha256=sQpVXKYpnKr9Rl1YStNca-bGIQHcOkSnmm1l2qRGFVE,312 +django/template/loaders/base.py,sha256=Y5V4g0ly9GuNe7BQxaJSMENJnvxzXJm7XhSTxzfFM0s,1636 +django/template/loaders/cached.py,sha256=bDwkWYPgbvprU_u9f9w9oNYpSW_j9b7so_mlKzp9-N4,3716 +django/template/loaders/filesystem.py,sha256=f4silD7WWhv3K9QySMgW7dlGGNwwYAcHCMSTFpwiiXY,1506 +django/template/loaders/locmem.py,sha256=t9p0GYF2VHf4XG6Gggp0KBmHkdIuSKuLdiVXMVb2iHs,672 +django/template/response.py,sha256=UAU-aM7mn6cbGOIJuurn4EE5ITdcAqSFgKD5RXFms4w,5584 +django/template/smartif.py,sha256=TLbvSZa_M4B80M2X108FK2TFjHoA8RG9bfxB0PLKNck,6410 +django/template/utils.py,sha256=c9cJRfmBXs-41xa8KkZiLkeqUAbd-8elKc_7WdnI3G0,3626 +django/templatetags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/templatetags/__pycache__/__init__.cpython-310.pyc,, +django/templatetags/__pycache__/cache.cpython-310.pyc,, +django/templatetags/__pycache__/i18n.cpython-310.pyc,, +django/templatetags/__pycache__/l10n.cpython-310.pyc,, +django/templatetags/__pycache__/static.cpython-310.pyc,, +django/templatetags/__pycache__/tz.cpython-310.pyc,, +django/templatetags/cache.py,sha256=WaYvWUn5ZTERwjouvkm-c5L5LRLc-GpSWl19wFod_bk,3551 +django/templatetags/i18n.py,sha256=UrS-aE3XCEK_oX18kmH8gSgA10MGHMeMTLOAESDtufI,19961 +django/templatetags/l10n.py,sha256=GB5_u3ymAtzxUtAY8QLb_pcZrzie9ZxEca-1NuKIXBY,1563 +django/templatetags/static.py,sha256=W4Rqt3DN_YtXe6EoqO-GLy7WR7xd7z0JsoX-VT0vvjc,4730 +django/templatetags/tz.py,sha256=0uSwEcqywsn1FrdOtyIjSsSCCEqzW0CDVebP-tzIBiY,5357 +django/test/__init__.py,sha256=X12C98lKN5JW1-wms7B6OaMTo-Li90waQpjfJE1V3AE,834 +django/test/__pycache__/__init__.cpython-310.pyc,, +django/test/__pycache__/client.cpython-310.pyc,, +django/test/__pycache__/html.cpython-310.pyc,, +django/test/__pycache__/runner.cpython-310.pyc,, +django/test/__pycache__/selenium.cpython-310.pyc,, +django/test/__pycache__/signals.cpython-310.pyc,, +django/test/__pycache__/testcases.cpython-310.pyc,, +django/test/__pycache__/utils.cpython-310.pyc,, +django/test/client.py,sha256=wcB9CqUb4Rq_kx5srAJ34DqMGwsjvb4B5jwnjJ8ZGb8,55968 +django/test/html.py,sha256=W97B8kAeeY3tqWrttffWkI0bK-j-vn69l-79WCsMu9A,8869 +django/test/runner.py,sha256=ZfFg65uYrWFiMMKB1HgbFK0_zVz5hsDwE-62145_H6M,42227 +django/test/selenium.py,sha256=DtQxR_MqglIfkR5dMQXeNiC3l_vmgxllRuHBz_LKZNY,9685 +django/test/signals.py,sha256=qiQBLO_rjVITdLDV4WiDVqfdGGGa5BLV4jLOn0XHJFw,7368 +django/test/testcases.py,sha256=VkWoXBHn_wsFJ4OUDiBuH8ajv6e9FPAb8vkB69rGfNA,67524 +django/test/utils.py,sha256=ObDoxbBL-vb-iT39bGt5s_kPAQiJsUEoB_PEZu5VhrQ,32151 +django/urls/__init__.py,sha256=BHyBIOD3E4_3Ng27SpXnRmqO3IzUqvBLCE4TTfs4wNs,1079 +django/urls/__pycache__/__init__.cpython-310.pyc,, +django/urls/__pycache__/base.cpython-310.pyc,, +django/urls/__pycache__/conf.cpython-310.pyc,, +django/urls/__pycache__/converters.cpython-310.pyc,, +django/urls/__pycache__/exceptions.cpython-310.pyc,, +django/urls/__pycache__/resolvers.cpython-310.pyc,, +django/urls/__pycache__/utils.cpython-310.pyc,, +django/urls/base.py,sha256=MDgpJtKVu7wKbWhzuo9SJUOyvIi3ndef0b_htzawIPU,5691 +django/urls/conf.py,sha256=TFZCdC1G8KftDuB_I7smC7UH1QGKkm5o1uNAIKP2B7M,3426 +django/urls/converters.py,sha256=OTsqmA3uCrmY7Xh94HUaOjGCBttNIKKOJRfPYBm5twM,1782 +django/urls/exceptions.py,sha256=alLNjkORtAxneC00g4qnRpG5wouOHvJvGbymdpKtG_I,115 +django/urls/resolvers.py,sha256=5p7SVNVhh9FmuFke5IquHKPO3jSA29N_eiXzsMpi2xE,31518 +django/urls/utils.py,sha256=d1KSc6JVR-5Z8axg_yDgYKtkqObdbJwWNkhcB8x44Rs,2179 +django/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/utils/__pycache__/__init__.cpython-310.pyc,, +django/utils/__pycache__/_os.cpython-310.pyc,, +django/utils/__pycache__/archive.cpython-310.pyc,, +django/utils/__pycache__/asyncio.cpython-310.pyc,, +django/utils/__pycache__/autoreload.cpython-310.pyc,, +django/utils/__pycache__/cache.cpython-310.pyc,, +django/utils/__pycache__/choices.cpython-310.pyc,, +django/utils/__pycache__/connection.cpython-310.pyc,, +django/utils/__pycache__/crypto.cpython-310.pyc,, +django/utils/__pycache__/datastructures.cpython-310.pyc,, +django/utils/__pycache__/dateformat.cpython-310.pyc,, +django/utils/__pycache__/dateparse.cpython-310.pyc,, +django/utils/__pycache__/dates.cpython-310.pyc,, +django/utils/__pycache__/deconstruct.cpython-310.pyc,, +django/utils/__pycache__/decorators.cpython-310.pyc,, +django/utils/__pycache__/deprecation.cpython-310.pyc,, +django/utils/__pycache__/duration.cpython-310.pyc,, +django/utils/__pycache__/encoding.cpython-310.pyc,, +django/utils/__pycache__/feedgenerator.cpython-310.pyc,, +django/utils/__pycache__/formats.cpython-310.pyc,, +django/utils/__pycache__/functional.cpython-310.pyc,, +django/utils/__pycache__/hashable.cpython-310.pyc,, +django/utils/__pycache__/html.cpython-310.pyc,, +django/utils/__pycache__/http.cpython-310.pyc,, +django/utils/__pycache__/inspect.cpython-310.pyc,, +django/utils/__pycache__/ipv6.cpython-310.pyc,, +django/utils/__pycache__/itercompat.cpython-310.pyc,, +django/utils/__pycache__/jslex.cpython-310.pyc,, +django/utils/__pycache__/log.cpython-310.pyc,, +django/utils/__pycache__/lorem_ipsum.cpython-310.pyc,, +django/utils/__pycache__/module_loading.cpython-310.pyc,, +django/utils/__pycache__/numberformat.cpython-310.pyc,, +django/utils/__pycache__/regex_helper.cpython-310.pyc,, +django/utils/__pycache__/safestring.cpython-310.pyc,, +django/utils/__pycache__/termcolors.cpython-310.pyc,, +django/utils/__pycache__/text.cpython-310.pyc,, +django/utils/__pycache__/timesince.cpython-310.pyc,, +django/utils/__pycache__/timezone.cpython-310.pyc,, +django/utils/__pycache__/tree.cpython-310.pyc,, +django/utils/__pycache__/version.cpython-310.pyc,, +django/utils/__pycache__/xmlutils.cpython-310.pyc,, +django/utils/_os.py,sha256=Q0d96RWFaQr6YqG00GulGqQ9M2Oni5WIjf_y4JnEWn8,2323 +django/utils/archive.py,sha256=HOBIOtVUzxNe_scK0gl-gu1yeQGU8X4VkYIdyCwkFuA,8087 +django/utils/asyncio.py,sha256=0glOg3eGmms-gUv04ZgDvZt19IZbdPBC64PnaKqeGDc,1138 +django/utils/autoreload.py,sha256=IABCHCytEe07k6h7ZlDDVnvT0JJ3Z7eQZbc_zjit-qg,24451 +django/utils/cache.py,sha256=xyazhD17lfCRXbWHnNWbI1WMHvwyXLUupRzG670y8gU,16583 +django/utils/choices.py,sha256=kSYtbZZit2Rdtl7PECG9f8Jrhkbn-DfBqZajUg8xPUg,4147 +django/utils/connection.py,sha256=2kqA6M_EObbZg6QKMXhX6p4YXG9RiPTUHwwN3mumhDY,2554 +django/utils/crypto.py,sha256=91KEDCMKAh3kKAMxUv2eQQKMEj-EgbMWRE2lVjmAzgY,2662 +django/utils/datastructures.py,sha256=mEt2-kg3zOQ24fW7ltxZDFaatZZyTSeJP9WAGWOg6UM,10267 +django/utils/dateformat.py,sha256=FvIRPWcVlSTQfVnPARPbV1BtQ1OX3Z3i49Iiyx9JuDI,10118 +django/utils/dateparse.py,sha256=oWTWbJax4NP1uY7tCGPSgnyAkoGxnXf1snEh-kfCkiQ,5356 +django/utils/dates.py,sha256=zHUHeOkxuo53rTvHG3dWMLRfVyfaMLBIt5xmA4E_Ids,2179 +django/utils/deconstruct.py,sha256=R3ks8L-Cif9-qyNwy-2R6KWf9UmcGDSiMGX-N6CbLOA,2126 +django/utils/decorators.py,sha256=p3NKImxC6MdbH2IVElMGu9OUdi3jRKt3d6_RXaeFm2M,8227 +django/utils/deprecation.py,sha256=PXnTY2003LnV5fUonR1N7dckwex7aUwF3IkS7NTiK3E,5133 +django/utils/duration.py,sha256=HK5E36F1GGdPchCqHsmloYhrHX_ByyITvOHyuxtElSE,1230 +django/utils/encoding.py,sha256=DLjcAjvBxrz5Jr5d8T2XnEUccseRVHTTXOm-zf-FVD4,8793 +django/utils/feedgenerator.py,sha256=nGSoWb5jlD0io-76tmjYnWlQxcFS6fksUn61Zn09KqQ,15636 +django/utils/formats.py,sha256=FmPUj3dfL2gCH2ijcWtcesYKbsi2-EbHGLGyHvGOJA0,10255 +django/utils/functional.py,sha256=URFZkoTNJmOlm_ay9872-_lEgV1ewunZS9GKSJRg-e8,14541 +django/utils/hashable.py,sha256=HzcLr4YPZGls_TLt0aQra7cCHcFp-hpTEOcOJ_DTQj0,738 +django/utils/html.py,sha256=VzL4XxfZEzdz_W2r-p0UHv-Le_ayRJ8ZKnqnN_FUp9M,17188 +django/utils/http.py,sha256=PqAUD05dlvDU9zCnmct4DMeT21nFx0u878g90xmyh-E,12776 +django/utils/inspect.py,sha256=utTOblKvpF1VhziK14LoUDtAjMP9xVX9q5a-Q3YKd2o,2318 +django/utils/ipv6.py,sha256=RlrNSr2fKESeUxPyXtE3W4QJk9PdEVKLSCB1qsor3lk,1387 +django/utils/itercompat.py,sha256=mXmO77Sd3P_0VN6ox4kAorZ2vo2CjKRiFBuDbIqu1os,532 +django/utils/jslex.py,sha256=qHVWN1SCWcJCSJQa-GL2EVEJk4ksBvGIrIWeISS8UwQ,8049 +django/utils/log.py,sha256=5qHhornekS3LJLFEr095hu4wqL4bfPqdjKKhzx7vMFw,8186 +django/utils/lorem_ipsum.py,sha256=yUtBgKhshftIpPg04pc1IrLpOBydZIf7g0isFCIJZqk,5473 +django/utils/module_loading.py,sha256=-a7qOb5rpp-Lw_51vyIPSdb7R40B16Er1Zc1C_a6ibY,3820 +django/utils/numberformat.py,sha256=8LqSMmfxaN0PYSTTES6UT_ATerfDYQn7Ya4NI70gMaU,3781 +django/utils/regex_helper.py,sha256=FsGQkHjDNJmYnCDPT2f3b07hdp4RRNTMB_KgSRe-8hs,12772 +django/utils/safestring.py,sha256=-dKgvOyuADWC8mo0F5HH-OadkS87xF4OHzdB3_fpLUc,1876 +django/utils/termcolors.py,sha256=vvQbUH7GsFofGRSiKQwx4YvgE4yZMtAGRVz9QPDfisA,7386 +django/utils/text.py,sha256=kejMRNU_DRFvtWcTwdGwDjrFuLn29-BM7bGdJExY1sk,14745 +django/utils/timesince.py,sha256=j9B_wSnsdS3ZXn9pt9GImOJDpgO61YMr_jtnUpZDx0g,4914 +django/utils/timezone.py,sha256=Wg4eIhEHAsOMEKlzfSS_aYPf-h70DYqOqnmRDG1TbbE,7295 +django/utils/translation/__init__.py,sha256=IzuMZHXY059T4hOcsqQjDmSOT2itEQb8OBsNi88aURA,8878 +django/utils/translation/__pycache__/__init__.cpython-310.pyc,, +django/utils/translation/__pycache__/reloader.cpython-310.pyc,, +django/utils/translation/__pycache__/template.cpython-310.pyc,, +django/utils/translation/__pycache__/trans_null.cpython-310.pyc,, +django/utils/translation/__pycache__/trans_real.cpython-310.pyc,, +django/utils/translation/reloader.py,sha256=oVM0xenn3fraUomMEFucvwlbr5UGYUijWnUn6FL55Zc,1114 +django/utils/translation/template.py,sha256=TOfPNT62RnUbUG64a_6d_VQ7tsDC1_F1TCopw_HwlcA,10549 +django/utils/translation/trans_null.py,sha256=niy_g1nztS2bPsINqK7_g0HcpI_w6hL-c8_hqpC7U7s,1287 +django/utils/translation/trans_real.py,sha256=7pLwuC7oTOeeY_HMsMB277yIgTSl4575XAiMYAmu558,22357 +django/utils/tree.py,sha256=v8sNUsnsG2Loi9xBIIk0GmV5yN7VWOGTzbmk8BOEs6E,4394 +django/utils/version.py,sha256=oQDlhyhDJiwAhtjuevKXnyy-ZCMTlPBmOnZpsaRW8wg,3701 +django/utils/xmlutils.py,sha256=LsggeI4vhln3An_YXNBk2cCwKLQgMe-O_3L--j3o3GM,1172 +django/views/__init__.py,sha256=GIq6CKUBCbGpQVyK4xIoaAUDPrmRvbBPSX_KSHk0Bb4,63 +django/views/__pycache__/__init__.cpython-310.pyc,, +django/views/__pycache__/csrf.cpython-310.pyc,, +django/views/__pycache__/debug.cpython-310.pyc,, +django/views/__pycache__/defaults.cpython-310.pyc,, +django/views/__pycache__/i18n.cpython-310.pyc,, +django/views/__pycache__/static.cpython-310.pyc,, +django/views/csrf.py,sha256=PwZPfYD-zI0SL19etlwAcpD4LOMp8Flu1qPGgHlrsBg,3425 +django/views/debug.py,sha256=3yDwwZPSIv3D1FvSQ3r2bbZfNiPtfZt5rvf2S-JyN1w,25660 +django/views/decorators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +django/views/decorators/__pycache__/__init__.cpython-310.pyc,, +django/views/decorators/__pycache__/cache.cpython-310.pyc,, +django/views/decorators/__pycache__/clickjacking.cpython-310.pyc,, +django/views/decorators/__pycache__/common.cpython-310.pyc,, +django/views/decorators/__pycache__/csrf.cpython-310.pyc,, +django/views/decorators/__pycache__/debug.cpython-310.pyc,, +django/views/decorators/__pycache__/gzip.cpython-310.pyc,, +django/views/decorators/__pycache__/http.cpython-310.pyc,, +django/views/decorators/__pycache__/vary.cpython-310.pyc,, +django/views/decorators/cache.py,sha256=4cWEWW88qPv57St9Wwmv0aK0vVxD-7aevFOQc8z4pQs,2821 +django/views/decorators/clickjacking.py,sha256=3w8djeDoQUK67uDfIzi9jdlds_ZdekwDMIV2IM8NBWk,2555 +django/views/decorators/common.py,sha256=Kcj1Q-aPTBLGMW_kkeUleRiYiEZCg7uoP_UexklyyQA,739 +django/views/decorators/csrf.py,sha256=q9lXnlNkbm7Hlg4FRx1pesf64sNpCIC52mCqY7xduZo,2324 +django/views/decorators/debug.py,sha256=jvKimgFDSVzCN3RWA1X5Ry7BSADFA21K3A2RjUsJy7E,5256 +django/views/decorators/gzip.py,sha256=PtpSGd8BePa1utGqvKMFzpLtZJxpV2_Jej8llw5bCJY,253 +django/views/decorators/http.py,sha256=vaoIxGGIn6kychggji7CmdmVl5JXvNs-7FUUVNv5w9Y,6533 +django/views/decorators/vary.py,sha256=DGR1eA8mSaXM8kgMJta4XnzCznJIrW1_KDMrd4aqCTM,1201 +django/views/defaults.py,sha256=BXT36auw8XF5ZwqdU0akzX5ITFBWhuy8idT8YGkCo_I,4718 +django/views/generic/__init__.py,sha256=VwQKUbBFJktiq5J2fo3qRNzRc0STfcMRPChlLPYAkkE,886 +django/views/generic/__pycache__/__init__.cpython-310.pyc,, +django/views/generic/__pycache__/base.cpython-310.pyc,, +django/views/generic/__pycache__/dates.cpython-310.pyc,, +django/views/generic/__pycache__/detail.cpython-310.pyc,, +django/views/generic/__pycache__/edit.cpython-310.pyc,, +django/views/generic/__pycache__/list.cpython-310.pyc,, +django/views/generic/base.py,sha256=p5HbLA01-FQSqC3hSGIg7jQk23khBMn9ssg4d9GHui4,9275 +django/views/generic/dates.py,sha256=xwSEF6zsaSl1jUTePs6NPihnOJEWT-j8SST0RG4bco0,26332 +django/views/generic/detail.py,sha256=zrAuhJxrFvNqJLnlvK-NSiRiiONsKKOYFantD7UztwU,6663 +django/views/generic/edit.py,sha256=lQ9msLa7PVw3mp4Ivup5vPjb7Vo_9G_paX34R7xhD-8,9091 +django/views/generic/list.py,sha256=KWsT5UOK5jflxn5JFoJCnyJEQXa0fM4talHswzEjzXU,7941 +django/views/i18n.py,sha256=EVTwiUOVetsRqzxs3HSwiuC7Wa_e-CYBDq26m_Nexk8,9020 +django/views/static.py,sha256=dfEj3tr0tBN6fW02T0z43fszVSj1DB6Gxe-C3V4VYPo,4055 +django/views/templates/csrf_403.html,sha256=lrD9CeNoW5UOC1cay8RJzydMMWF12BMMSpz5UDufNAk,2856 +django/views/templates/default_urlconf.html,sha256=P8dRIQu9i-K38Gsk-OP7nAMR4vGtMd2-Pw6cWjKnhN8,12521 +django/views/templates/directory_index.html,sha256=0CGI4FUy9n_Yo2e7U2vWeKCLsUgizBmoqHseNQxxe04,653 +django/views/templates/i18n_catalog.js,sha256=WTPJxawKwdORo12g9I_mUn4YSU6Xx-DCx6E06yKBKZQ,2785 +django/views/templates/technical_404.html,sha256=da7h7kPnDufG3D1KM5JzySVHEm4mTYx3UxV8KdPSz_c,2816 +django/views/templates/technical_500.html,sha256=ZJAa_HrpoqOaemlk3nikPH-wHXHlhaY1oyx6qGDAGgQ,18124 +django/views/templates/technical_500.txt,sha256=b0ihE_FS7YtfAFOXU_yk0-CTgUmZ4ZkWVfkFHdEQXQI,3712 diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/REQUESTED b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/WHEEL b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/WHEEL new file mode 100644 index 0000000..79d5c89 --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.45.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/entry_points.txt b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/entry_points.txt new file mode 100644 index 0000000..eaeb88e --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/entry_points.txt @@ -0,0 +1,2 @@ +[console_scripts] +django-admin = django.core.management:execute_from_command_line diff --git a/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/top_level.txt b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/top_level.txt new file mode 100644 index 0000000..d3e4ba5 --- /dev/null +++ b/gestao_raul/Lib/site-packages/Django-5.1.4.dist-info/top_level.txt @@ -0,0 +1 @@ +django diff --git a/gestao_raul/Lib/site-packages/__pycache__/typing_extensions.cpython-310.pyc b/gestao_raul/Lib/site-packages/__pycache__/typing_extensions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d959f4b6714214a77a2c4f264de9df3a702b155f GIT binary patch literal 100331 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc b/gestao_raul/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..36370048e5616047182e58cf2f98630ecf3fc770 GIT binary patch literal 238 zcmd1j<>g`kf{GuZ={i9AF^Gcp}JkFaQ8Z$VK)5 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/_distutils_hack/override.py b/gestao_raul/Lib/site-packages/_distutils_hack/override.py new file mode 100644 index 0000000..2cc433a --- /dev/null +++ b/gestao_raul/Lib/site-packages/_distutils_hack/override.py @@ -0,0 +1 @@ +__import__('_distutils_hack').do_override() diff --git a/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/INSTALLER b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/INSTALLER new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/INSTALLER @@ -0,0 +1 @@ +pip diff --git a/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/LICENSE b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/LICENSE new file mode 100644 index 0000000..5f4f225 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/LICENSE @@ -0,0 +1,27 @@ +Copyright (c) Django Software Foundation and individual contributors. +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + 3. Neither the name of Django nor the names of its contributors may be used + to endorse or promote products derived from this software without + specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON +ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/METADATA b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/METADATA new file mode 100644 index 0000000..a9ffa93 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/METADATA @@ -0,0 +1,246 @@ +Metadata-Version: 2.1 +Name: asgiref +Version: 3.8.1 +Summary: ASGI specs, helper code, and adapters +Home-page: https://github.com/django/asgiref/ +Author: Django Software Foundation +Author-email: foundation@djangoproject.com +License: BSD-3-Clause +Project-URL: Documentation, https://asgi.readthedocs.io/ +Project-URL: Further Documentation, https://docs.djangoproject.com/en/stable/topics/async/#async-adapter-functions +Project-URL: Changelog, https://github.com/django/asgiref/blob/master/CHANGELOG.txt +Classifier: Development Status :: 5 - Production/Stable +Classifier: Environment :: Web Environment +Classifier: Intended Audience :: Developers +Classifier: License :: OSI Approved :: BSD License +Classifier: Operating System :: OS Independent +Classifier: Programming Language :: Python +Classifier: Programming Language :: Python :: 3 +Classifier: Programming Language :: Python :: 3 :: Only +Classifier: Programming Language :: Python :: 3.8 +Classifier: Programming Language :: Python :: 3.9 +Classifier: Programming Language :: Python :: 3.10 +Classifier: Programming Language :: Python :: 3.11 +Classifier: Programming Language :: Python :: 3.12 +Classifier: Topic :: Internet :: WWW/HTTP +Requires-Python: >=3.8 +License-File: LICENSE +Requires-Dist: typing-extensions >=4 ; python_version < "3.11" +Provides-Extra: tests +Requires-Dist: pytest ; extra == 'tests' +Requires-Dist: pytest-asyncio ; extra == 'tests' +Requires-Dist: mypy >=0.800 ; extra == 'tests' + +asgiref +======= + +.. image:: https://github.com/django/asgiref/actions/workflows/tests.yml/badge.svg + :target: https://github.com/django/asgiref/actions/workflows/tests.yml + +.. image:: https://img.shields.io/pypi/v/asgiref.svg + :target: https://pypi.python.org/pypi/asgiref + +ASGI is a standard for Python asynchronous web apps and servers to communicate +with each other, and positioned as an asynchronous successor to WSGI. You can +read more at https://asgi.readthedocs.io/en/latest/ + +This package includes ASGI base libraries, such as: + +* Sync-to-async and async-to-sync function wrappers, ``asgiref.sync`` +* Server base classes, ``asgiref.server`` +* A WSGI-to-ASGI adapter, in ``asgiref.wsgi`` + + +Function wrappers +----------------- + +These allow you to wrap or decorate async or sync functions to call them from +the other style (so you can call async functions from a synchronous thread, +or vice-versa). + +In particular: + +* AsyncToSync lets a synchronous subthread stop and wait while the async + function is called on the main thread's event loop, and then control is + returned to the thread when the async function is finished. + +* SyncToAsync lets async code call a synchronous function, which is run in + a threadpool and control returned to the async coroutine when the synchronous + function completes. + +The idea is to make it easier to call synchronous APIs from async code and +asynchronous APIs from synchronous code so it's easier to transition code from +one style to the other. In the case of Channels, we wrap the (synchronous) +Django view system with SyncToAsync to allow it to run inside the (asynchronous) +ASGI server. + +Note that exactly what threads things run in is very specific, and aimed to +keep maximum compatibility with old synchronous code. See +"Synchronous code & Threads" below for a full explanation. By default, +``sync_to_async`` will run all synchronous code in the program in the same +thread for safety reasons; you can disable this for more performance with +``@sync_to_async(thread_sensitive=False)``, but make sure that your code does +not rely on anything bound to threads (like database connections) when you do. + + +Threadlocal replacement +----------------------- + +This is a drop-in replacement for ``threading.local`` that works with both +threads and asyncio Tasks. Even better, it will proxy values through from a +task-local context to a thread-local context when you use ``sync_to_async`` +to run things in a threadpool, and vice-versa for ``async_to_sync``. + +If you instead want true thread- and task-safety, you can set +``thread_critical`` on the Local object to ensure this instead. + + +Server base classes +------------------- + +Includes a ``StatelessServer`` class which provides all the hard work of +writing a stateless server (as in, does not handle direct incoming sockets +but instead consumes external streams or sockets to work out what is happening). + +An example of such a server would be a chatbot server that connects out to +a central chat server and provides a "connection scope" per user chatting to +it. There's only one actual connection, but the server has to separate things +into several scopes for easier writing of the code. + +You can see an example of this being used in `frequensgi `_. + + +WSGI-to-ASGI adapter +-------------------- + +Allows you to wrap a WSGI application so it appears as a valid ASGI application. + +Simply wrap it around your WSGI application like so:: + + asgi_application = WsgiToAsgi(wsgi_application) + +The WSGI application will be run in a synchronous threadpool, and the wrapped +ASGI application will be one that accepts ``http`` class messages. + +Please note that not all extended features of WSGI may be supported (such as +file handles for incoming POST bodies). + + +Dependencies +------------ + +``asgiref`` requires Python 3.8 or higher. + + +Contributing +------------ + +Please refer to the +`main Channels contributing docs `_. + + +Testing +''''''' + +To run tests, make sure you have installed the ``tests`` extra with the package:: + + cd asgiref/ + pip install -e .[tests] + pytest + + +Building the documentation +'''''''''''''''''''''''''' + +The documentation uses `Sphinx `_:: + + cd asgiref/docs/ + pip install sphinx + +To build the docs, you can use the default tools:: + + sphinx-build -b html . _build/html # or `make html`, if you've got make set up + cd _build/html + python -m http.server + +...or you can use ``sphinx-autobuild`` to run a server and rebuild/reload +your documentation changes automatically:: + + pip install sphinx-autobuild + sphinx-autobuild . _build/html + + +Releasing +''''''''' + +To release, first add details to CHANGELOG.txt and update the version number in ``asgiref/__init__.py``. + +Then, build and push the packages:: + + python -m build + twine upload dist/* + rm -r build/ dist/ + + +Implementation Details +---------------------- + +Synchronous code & threads +'''''''''''''''''''''''''' + +The ``asgiref.sync`` module provides two wrappers that let you go between +asynchronous and synchronous code at will, while taking care of the rough edges +for you. + +Unfortunately, the rough edges are numerous, and the code has to work especially +hard to keep things in the same thread as much as possible. Notably, the +restrictions we are working with are: + +* All synchronous code called through ``SyncToAsync`` and marked with + ``thread_sensitive`` should run in the same thread as each other (and if the + outer layer of the program is synchronous, the main thread) + +* If a thread already has a running async loop, ``AsyncToSync`` can't run things + on that loop if it's blocked on synchronous code that is above you in the + call stack. + +The first compromise you get to might be that ``thread_sensitive`` code should +just run in the same thread and not spawn in a sub-thread, fulfilling the first +restriction, but that immediately runs you into the second restriction. + +The only real solution is to essentially have a variant of ThreadPoolExecutor +that executes any ``thread_sensitive`` code on the outermost synchronous +thread - either the main thread, or a single spawned subthread. + +This means you now have two basic states: + +* If the outermost layer of your program is synchronous, then all async code + run through ``AsyncToSync`` will run in a per-call event loop in arbitrary + sub-threads, while all ``thread_sensitive`` code will run in the main thread. + +* If the outermost layer of your program is asynchronous, then all async code + runs on the main thread's event loop, and all ``thread_sensitive`` synchronous + code will run in a single shared sub-thread. + +Crucially, this means that in both cases there is a thread which is a shared +resource that all ``thread_sensitive`` code must run on, and there is a chance +that this thread is currently blocked on its own ``AsyncToSync`` call. Thus, +``AsyncToSync`` needs to act as an executor for thread code while it's blocking. + +The ``CurrentThreadExecutor`` class provides this functionality; rather than +simply waiting on a Future, you can call its ``run_until_future`` method and +it will run submitted code until that Future is done. This means that code +inside the call can then run code on your thread. + + +Maintenance and Security +------------------------ + +To report security issues, please contact security@djangoproject.com. For GPG +signatures and more security process information, see +https://docs.djangoproject.com/en/dev/internals/security/. + +To report bugs or request new features, please open a new GitHub issue. + +This repository is part of the Channels project. For the shepherd and maintenance team, please see the +`main Channels readme `_. diff --git a/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/RECORD b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/RECORD new file mode 100644 index 0000000..5dd92a7 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/RECORD @@ -0,0 +1,27 @@ +asgiref-3.8.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +asgiref-3.8.1.dist-info/LICENSE,sha256=uEZBXRtRTpwd_xSiLeuQbXlLxUbKYSn5UKGM0JHipmk,1552 +asgiref-3.8.1.dist-info/METADATA,sha256=Cbu67XPstSkMxAdA4puvY-FAzN9OrT_AasH7IuK6DaM,9259 +asgiref-3.8.1.dist-info/RECORD,, +asgiref-3.8.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92 +asgiref-3.8.1.dist-info/top_level.txt,sha256=bokQjCzwwERhdBiPdvYEZa4cHxT4NCeAffQNUqJ8ssg,8 +asgiref/__init__.py,sha256=kZzGpxWKY4rWDQrrrlM7bN7YKRAjy17Wv4w__djvVYU,22 +asgiref/__pycache__/__init__.cpython-310.pyc,, +asgiref/__pycache__/compatibility.cpython-310.pyc,, +asgiref/__pycache__/current_thread_executor.cpython-310.pyc,, +asgiref/__pycache__/local.cpython-310.pyc,, +asgiref/__pycache__/server.cpython-310.pyc,, +asgiref/__pycache__/sync.cpython-310.pyc,, +asgiref/__pycache__/testing.cpython-310.pyc,, +asgiref/__pycache__/timeout.cpython-310.pyc,, +asgiref/__pycache__/typing.cpython-310.pyc,, +asgiref/__pycache__/wsgi.cpython-310.pyc,, +asgiref/compatibility.py,sha256=DhY1SOpOvOw0Y1lSEjCqg-znRUQKecG3LTaV48MZi68,1606 +asgiref/current_thread_executor.py,sha256=EuowbT0oL_P4Fq8KTXNUyEgk3-k4Yh4E8F_anEVdeBI,3977 +asgiref/local.py,sha256=bNeER_QIfw2-PAPYanqAZq6yAAEJ-aio7e9o8Up-mgI,4808 +asgiref/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +asgiref/server.py,sha256=egTQhZo1k4G0F7SSBQNp_VOekpGcjBJZU2kkCoiGC_M,6005 +asgiref/sync.py,sha256=Why0YQV84vSp7IBBr-JDbxYCua-InLgBjuiCMlj9WgI,21444 +asgiref/testing.py,sha256=QgZgXKrwdq5xzhZqynr1msWOiTS3Kpastj7wHU2ePRY,3481 +asgiref/timeout.py,sha256=LtGL-xQpG8JHprdsEUCMErJ0kNWj4qwWZhEHJ3iKu4s,3627 +asgiref/typing.py,sha256=rLF3y_9OgvlQMaDm8yMw8QTgsO9Mv9YAc6Cj8xjvWo0,6264 +asgiref/wsgi.py,sha256=fxBLgUE_0PEVgcp13ticz6GHf3q-aKWcB5eFPhd6yxo,6753 diff --git a/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/WHEEL b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/WHEEL new file mode 100644 index 0000000..bab98d6 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.43.0) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/top_level.txt b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/top_level.txt new file mode 100644 index 0000000..ddf99d3 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref-3.8.1.dist-info/top_level.txt @@ -0,0 +1 @@ +asgiref diff --git a/gestao_raul/Lib/site-packages/asgiref/__init__.py b/gestao_raul/Lib/site-packages/asgiref/__init__.py new file mode 100644 index 0000000..e4e78c0 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/__init__.py @@ -0,0 +1 @@ +__version__ = "3.8.1" diff --git a/gestao_raul/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/asgiref/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3d48188eb1d0d5839b7cb8abe81ff70eda5be79a GIT binary patch literal 200 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc b/gestao_raul/Lib/site-packages/asgiref/__pycache__/local.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6aa1798196f795c134eb6172103db4c96c4d24f GIT binary patch literal 4222 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 H@X`MP_dl0v literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc b/gestao_raul/Lib/site-packages/asgiref/__pycache__/testing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6d56069e7c23142f85ea6b1b056875589b72584f GIT binary patch literal 3187 zcmai1&2JmW6`z@1lB*>}tFru&Hf^>^;eIL4laqAJCHJ2DAN07lB8MQi9D~$V`g^k^^;Mxu?AtdV@6F8n_|0Q6 zKkqX>sDXh<+d%lA`yv`IX$=Qat7YbYQ0*w z&e=_t)ROuWmee1MZX@Aqtkd`sdf4ih9JIsBXSN2BigF`msMCBalVKcXS#&Rx7;Kod zCyRlJN#yu5+tmB$m5ermP4KQm8+pRIZgR;k%)7PZa^fX(Pk6VU_(>CEjii;#Q{eG6lkx7eurRenrIW-D3dgupuZVhrBM0xP`+Rb-^ z=xAz?=0Ow~sZG!;68TDiqZC6NE6_4e=v!=B1wE;Cv?X<5iXb&ml>|x}mC6TEhB?7( z9D^jPm#tV#=bk>qdw5sy>QxZK#{4lKvyhJks4&jHd%(ceW?bDg_PqnPKWCgBf6Vsn z%$?d!bIf+?JFNrffF$P=w#Gi?tDUx@Mat%}BbGHC7kybaBE6f(X;Icb7|4Mvn`z!3 znDCFb(Spy8TFtnCe?Kx0BBjg5O4TSGHOR|mtYlTbhe}^9mtjS&4C#x*>Or& z%WP9MunR?J{gkOo_ zQ6(T26PZ55xAFc1ul@?;5g*;Hob?)e7a8>q`{V`AM)Pn2ui6}L+u{4-fN{3Ya^Gce zn7jKtN1L+`S^y!}s`E)L6u-a+|Oy9L!o%D|8j;}}B)}YO< zvp$ujzM&nNX&4^U;GNVkoXS6#$`2tuWF0a3y^UYWo%JX+I@l~!V7BFnXfB_WW+OvCENc5b2Z%uzCA!&xQFK-fCOTK@##bS43S4agnQ~j9FCql&+HSKGlnOmvl)67%p<@knSRUAu4{*7jam}VGdZ(T9N-#{#c2HPo!Rp;yyAA)} zg7VU79|{7XLvK%fJ-T*YIGj}d#U~%r^Y`mt{Aua4oBtX;xqhOWpy;ANu|aYR%p-0r z_B?c|@7TEt+_}%xkKj1559HBH}67gSPs(0O`=e4p`bC5GN&DLVQM`n-9~xv2bjcG1Y*ytEubQB0rCs~@!ipj z|Ihvt4XZ#gLiY~8jnsb;oFa_uG^y;!qn-@I(hoxvjssM|Vc7~%O-0#cgs`rN!%$rz zLAsPIPO2Xg_X3e?L|!Fw1e2DdyG+$UC{8s&kH=h8G=AH^=ruggZ?v!2@s4NBrSLa^ zsSZdv9~Zqos^EKRmcp16Ak|H2Gk|pdufjUv&Np7{UDl literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc b/gestao_raul/Lib/site-packages/asgiref/__pycache__/timeout.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cdba9306d19017c4c824da6565de832c40ac5438 GIT binary patch literal 3307 zcmZ`+ZExJh5#}y=JRWtDPO>c7d1c;pD0Fs;_KQ&naUHv8k*Y-^BfvobL2>s^w0Y!p zxr|<*0!i)vkbLL|-ADb7{tKet`l^3%fP6THPgF-VK7>2tyQw&244J7&_6jk}g`@Yj9T1l16H;0jkXU%Ig3P2q{w zOQ+uwzVzh+#rJ)u>;)OV%>0WVZRM=2P@X*`;l#qxGP=*_qKRTye{4VwJtcYdb?`sWF+%a zN8d8bn$kg>XIdWVU=(H1P^zBq2Y8+qa!{s0k_B;8$RapAkXdk?m%(9_=|JZ}G#;nN z!EBQ>A0}}Ssl3cYu%G7fbF)i6!1h80xw^JfR2*kOi9VPex_Q5M|Nh6_2j-++uSaGFX5(5dO7a7($GxG{n;#KX zJh*pnhz-j9UYw6U>OwhCSC^YD$f!W|2$jvQUmrembSwBON=r%Z6cW&hf}GpQGfAL` zq#)~O76t|uV_%x*<6x^cFUf(*XdLN;bmdnPh?3kWQZ73*Q%xjfNwR<3qEr{i?9Fb*kYwG-Fm%=3ESjjljQuLm57b-8DN~`8Hs8t7uhpNo7BpZh0 zO646!ie^RS5LK;yI^6^}^UGRPHEPvHsH5U}<%e;U#WGE$sFtU6co1bGm1-^wBi*$t zr;zDDxxm3dc5bQLp#S^y(Sto?u`2csWvcVNPxII~RO}69p`$!hQJG$$KTG!aibTt; zF{%jeLa`SW!$ir!y{U`6@iF`jlMG24zD?+_V{l!M`OM)CbAEJfm(kB>C!N`%*@Bp2 zH+zVtn3@=RAWp3_Yl0}8vz>ERwL+1HKwqkJrq&=fKGg%A358l5hQGwLpshT1vT|{z zSsaFyCy(M#qw-ZvqL96nYgqd+<i!Ib{<@W%vtA-2n@BdB(1zM4vmg zS#N@`-lBo0E~^)~%oJ|)-W=J%()!42{;PnFdzXf52O}C$?a4z(r{^xYm*X*& zzv3w+f&rZp_|$qf1G~%A3Y~P5pNQlbc`1HRhf(NVezH7saVmS|pn1i3e|iwA1ydaj zaG%k^{LG$MchH(&pjnuDz;}jFHBZ-3w?I_(C^}NhL^*Wcjn=i497VVz+3=50EXXgP zuj7JTz%keOc`G%Rk!7Z)HBSKx)irSJ2~|4>lw)KYx&fQn-;5uEKWFL#(mHc7HYtB; zt>JhRv*QNFuw^(tMxvS%s)!4uNmcMyyLF$u-W!ABATLuiI2n|M6lelPg6&7h_zx2pE%Wk%>dRw`FjD~{4MEb=_7+OtAu_S>Y54C+mz z5^1$ctQ#^yy#~Q9-hv3&v{eV4R(q zaj(O;jj+1wYfB3?OfBQ3YGePZK^?EC9dJRT7%7`9AW)32^#{X6^308_yx-KwZqtP> PXgkmISR20%TeW`zpEv~v literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc b/gestao_raul/Lib/site-packages/asgiref/__pycache__/typing.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a20833af581a33e1a60802543422fdd8ef3f5d7 GIT binary patch literal 7593 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 M|B6OJ{{%n&A02)P=l}o! literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc b/gestao_raul/Lib/site-packages/asgiref/__pycache__/wsgi.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb68b075656dcadbd8a37537b044ff0311f2a735 GIT binary patch literal 4829 zcmai2&2JmW6`z^?A}LCiWyiMix%n!pB35D`NrO}|?AWrU!lqP-iD5#)cEuSuqJ+(!F9C`>)@#t$$Jr>A+vDcn*P7j5F*8RO%QkE2_Sz>4B^Szn(-tWCP zjK{|-49{Qw{mEwdJY)Z)#?i+@;|ktn0fl6ew^*AuIH$U3iMG|SOx?@7Yz?BS9)l9Xq9AXmCcmD1vNIqbMNEbR3(c`sGeQz#&Ju@x@vc09qQd1 zQA^E;eC%qn+iBM0Rh0QS)q^w+LaH>0%F#!laRqPUqfo5DC2I)D8-wwBxAEkcOK_l$= zS5M5DH58h(iP1xKdavP4NYWY4SODRzvPZmzQ%~-IcW{K!Baz#QYHjEeWoB~hv_cEjd&h*@hP7-_Zf zHZh#-?&hT+h&oXk1XbD_ZL-4qXPydVb~N6!F*bUrPVYB(lb2C^$y1iGdwiecXd<)r ztwmVL0)tg>$XN9MZlpr8Jt;2;5}WU&Q6b@O48ayMG@4MpR%uUnppA~&@t^K&(JX5! ze@kiQ??maApKhr`l^ya6JJJj!&A6-H0<}=?k{-26x-rIfwp7RHGx39<8MazMpybmH z)L?v5-{)!+Gh=JgX6_i;xu;cAMGq9It|N`kih^WIk}jy9BB7D=#1}8RCuCjBsLi-E zy%V-o5ag90XvebGqIxw5?)SphaKsA&88?GKkAs??qJj+NNI{&ni^9X3kTI2*%}aLG zGQCZ79D6LZuHa2Bqxk>OAuu;wIWEhx@{l(?Rgz<}`jGAOM%lo7LQjB5{})CR%SvBN z;^wv@;E=wdxOf9f-2v3PN*?NM1hpSQ(K(PFqKL2rh@%vQs2NeaF=HA1*nTR=C;fr{X>QLhvrOzW;D;@+JtuR_8V_sU#F~;>V;@+V zb6}I`2V%fEGp(@!Pu}hD`_E8P{OBATUW(PE+wB zt?`E2IB6e*xYzI|RERICyaXGmav`cHOMD9UBDi>5@hW0Uy!PD>*iM1@CT)83kTH_+ zUBjFF8pq7|0X(S`198BmHQ)!ZmjU0iU{TIAJJx4I`&NcI`t{6CZPLGVe=DZho{ibw zG|Q}vY9*`_vOM6jg4WnHJI7?z@EMmA1Cfc;*=O<;ev|U_*VR2oPG$T7(|0j@3RZju zlpJ|>j%=*xd2SluN8hTiTK%8THrOX?y z^s-XsVAqc_C&P*5>*rbKooAr!QO_K^zmqwz^f&sq4h@fynatLkHoFKtm8Nhx?#GNv)t~b8z1Cu3n8v^DYvP&mb-10ZpE@u z1!=tt52d5dX6}SZGm82i!RhTcliVODcz~#n{9{IZOEzx|KX;SnmTD`FgpJj2%vAG< zmHA(NGQV06ZqL^jmaaF(R*rwZ5`gyV*Fk zI=}Mi{7SIAvQ%HXwsfmsB}mK;IrdMPR!_Hrf?dC2I-*Xum-fd@T@mtc+J!hVaL(0=tSPIcI`ytGo!%dHqt*@}}i z7azQnyUkVv|J@i{nZLbMpAW8HzrK=tTi^>>J)Ri4_lt#lZ%kZUs@3Of_2AZg?Ph(U zUmcB;duvojqxHMX^M&k#HXaeihrvUDavE61$eld@ClZB$RvP78q$k zvn*)RxRKoHA+%}A3%aeasbhyBA-OBO}+^~_g|$`ll&Yn zi4va>s96=`$HZ{M2M(vNe z-z0dC9*PK*MXcgYeu`ofGW={3XXJZ={3(1M5}yGw?&7;4{w(eboQmtWFddnz(~5Th zuMeqZ5uz{DvMOFO9^Uj}=SX)1$%bYYE?>vhm zr~s7_CkoPnJ$n7W9-{0T5QTg{q8nY(TQ5R|xsdg6zdmw|ii zIwX^BMTwupSP`bh{f;vH?*rGzGy-wKlISOJsaQb~>IkX{c=cL;>bS8|ydT=CNd+}s zc8%%6+UBWl5>CqVb)5>bVEsB3WRiu2euUa6y(G7;E#n0lIm*$Ea@@3MZ`G=*- Ms(eyRSW~C}2b74*)Bpeg literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/asgiref/compatibility.py b/gestao_raul/Lib/site-packages/asgiref/compatibility.py new file mode 100644 index 0000000..3a2a63e --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/compatibility.py @@ -0,0 +1,48 @@ +import inspect + +from .sync import iscoroutinefunction + + +def is_double_callable(application): + """ + Tests to see if an application is a legacy-style (double-callable) application. + """ + # Look for a hint on the object first + if getattr(application, "_asgi_single_callable", False): + return False + if getattr(application, "_asgi_double_callable", False): + return True + # Uninstanted classes are double-callable + if inspect.isclass(application): + return True + # Instanted classes depend on their __call__ + if hasattr(application, "__call__"): + # We only check to see if its __call__ is a coroutine function - + # if it's not, it still might be a coroutine function itself. + if iscoroutinefunction(application.__call__): + return False + # Non-classes we just check directly + return not iscoroutinefunction(application) + + +def double_to_single_callable(application): + """ + Transforms a double-callable ASGI application into a single-callable one. + """ + + async def new_application(scope, receive, send): + instance = application(scope) + return await instance(receive, send) + + return new_application + + +def guarantee_single_callable(application): + """ + Takes either a single- or double-callable application and always returns it + in single-callable style. Use this to add backwards compatibility for ASGI + 2.0 applications to your server/test harness/etc. + """ + if is_double_callable(application): + application = double_to_single_callable(application) + return application diff --git a/gestao_raul/Lib/site-packages/asgiref/current_thread_executor.py b/gestao_raul/Lib/site-packages/asgiref/current_thread_executor.py new file mode 100644 index 0000000..67a7926 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/current_thread_executor.py @@ -0,0 +1,115 @@ +import queue +import sys +import threading +from concurrent.futures import Executor, Future +from typing import TYPE_CHECKING, Any, Callable, TypeVar, Union + +if sys.version_info >= (3, 10): + from typing import ParamSpec +else: + from typing_extensions import ParamSpec + +_T = TypeVar("_T") +_P = ParamSpec("_P") +_R = TypeVar("_R") + + +class _WorkItem: + """ + Represents an item needing to be run in the executor. + Copied from ThreadPoolExecutor (but it's private, so we're not going to rely on importing it) + """ + + def __init__( + self, + future: "Future[_R]", + fn: Callable[_P, _R], + *args: _P.args, + **kwargs: _P.kwargs, + ): + self.future = future + self.fn = fn + self.args = args + self.kwargs = kwargs + + def run(self) -> None: + __traceback_hide__ = True # noqa: F841 + if not self.future.set_running_or_notify_cancel(): + return + try: + result = self.fn(*self.args, **self.kwargs) + except BaseException as exc: + self.future.set_exception(exc) + # Break a reference cycle with the exception 'exc' + self = None # type: ignore[assignment] + else: + self.future.set_result(result) + + +class CurrentThreadExecutor(Executor): + """ + An Executor that actually runs code in the thread it is instantiated in. + Passed to other threads running async code, so they can run sync code in + the thread they came from. + """ + + def __init__(self) -> None: + self._work_thread = threading.current_thread() + self._work_queue: queue.Queue[Union[_WorkItem, "Future[Any]"]] = queue.Queue() + self._broken = False + + def run_until_future(self, future: "Future[Any]") -> None: + """ + Runs the code in the work queue until a result is available from the future. + Should be run from the thread the executor is initialised in. + """ + # Check we're in the right thread + if threading.current_thread() != self._work_thread: + raise RuntimeError( + "You cannot run CurrentThreadExecutor from a different thread" + ) + future.add_done_callback(self._work_queue.put) + # Keep getting and running work items until we get the future we're waiting for + # back via the future's done callback. + try: + while True: + # Get a work item and run it + work_item = self._work_queue.get() + if work_item is future: + return + assert isinstance(work_item, _WorkItem) + work_item.run() + del work_item + finally: + self._broken = True + + def _submit( + self, + fn: Callable[_P, _R], + *args: _P.args, + **kwargs: _P.kwargs, + ) -> "Future[_R]": + # Check they're not submitting from the same thread + if threading.current_thread() == self._work_thread: + raise RuntimeError( + "You cannot submit onto CurrentThreadExecutor from its own thread" + ) + # Check they're not too late or the executor errored + if self._broken: + raise RuntimeError("CurrentThreadExecutor already quit or is broken") + # Add to work queue + f: "Future[_R]" = Future() + work_item = _WorkItem(f, fn, *args, **kwargs) + self._work_queue.put(work_item) + # Return the future + return f + + # Python 3.9+ has a new signature for submit with a "/" after `fn`, to enforce + # it to be a positional argument. If we ignore[override] mypy on 3.9+ will be + # happy but 3.8 will say that the ignore comment is unused, even when + # defining them differently based on sys.version_info. + # We should be able to remove this when we drop support for 3.8. + if not TYPE_CHECKING: + + def submit(self, fn, *args, **kwargs): + return self._submit(fn, *args, **kwargs) diff --git a/gestao_raul/Lib/site-packages/asgiref/local.py b/gestao_raul/Lib/site-packages/asgiref/local.py new file mode 100644 index 0000000..a8b9459 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/local.py @@ -0,0 +1,128 @@ +import asyncio +import contextlib +import contextvars +import threading +from typing import Any, Dict, Union + + +class _CVar: + """Storage utility for Local.""" + + def __init__(self) -> None: + self._data: "contextvars.ContextVar[Dict[str, Any]]" = contextvars.ContextVar( + "asgiref.local" + ) + + def __getattr__(self, key): + storage_object = self._data.get({}) + try: + return storage_object[key] + except KeyError: + raise AttributeError(f"{self!r} object has no attribute {key!r}") + + def __setattr__(self, key: str, value: Any) -> None: + if key == "_data": + return super().__setattr__(key, value) + + storage_object = self._data.get({}) + storage_object[key] = value + self._data.set(storage_object) + + def __delattr__(self, key: str) -> None: + storage_object = self._data.get({}) + if key in storage_object: + del storage_object[key] + self._data.set(storage_object) + else: + raise AttributeError(f"{self!r} object has no attribute {key!r}") + + +class Local: + """Local storage for async tasks. + + This is a namespace object (similar to `threading.local`) where data is + also local to the current async task (if there is one). + + In async threads, local means in the same sense as the `contextvars` + module - i.e. a value set in an async frame will be visible: + + - to other async code `await`-ed from this frame. + - to tasks spawned using `asyncio` utilities (`create_task`, `wait_for`, + `gather` and probably others). + - to code scheduled in a sync thread using `sync_to_async` + + In "sync" threads (a thread with no async event loop running), the + data is thread-local, but additionally shared with async code executed + via the `async_to_sync` utility, which schedules async code in a new thread + and copies context across to that thread. + + If `thread_critical` is True, then the local will only be visible per-thread, + behaving exactly like `threading.local` if the thread is sync, and as + `contextvars` if the thread is async. This allows genuinely thread-sensitive + code (such as DB handles) to be kept stricly to their initial thread and + disable the sharing across `sync_to_async` and `async_to_sync` wrapped calls. + + Unlike plain `contextvars` objects, this utility is threadsafe. + """ + + def __init__(self, thread_critical: bool = False) -> None: + self._thread_critical = thread_critical + self._thread_lock = threading.RLock() + + self._storage: "Union[threading.local, _CVar]" + + if thread_critical: + # Thread-local storage + self._storage = threading.local() + else: + # Contextvar storage + self._storage = _CVar() + + @contextlib.contextmanager + def _lock_storage(self): + # Thread safe access to storage + if self._thread_critical: + try: + # this is a test for are we in a async or sync + # thread - will raise RuntimeError if there is + # no current loop + asyncio.get_running_loop() + except RuntimeError: + # We are in a sync thread, the storage is + # just the plain thread local (i.e, "global within + # this thread" - it doesn't matter where you are + # in a call stack you see the same storage) + yield self._storage + else: + # We are in an async thread - storage is still + # local to this thread, but additionally should + # behave like a context var (is only visible with + # the same async call stack) + + # Ensure context exists in the current thread + if not hasattr(self._storage, "cvar"): + self._storage.cvar = _CVar() + + # self._storage is a thread local, so the members + # can't be accessed in another thread (we don't + # need any locks) + yield self._storage.cvar + else: + # Lock for thread_critical=False as other threads + # can access the exact same storage object + with self._thread_lock: + yield self._storage + + def __getattr__(self, key): + with self._lock_storage() as storage: + return getattr(storage, key) + + def __setattr__(self, key, value): + if key in ("_local", "_storage", "_thread_critical", "_thread_lock"): + return super().__setattr__(key, value) + with self._lock_storage() as storage: + setattr(storage, key, value) + + def __delattr__(self, key): + with self._lock_storage() as storage: + delattr(storage, key) diff --git a/gestao_raul/Lib/site-packages/asgiref/py.typed b/gestao_raul/Lib/site-packages/asgiref/py.typed new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/asgiref/server.py b/gestao_raul/Lib/site-packages/asgiref/server.py new file mode 100644 index 0000000..43c28c6 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/server.py @@ -0,0 +1,157 @@ +import asyncio +import logging +import time +import traceback + +from .compatibility import guarantee_single_callable + +logger = logging.getLogger(__name__) + + +class StatelessServer: + """ + Base server class that handles basic concepts like application instance + creation/pooling, exception handling, and similar, for stateless protocols + (i.e. ones without actual incoming connections to the process) + + Your code should override the handle() method, doing whatever it needs to, + and calling get_or_create_application_instance with a unique `scope_id` + and `scope` for the scope it wants to get. + + If an application instance is found with the same `scope_id`, you are + given its input queue, otherwise one is made for you with the scope provided + and you are given that fresh new input queue. Either way, you should do + something like: + + input_queue = self.get_or_create_application_instance( + "user-123456", + {"type": "testprotocol", "user_id": "123456", "username": "andrew"}, + ) + input_queue.put_nowait(message) + + If you try and create an application instance and there are already + `max_application` instances, the oldest/least recently used one will be + reclaimed and shut down to make space. + + Application coroutines that error will be found periodically (every 100ms + by default) and have their exceptions printed to the console. Override + application_exception() if you want to do more when this happens. + + If you override run(), make sure you handle things like launching the + application checker. + """ + + application_checker_interval = 0.1 + + def __init__(self, application, max_applications=1000): + # Parameters + self.application = application + self.max_applications = max_applications + # Initialisation + self.application_instances = {} + + ### Mainloop and handling + + def run(self): + """ + Runs the asyncio event loop with our handler loop. + """ + event_loop = asyncio.get_event_loop() + asyncio.ensure_future(self.application_checker()) + try: + event_loop.run_until_complete(self.handle()) + except KeyboardInterrupt: + logger.info("Exiting due to Ctrl-C/interrupt") + + async def handle(self): + raise NotImplementedError("You must implement handle()") + + async def application_send(self, scope, message): + """ + Receives outbound sends from applications and handles them. + """ + raise NotImplementedError("You must implement application_send()") + + ### Application instance management + + def get_or_create_application_instance(self, scope_id, scope): + """ + Creates an application instance and returns its queue. + """ + if scope_id in self.application_instances: + self.application_instances[scope_id]["last_used"] = time.time() + return self.application_instances[scope_id]["input_queue"] + # See if we need to delete an old one + while len(self.application_instances) > self.max_applications: + self.delete_oldest_application_instance() + # Make an instance of the application + input_queue = asyncio.Queue() + application_instance = guarantee_single_callable(self.application) + # Run it, and stash the future for later checking + future = asyncio.ensure_future( + application_instance( + scope=scope, + receive=input_queue.get, + send=lambda message: self.application_send(scope, message), + ), + ) + self.application_instances[scope_id] = { + "input_queue": input_queue, + "future": future, + "scope": scope, + "last_used": time.time(), + } + return input_queue + + def delete_oldest_application_instance(self): + """ + Finds and deletes the oldest application instance + """ + oldest_time = min( + details["last_used"] for details in self.application_instances.values() + ) + for scope_id, details in self.application_instances.items(): + if details["last_used"] == oldest_time: + self.delete_application_instance(scope_id) + # Return to make sure we only delete one in case two have + # the same oldest time + return + + def delete_application_instance(self, scope_id): + """ + Removes an application instance (makes sure its task is stopped, + then removes it from the current set) + """ + details = self.application_instances[scope_id] + del self.application_instances[scope_id] + if not details["future"].done(): + details["future"].cancel() + + async def application_checker(self): + """ + Goes through the set of current application instance Futures and cleans up + any that are done/prints exceptions for any that errored. + """ + while True: + await asyncio.sleep(self.application_checker_interval) + for scope_id, details in list(self.application_instances.items()): + if details["future"].done(): + exception = details["future"].exception() + if exception: + await self.application_exception(exception, details) + try: + del self.application_instances[scope_id] + except KeyError: + # Exception handling might have already got here before us. That's fine. + pass + + async def application_exception(self, exception, application_details): + """ + Called whenever an application coroutine has an exception. + """ + logging.error( + "Exception inside application: %s\n%s%s", + exception, + "".join(traceback.format_tb(exception.__traceback__)), + f" {exception}", + ) diff --git a/gestao_raul/Lib/site-packages/asgiref/sync.py b/gestao_raul/Lib/site-packages/asgiref/sync.py new file mode 100644 index 0000000..4427fc2 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/sync.py @@ -0,0 +1,613 @@ +import asyncio +import asyncio.coroutines +import contextvars +import functools +import inspect +import os +import sys +import threading +import warnings +import weakref +from concurrent.futures import Future, ThreadPoolExecutor +from typing import ( + TYPE_CHECKING, + Any, + Awaitable, + Callable, + Coroutine, + Dict, + Generic, + List, + Optional, + TypeVar, + Union, + overload, +) + +from .current_thread_executor import CurrentThreadExecutor +from .local import Local + +if sys.version_info >= (3, 10): + from typing import ParamSpec +else: + from typing_extensions import ParamSpec + +if TYPE_CHECKING: + # This is not available to import at runtime + from _typeshed import OptExcInfo + +_F = TypeVar("_F", bound=Callable[..., Any]) +_P = ParamSpec("_P") +_R = TypeVar("_R") + + +def _restore_context(context: contextvars.Context) -> None: + # Check for changes in contextvars, and set them to the current + # context for downstream consumers + for cvar in context: + cvalue = context.get(cvar) + try: + if cvar.get() != cvalue: + cvar.set(cvalue) + except LookupError: + cvar.set(cvalue) + + +# Python 3.12 deprecates asyncio.iscoroutinefunction() as an alias for +# inspect.iscoroutinefunction(), whilst also removing the _is_coroutine marker. +# The latter is replaced with the inspect.markcoroutinefunction decorator. +# Until 3.12 is the minimum supported Python version, provide a shim. + +if hasattr(inspect, "markcoroutinefunction"): + iscoroutinefunction = inspect.iscoroutinefunction + markcoroutinefunction: Callable[[_F], _F] = inspect.markcoroutinefunction +else: + iscoroutinefunction = asyncio.iscoroutinefunction # type: ignore[assignment] + + def markcoroutinefunction(func: _F) -> _F: + func._is_coroutine = asyncio.coroutines._is_coroutine # type: ignore + return func + + +class ThreadSensitiveContext: + """Async context manager to manage context for thread sensitive mode + + This context manager controls which thread pool executor is used when in + thread sensitive mode. By default, a single thread pool executor is shared + within a process. + + The ThreadSensitiveContext() context manager may be used to specify a + thread pool per context. + + This context manager is re-entrant, so only the outer-most call to + ThreadSensitiveContext will set the context. + + Usage: + + >>> import time + >>> async with ThreadSensitiveContext(): + ... await sync_to_async(time.sleep, 1)() + """ + + def __init__(self): + self.token = None + + async def __aenter__(self): + try: + SyncToAsync.thread_sensitive_context.get() + except LookupError: + self.token = SyncToAsync.thread_sensitive_context.set(self) + + return self + + async def __aexit__(self, exc, value, tb): + if not self.token: + return + + executor = SyncToAsync.context_to_thread_executor.pop(self, None) + if executor: + executor.shutdown() + SyncToAsync.thread_sensitive_context.reset(self.token) + + +class AsyncToSync(Generic[_P, _R]): + """ + Utility class which turns an awaitable that only works on the thread with + the event loop into a synchronous callable that works in a subthread. + + If the call stack contains an async loop, the code runs there. + Otherwise, the code runs in a new loop in a new thread. + + Either way, this thread then pauses and waits to run any thread_sensitive + code called from further down the call stack using SyncToAsync, before + finally exiting once the async task returns. + """ + + # Keeps a reference to the CurrentThreadExecutor in local context, so that + # any sync_to_async inside the wrapped code can find it. + executors: "Local" = Local() + + # When we can't find a CurrentThreadExecutor from the context, such as + # inside create_task, we'll look it up here from the running event loop. + loop_thread_executors: "Dict[asyncio.AbstractEventLoop, CurrentThreadExecutor]" = {} + + def __init__( + self, + awaitable: Union[ + Callable[_P, Coroutine[Any, Any, _R]], + Callable[_P, Awaitable[_R]], + ], + force_new_loop: bool = False, + ): + if not callable(awaitable) or ( + not iscoroutinefunction(awaitable) + and not iscoroutinefunction(getattr(awaitable, "__call__", awaitable)) + ): + # Python does not have very reliable detection of async functions + # (lots of false negatives) so this is just a warning. + warnings.warn( + "async_to_sync was passed a non-async-marked callable", stacklevel=2 + ) + self.awaitable = awaitable + try: + self.__self__ = self.awaitable.__self__ # type: ignore[union-attr] + except AttributeError: + pass + self.force_new_loop = force_new_loop + self.main_event_loop = None + try: + self.main_event_loop = asyncio.get_running_loop() + except RuntimeError: + # There's no event loop in this thread. + pass + + def __call__(self, *args: _P.args, **kwargs: _P.kwargs) -> _R: + __traceback_hide__ = True # noqa: F841 + + if not self.force_new_loop and not self.main_event_loop: + # There's no event loop in this thread. Look for the threadlocal if + # we're inside SyncToAsync + main_event_loop_pid = getattr( + SyncToAsync.threadlocal, "main_event_loop_pid", None + ) + # We make sure the parent loop is from the same process - if + # they've forked, this is not going to be valid any more (#194) + if main_event_loop_pid and main_event_loop_pid == os.getpid(): + self.main_event_loop = getattr( + SyncToAsync.threadlocal, "main_event_loop", None + ) + + # You can't call AsyncToSync from a thread with a running event loop + try: + event_loop = asyncio.get_running_loop() + except RuntimeError: + pass + else: + if event_loop.is_running(): + raise RuntimeError( + "You cannot use AsyncToSync in the same thread as an async event loop - " + "just await the async function directly." + ) + + # Make a future for the return information + call_result: "Future[_R]" = Future() + + # Make a CurrentThreadExecutor we'll use to idle in this thread - we + # need one for every sync frame, even if there's one above us in the + # same thread. + old_executor = getattr(self.executors, "current", None) + current_executor = CurrentThreadExecutor() + self.executors.current = current_executor + + # Wrapping context in list so it can be reassigned from within + # `main_wrap`. + context = [contextvars.copy_context()] + + # Get task context so that parent task knows which task to propagate + # an asyncio.CancelledError to. + task_context = getattr(SyncToAsync.threadlocal, "task_context", None) + + loop = None + # Use call_soon_threadsafe to schedule a synchronous callback on the + # main event loop's thread if it's there, otherwise make a new loop + # in this thread. + try: + awaitable = self.main_wrap( + call_result, + sys.exc_info(), + task_context, + context, + *args, + **kwargs, + ) + + if not (self.main_event_loop and self.main_event_loop.is_running()): + # Make our own event loop - in a new thread - and run inside that. + loop = asyncio.new_event_loop() + self.loop_thread_executors[loop] = current_executor + loop_executor = ThreadPoolExecutor(max_workers=1) + loop_future = loop_executor.submit( + self._run_event_loop, loop, awaitable + ) + if current_executor: + # Run the CurrentThreadExecutor until the future is done + current_executor.run_until_future(loop_future) + # Wait for future and/or allow for exception propagation + loop_future.result() + else: + # Call it inside the existing loop + self.main_event_loop.call_soon_threadsafe( + self.main_event_loop.create_task, awaitable + ) + if current_executor: + # Run the CurrentThreadExecutor until the future is done + current_executor.run_until_future(call_result) + finally: + # Clean up any executor we were running + if loop is not None: + del self.loop_thread_executors[loop] + _restore_context(context[0]) + # Restore old current thread executor state + self.executors.current = old_executor + + # Wait for results from the future. + return call_result.result() + + def _run_event_loop(self, loop, coro): + """ + Runs the given event loop (designed to be called in a thread). + """ + asyncio.set_event_loop(loop) + try: + loop.run_until_complete(coro) + finally: + try: + # mimic asyncio.run() behavior + # cancel unexhausted async generators + tasks = asyncio.all_tasks(loop) + for task in tasks: + task.cancel() + + async def gather(): + await asyncio.gather(*tasks, return_exceptions=True) + + loop.run_until_complete(gather()) + for task in tasks: + if task.cancelled(): + continue + if task.exception() is not None: + loop.call_exception_handler( + { + "message": "unhandled exception during loop shutdown", + "exception": task.exception(), + "task": task, + } + ) + if hasattr(loop, "shutdown_asyncgens"): + loop.run_until_complete(loop.shutdown_asyncgens()) + finally: + loop.close() + asyncio.set_event_loop(self.main_event_loop) + + def __get__(self, parent: Any, objtype: Any) -> Callable[_P, _R]: + """ + Include self for methods + """ + func = functools.partial(self.__call__, parent) + return functools.update_wrapper(func, self.awaitable) + + async def main_wrap( + self, + call_result: "Future[_R]", + exc_info: "OptExcInfo", + task_context: "Optional[List[asyncio.Task[Any]]]", + context: List[contextvars.Context], + *args: _P.args, + **kwargs: _P.kwargs, + ) -> None: + """ + Wraps the awaitable with something that puts the result into the + result/exception future. + """ + + __traceback_hide__ = True # noqa: F841 + + if context is not None: + _restore_context(context[0]) + + current_task = asyncio.current_task() + if current_task is not None and task_context is not None: + task_context.append(current_task) + + try: + # If we have an exception, run the function inside the except block + # after raising it so exc_info is correctly populated. + if exc_info[1]: + try: + raise exc_info[1] + except BaseException: + result = await self.awaitable(*args, **kwargs) + else: + result = await self.awaitable(*args, **kwargs) + except BaseException as e: + call_result.set_exception(e) + else: + call_result.set_result(result) + finally: + if current_task is not None and task_context is not None: + task_context.remove(current_task) + context[0] = contextvars.copy_context() + + +class SyncToAsync(Generic[_P, _R]): + """ + Utility class which turns a synchronous callable into an awaitable that + runs in a threadpool. It also sets a threadlocal inside the thread so + calls to AsyncToSync can escape it. + + If thread_sensitive is passed, the code will run in the same thread as any + outer code. This is needed for underlying Python code that is not + threadsafe (for example, code which handles SQLite database connections). + + If the outermost program is async (i.e. SyncToAsync is outermost), then + this will be a dedicated single sub-thread that all sync code runs in, + one after the other. If the outermost program is sync (i.e. AsyncToSync is + outermost), this will just be the main thread. This is achieved by idling + with a CurrentThreadExecutor while AsyncToSync is blocking its sync parent, + rather than just blocking. + + If executor is passed in, that will be used instead of the loop's default executor. + In order to pass in an executor, thread_sensitive must be set to False, otherwise + a TypeError will be raised. + """ + + # Storage for main event loop references + threadlocal = threading.local() + + # Single-thread executor for thread-sensitive code + single_thread_executor = ThreadPoolExecutor(max_workers=1) + + # Maintain a contextvar for the current execution context. Optionally used + # for thread sensitive mode. + thread_sensitive_context: "contextvars.ContextVar[ThreadSensitiveContext]" = ( + contextvars.ContextVar("thread_sensitive_context") + ) + + # Contextvar that is used to detect if the single thread executor + # would be awaited on while already being used in the same context + deadlock_context: "contextvars.ContextVar[bool]" = contextvars.ContextVar( + "deadlock_context" + ) + + # Maintaining a weak reference to the context ensures that thread pools are + # erased once the context goes out of scope. This terminates the thread pool. + context_to_thread_executor: "weakref.WeakKeyDictionary[ThreadSensitiveContext, ThreadPoolExecutor]" = ( + weakref.WeakKeyDictionary() + ) + + def __init__( + self, + func: Callable[_P, _R], + thread_sensitive: bool = True, + executor: Optional["ThreadPoolExecutor"] = None, + ) -> None: + if ( + not callable(func) + or iscoroutinefunction(func) + or iscoroutinefunction(getattr(func, "__call__", func)) + ): + raise TypeError("sync_to_async can only be applied to sync functions.") + self.func = func + functools.update_wrapper(self, func) + self._thread_sensitive = thread_sensitive + markcoroutinefunction(self) + if thread_sensitive and executor is not None: + raise TypeError("executor must not be set when thread_sensitive is True") + self._executor = executor + try: + self.__self__ = func.__self__ # type: ignore + except AttributeError: + pass + + async def __call__(self, *args: _P.args, **kwargs: _P.kwargs) -> _R: + __traceback_hide__ = True # noqa: F841 + loop = asyncio.get_running_loop() + + # Work out what thread to run the code in + if self._thread_sensitive: + current_thread_executor = getattr(AsyncToSync.executors, "current", None) + if current_thread_executor: + # If we have a parent sync thread above somewhere, use that + executor = current_thread_executor + elif self.thread_sensitive_context.get(None): + # If we have a way of retrieving the current context, attempt + # to use a per-context thread pool executor + thread_sensitive_context = self.thread_sensitive_context.get() + + if thread_sensitive_context in self.context_to_thread_executor: + # Re-use thread executor in current context + executor = self.context_to_thread_executor[thread_sensitive_context] + else: + # Create new thread executor in current context + executor = ThreadPoolExecutor(max_workers=1) + self.context_to_thread_executor[thread_sensitive_context] = executor + elif loop in AsyncToSync.loop_thread_executors: + # Re-use thread executor for running loop + executor = AsyncToSync.loop_thread_executors[loop] + elif self.deadlock_context.get(False): + raise RuntimeError( + "Single thread executor already being used, would deadlock" + ) + else: + # Otherwise, we run it in a fixed single thread + executor = self.single_thread_executor + self.deadlock_context.set(True) + else: + # Use the passed in executor, or the loop's default if it is None + executor = self._executor + + context = contextvars.copy_context() + child = functools.partial(self.func, *args, **kwargs) + func = context.run + task_context: List[asyncio.Task[Any]] = [] + + # Run the code in the right thread + exec_coro = loop.run_in_executor( + executor, + functools.partial( + self.thread_handler, + loop, + sys.exc_info(), + task_context, + func, + child, + ), + ) + ret: _R + try: + ret = await asyncio.shield(exec_coro) + except asyncio.CancelledError: + cancel_parent = True + try: + task = task_context[0] + task.cancel() + try: + await task + cancel_parent = False + except asyncio.CancelledError: + pass + except IndexError: + pass + if exec_coro.done(): + raise + if cancel_parent: + exec_coro.cancel() + ret = await exec_coro + finally: + _restore_context(context) + self.deadlock_context.set(False) + + return ret + + def __get__( + self, parent: Any, objtype: Any + ) -> Callable[_P, Coroutine[Any, Any, _R]]: + """ + Include self for methods + """ + func = functools.partial(self.__call__, parent) + return functools.update_wrapper(func, self.func) + + def thread_handler(self, loop, exc_info, task_context, func, *args, **kwargs): + """ + Wraps the sync application with exception handling. + """ + + __traceback_hide__ = True # noqa: F841 + + # Set the threadlocal for AsyncToSync + self.threadlocal.main_event_loop = loop + self.threadlocal.main_event_loop_pid = os.getpid() + self.threadlocal.task_context = task_context + + # Run the function + # If we have an exception, run the function inside the except block + # after raising it so exc_info is correctly populated. + if exc_info[1]: + try: + raise exc_info[1] + except BaseException: + return func(*args, **kwargs) + else: + return func(*args, **kwargs) + + +@overload +def async_to_sync( + *, + force_new_loop: bool = False, +) -> Callable[ + [Union[Callable[_P, Coroutine[Any, Any, _R]], Callable[_P, Awaitable[_R]]]], + Callable[_P, _R], +]: + ... + + +@overload +def async_to_sync( + awaitable: Union[ + Callable[_P, Coroutine[Any, Any, _R]], + Callable[_P, Awaitable[_R]], + ], + *, + force_new_loop: bool = False, +) -> Callable[_P, _R]: + ... + + +def async_to_sync( + awaitable: Optional[ + Union[ + Callable[_P, Coroutine[Any, Any, _R]], + Callable[_P, Awaitable[_R]], + ] + ] = None, + *, + force_new_loop: bool = False, +) -> Union[ + Callable[ + [Union[Callable[_P, Coroutine[Any, Any, _R]], Callable[_P, Awaitable[_R]]]], + Callable[_P, _R], + ], + Callable[_P, _R], +]: + if awaitable is None: + return lambda f: AsyncToSync( + f, + force_new_loop=force_new_loop, + ) + return AsyncToSync( + awaitable, + force_new_loop=force_new_loop, + ) + + +@overload +def sync_to_async( + *, + thread_sensitive: bool = True, + executor: Optional["ThreadPoolExecutor"] = None, +) -> Callable[[Callable[_P, _R]], Callable[_P, Coroutine[Any, Any, _R]]]: + ... + + +@overload +def sync_to_async( + func: Callable[_P, _R], + *, + thread_sensitive: bool = True, + executor: Optional["ThreadPoolExecutor"] = None, +) -> Callable[_P, Coroutine[Any, Any, _R]]: + ... + + +def sync_to_async( + func: Optional[Callable[_P, _R]] = None, + *, + thread_sensitive: bool = True, + executor: Optional["ThreadPoolExecutor"] = None, +) -> Union[ + Callable[[Callable[_P, _R]], Callable[_P, Coroutine[Any, Any, _R]]], + Callable[_P, Coroutine[Any, Any, _R]], +]: + if func is None: + return lambda f: SyncToAsync( + f, + thread_sensitive=thread_sensitive, + executor=executor, + ) + return SyncToAsync( + func, + thread_sensitive=thread_sensitive, + executor=executor, + ) diff --git a/gestao_raul/Lib/site-packages/asgiref/testing.py b/gestao_raul/Lib/site-packages/asgiref/testing.py new file mode 100644 index 0000000..aa7cff1 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/testing.py @@ -0,0 +1,103 @@ +import asyncio +import contextvars +import time + +from .compatibility import guarantee_single_callable +from .timeout import timeout as async_timeout + + +class ApplicationCommunicator: + """ + Runs an ASGI application in a test mode, allowing sending of + messages to it and retrieval of messages it sends. + """ + + def __init__(self, application, scope): + self.application = guarantee_single_callable(application) + self.scope = scope + self.input_queue = asyncio.Queue() + self.output_queue = asyncio.Queue() + # Clear context - this ensures that context vars set in the testing scope + # are not "leaked" into the application which would normally begin with + # an empty context. In Python >= 3.11 this could also be written as: + # asyncio.create_task(..., context=contextvars.Context()) + self.future = contextvars.Context().run( + asyncio.create_task, + self.application(scope, self.input_queue.get, self.output_queue.put), + ) + + async def wait(self, timeout=1): + """ + Waits for the application to stop itself and returns any exceptions. + """ + try: + async with async_timeout(timeout): + try: + await self.future + self.future.result() + except asyncio.CancelledError: + pass + finally: + if not self.future.done(): + self.future.cancel() + try: + await self.future + except asyncio.CancelledError: + pass + + def stop(self, exceptions=True): + if not self.future.done(): + self.future.cancel() + elif exceptions: + # Give a chance to raise any exceptions + self.future.result() + + def __del__(self): + # Clean up on deletion + try: + self.stop(exceptions=False) + except RuntimeError: + # Event loop already stopped + pass + + async def send_input(self, message): + """ + Sends a single message to the application + """ + # Give it the message + await self.input_queue.put(message) + + async def receive_output(self, timeout=1): + """ + Receives a single message from the application, with optional timeout. + """ + # Make sure there's not an exception to raise from the task + if self.future.done(): + self.future.result() + # Wait and receive the message + try: + async with async_timeout(timeout): + return await self.output_queue.get() + except asyncio.TimeoutError as e: + # See if we have another error to raise inside + if self.future.done(): + self.future.result() + else: + self.future.cancel() + try: + await self.future + except asyncio.CancelledError: + pass + raise e + + async def receive_nothing(self, timeout=0.1, interval=0.01): + """ + Checks that there is no message to receive in the given time. + """ + # `interval` has precedence over `timeout` + start = time.monotonic() + while time.monotonic() - start < timeout: + if not self.output_queue.empty(): + return False + await asyncio.sleep(interval) + return self.output_queue.empty() diff --git a/gestao_raul/Lib/site-packages/asgiref/timeout.py b/gestao_raul/Lib/site-packages/asgiref/timeout.py new file mode 100644 index 0000000..fd5381d --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/timeout.py @@ -0,0 +1,118 @@ +# This code is originally sourced from the aio-libs project "async_timeout", +# under the Apache 2.0 license. You may see the original project at +# https://github.com/aio-libs/async-timeout + +# It is vendored here to reduce chain-dependencies on this library, and +# modified slightly to remove some features we don't use. + + +import asyncio +import warnings +from types import TracebackType +from typing import Any # noqa +from typing import Optional, Type + + +class timeout: + """timeout context manager. + + Useful in cases when you want to apply timeout logic around block + of code or in cases when asyncio.wait_for is not suitable. For example: + + >>> with timeout(0.001): + ... async with aiohttp.get('https://github.com') as r: + ... await r.text() + + + timeout - value in seconds or None to disable timeout logic + loop - asyncio compatible event loop + """ + + def __init__( + self, + timeout: Optional[float], + *, + loop: Optional[asyncio.AbstractEventLoop] = None, + ) -> None: + self._timeout = timeout + if loop is None: + loop = asyncio.get_running_loop() + else: + warnings.warn( + """The loop argument to timeout() is deprecated.""", DeprecationWarning + ) + self._loop = loop + self._task = None # type: Optional[asyncio.Task[Any]] + self._cancelled = False + self._cancel_handler = None # type: Optional[asyncio.Handle] + self._cancel_at = None # type: Optional[float] + + def __enter__(self) -> "timeout": + return self._do_enter() + + def __exit__( + self, + exc_type: Type[BaseException], + exc_val: BaseException, + exc_tb: TracebackType, + ) -> Optional[bool]: + self._do_exit(exc_type) + return None + + async def __aenter__(self) -> "timeout": + return self._do_enter() + + async def __aexit__( + self, + exc_type: Type[BaseException], + exc_val: BaseException, + exc_tb: TracebackType, + ) -> None: + self._do_exit(exc_type) + + @property + def expired(self) -> bool: + return self._cancelled + + @property + def remaining(self) -> Optional[float]: + if self._cancel_at is not None: + return max(self._cancel_at - self._loop.time(), 0.0) + else: + return None + + def _do_enter(self) -> "timeout": + # Support Tornado 5- without timeout + # Details: https://github.com/python/asyncio/issues/392 + if self._timeout is None: + return self + + self._task = asyncio.current_task(self._loop) + if self._task is None: + raise RuntimeError( + "Timeout context manager should be used " "inside a task" + ) + + if self._timeout <= 0: + self._loop.call_soon(self._cancel_task) + return self + + self._cancel_at = self._loop.time() + self._timeout + self._cancel_handler = self._loop.call_at(self._cancel_at, self._cancel_task) + return self + + def _do_exit(self, exc_type: Type[BaseException]) -> None: + if exc_type is asyncio.CancelledError and self._cancelled: + self._cancel_handler = None + self._task = None + raise asyncio.TimeoutError + if self._timeout is not None and self._cancel_handler is not None: + self._cancel_handler.cancel() + self._cancel_handler = None + self._task = None + return None + + def _cancel_task(self) -> None: + if self._task is not None: + self._task.cancel() + self._cancelled = True diff --git a/gestao_raul/Lib/site-packages/asgiref/typing.py b/gestao_raul/Lib/site-packages/asgiref/typing.py new file mode 100644 index 0000000..71c25ed --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/typing.py @@ -0,0 +1,278 @@ +import sys +from typing import ( + Any, + Awaitable, + Callable, + Dict, + Iterable, + Literal, + Optional, + Protocol, + Tuple, + Type, + TypedDict, + Union, +) + +if sys.version_info >= (3, 11): + from typing import NotRequired +else: + from typing_extensions import NotRequired + +__all__ = ( + "ASGIVersions", + "HTTPScope", + "WebSocketScope", + "LifespanScope", + "WWWScope", + "Scope", + "HTTPRequestEvent", + "HTTPResponseStartEvent", + "HTTPResponseBodyEvent", + "HTTPResponseTrailersEvent", + "HTTPResponsePathsendEvent", + "HTTPServerPushEvent", + "HTTPDisconnectEvent", + "WebSocketConnectEvent", + "WebSocketAcceptEvent", + "WebSocketReceiveEvent", + "WebSocketSendEvent", + "WebSocketResponseStartEvent", + "WebSocketResponseBodyEvent", + "WebSocketDisconnectEvent", + "WebSocketCloseEvent", + "LifespanStartupEvent", + "LifespanShutdownEvent", + "LifespanStartupCompleteEvent", + "LifespanStartupFailedEvent", + "LifespanShutdownCompleteEvent", + "LifespanShutdownFailedEvent", + "ASGIReceiveEvent", + "ASGISendEvent", + "ASGIReceiveCallable", + "ASGISendCallable", + "ASGI2Protocol", + "ASGI2Application", + "ASGI3Application", + "ASGIApplication", +) + + +class ASGIVersions(TypedDict): + spec_version: str + version: Union[Literal["2.0"], Literal["3.0"]] + + +class HTTPScope(TypedDict): + type: Literal["http"] + asgi: ASGIVersions + http_version: str + method: str + scheme: str + path: str + raw_path: bytes + query_string: bytes + root_path: str + headers: Iterable[Tuple[bytes, bytes]] + client: Optional[Tuple[str, int]] + server: Optional[Tuple[str, Optional[int]]] + state: NotRequired[Dict[str, Any]] + extensions: Optional[Dict[str, Dict[object, object]]] + + +class WebSocketScope(TypedDict): + type: Literal["websocket"] + asgi: ASGIVersions + http_version: str + scheme: str + path: str + raw_path: bytes + query_string: bytes + root_path: str + headers: Iterable[Tuple[bytes, bytes]] + client: Optional[Tuple[str, int]] + server: Optional[Tuple[str, Optional[int]]] + subprotocols: Iterable[str] + state: NotRequired[Dict[str, Any]] + extensions: Optional[Dict[str, Dict[object, object]]] + + +class LifespanScope(TypedDict): + type: Literal["lifespan"] + asgi: ASGIVersions + state: NotRequired[Dict[str, Any]] + + +WWWScope = Union[HTTPScope, WebSocketScope] +Scope = Union[HTTPScope, WebSocketScope, LifespanScope] + + +class HTTPRequestEvent(TypedDict): + type: Literal["http.request"] + body: bytes + more_body: bool + + +class HTTPResponseDebugEvent(TypedDict): + type: Literal["http.response.debug"] + info: Dict[str, object] + + +class HTTPResponseStartEvent(TypedDict): + type: Literal["http.response.start"] + status: int + headers: Iterable[Tuple[bytes, bytes]] + trailers: bool + + +class HTTPResponseBodyEvent(TypedDict): + type: Literal["http.response.body"] + body: bytes + more_body: bool + + +class HTTPResponseTrailersEvent(TypedDict): + type: Literal["http.response.trailers"] + headers: Iterable[Tuple[bytes, bytes]] + more_trailers: bool + + +class HTTPResponsePathsendEvent(TypedDict): + type: Literal["http.response.pathsend"] + path: str + + +class HTTPServerPushEvent(TypedDict): + type: Literal["http.response.push"] + path: str + headers: Iterable[Tuple[bytes, bytes]] + + +class HTTPDisconnectEvent(TypedDict): + type: Literal["http.disconnect"] + + +class WebSocketConnectEvent(TypedDict): + type: Literal["websocket.connect"] + + +class WebSocketAcceptEvent(TypedDict): + type: Literal["websocket.accept"] + subprotocol: Optional[str] + headers: Iterable[Tuple[bytes, bytes]] + + +class WebSocketReceiveEvent(TypedDict): + type: Literal["websocket.receive"] + bytes: Optional[bytes] + text: Optional[str] + + +class WebSocketSendEvent(TypedDict): + type: Literal["websocket.send"] + bytes: Optional[bytes] + text: Optional[str] + + +class WebSocketResponseStartEvent(TypedDict): + type: Literal["websocket.http.response.start"] + status: int + headers: Iterable[Tuple[bytes, bytes]] + + +class WebSocketResponseBodyEvent(TypedDict): + type: Literal["websocket.http.response.body"] + body: bytes + more_body: bool + + +class WebSocketDisconnectEvent(TypedDict): + type: Literal["websocket.disconnect"] + code: int + + +class WebSocketCloseEvent(TypedDict): + type: Literal["websocket.close"] + code: int + reason: Optional[str] + + +class LifespanStartupEvent(TypedDict): + type: Literal["lifespan.startup"] + + +class LifespanShutdownEvent(TypedDict): + type: Literal["lifespan.shutdown"] + + +class LifespanStartupCompleteEvent(TypedDict): + type: Literal["lifespan.startup.complete"] + + +class LifespanStartupFailedEvent(TypedDict): + type: Literal["lifespan.startup.failed"] + message: str + + +class LifespanShutdownCompleteEvent(TypedDict): + type: Literal["lifespan.shutdown.complete"] + + +class LifespanShutdownFailedEvent(TypedDict): + type: Literal["lifespan.shutdown.failed"] + message: str + + +ASGIReceiveEvent = Union[ + HTTPRequestEvent, + HTTPDisconnectEvent, + WebSocketConnectEvent, + WebSocketReceiveEvent, + WebSocketDisconnectEvent, + LifespanStartupEvent, + LifespanShutdownEvent, +] + + +ASGISendEvent = Union[ + HTTPResponseStartEvent, + HTTPResponseBodyEvent, + HTTPResponseTrailersEvent, + HTTPServerPushEvent, + HTTPDisconnectEvent, + WebSocketAcceptEvent, + WebSocketSendEvent, + WebSocketResponseStartEvent, + WebSocketResponseBodyEvent, + WebSocketCloseEvent, + LifespanStartupCompleteEvent, + LifespanStartupFailedEvent, + LifespanShutdownCompleteEvent, + LifespanShutdownFailedEvent, +] + + +ASGIReceiveCallable = Callable[[], Awaitable[ASGIReceiveEvent]] +ASGISendCallable = Callable[[ASGISendEvent], Awaitable[None]] + + +class ASGI2Protocol(Protocol): + def __init__(self, scope: Scope) -> None: + ... + + async def __call__( + self, receive: ASGIReceiveCallable, send: ASGISendCallable + ) -> None: + ... + + +ASGI2Application = Type[ASGI2Protocol] +ASGI3Application = Callable[ + [ + Scope, + ASGIReceiveCallable, + ASGISendCallable, + ], + Awaitable[None], +] +ASGIApplication = Union[ASGI2Application, ASGI3Application] diff --git a/gestao_raul/Lib/site-packages/asgiref/wsgi.py b/gestao_raul/Lib/site-packages/asgiref/wsgi.py new file mode 100644 index 0000000..65af427 --- /dev/null +++ b/gestao_raul/Lib/site-packages/asgiref/wsgi.py @@ -0,0 +1,166 @@ +from io import BytesIO +from tempfile import SpooledTemporaryFile + +from asgiref.sync import AsyncToSync, sync_to_async + + +class WsgiToAsgi: + """ + Wraps a WSGI application to make it into an ASGI application. + """ + + def __init__(self, wsgi_application): + self.wsgi_application = wsgi_application + + async def __call__(self, scope, receive, send): + """ + ASGI application instantiation point. + We return a new WsgiToAsgiInstance here with the WSGI app + and the scope, ready to respond when it is __call__ed. + """ + await WsgiToAsgiInstance(self.wsgi_application)(scope, receive, send) + + +class WsgiToAsgiInstance: + """ + Per-socket instance of a wrapped WSGI application + """ + + def __init__(self, wsgi_application): + self.wsgi_application = wsgi_application + self.response_started = False + self.response_content_length = None + + async def __call__(self, scope, receive, send): + if scope["type"] != "http": + raise ValueError("WSGI wrapper received a non-HTTP scope") + self.scope = scope + with SpooledTemporaryFile(max_size=65536) as body: + # Alright, wait for the http.request messages + while True: + message = await receive() + if message["type"] != "http.request": + raise ValueError("WSGI wrapper received a non-HTTP-request message") + body.write(message.get("body", b"")) + if not message.get("more_body"): + break + body.seek(0) + # Wrap send so it can be called from the subthread + self.sync_send = AsyncToSync(send) + # Call the WSGI app + await self.run_wsgi_app(body) + + def build_environ(self, scope, body): + """ + Builds a scope and request body into a WSGI environ object. + """ + script_name = scope.get("root_path", "").encode("utf8").decode("latin1") + path_info = scope["path"].encode("utf8").decode("latin1") + if path_info.startswith(script_name): + path_info = path_info[len(script_name) :] + environ = { + "REQUEST_METHOD": scope["method"], + "SCRIPT_NAME": script_name, + "PATH_INFO": path_info, + "QUERY_STRING": scope["query_string"].decode("ascii"), + "SERVER_PROTOCOL": "HTTP/%s" % scope["http_version"], + "wsgi.version": (1, 0), + "wsgi.url_scheme": scope.get("scheme", "http"), + "wsgi.input": body, + "wsgi.errors": BytesIO(), + "wsgi.multithread": True, + "wsgi.multiprocess": True, + "wsgi.run_once": False, + } + # Get server name and port - required in WSGI, not in ASGI + if "server" in scope: + environ["SERVER_NAME"] = scope["server"][0] + environ["SERVER_PORT"] = str(scope["server"][1]) + else: + environ["SERVER_NAME"] = "localhost" + environ["SERVER_PORT"] = "80" + + if scope.get("client") is not None: + environ["REMOTE_ADDR"] = scope["client"][0] + + # Go through headers and make them into environ entries + for name, value in self.scope.get("headers", []): + name = name.decode("latin1") + if name == "content-length": + corrected_name = "CONTENT_LENGTH" + elif name == "content-type": + corrected_name = "CONTENT_TYPE" + else: + corrected_name = "HTTP_%s" % name.upper().replace("-", "_") + # HTTPbis say only ASCII chars are allowed in headers, but we latin1 just in case + value = value.decode("latin1") + if corrected_name in environ: + value = environ[corrected_name] + "," + value + environ[corrected_name] = value + return environ + + def start_response(self, status, response_headers, exc_info=None): + """ + WSGI start_response callable. + """ + # Don't allow re-calling once response has begun + if self.response_started: + raise exc_info[1].with_traceback(exc_info[2]) + # Don't allow re-calling without exc_info + if hasattr(self, "response_start") and exc_info is None: + raise ValueError( + "You cannot call start_response a second time without exc_info" + ) + # Extract status code + status_code, _ = status.split(" ", 1) + status_code = int(status_code) + # Extract headers + headers = [ + (name.lower().encode("ascii"), value.encode("ascii")) + for name, value in response_headers + ] + # Extract content-length + self.response_content_length = None + for name, value in response_headers: + if name.lower() == "content-length": + self.response_content_length = int(value) + # Build and send response start message. + self.response_start = { + "type": "http.response.start", + "status": status_code, + "headers": headers, + } + + @sync_to_async + def run_wsgi_app(self, body): + """ + Called in a subthread to run the WSGI app. We encapsulate like + this so that the start_response callable is called in the same thread. + """ + # Translate the scope and incoming request body into a WSGI environ + environ = self.build_environ(self.scope, body) + # Run the WSGI app + bytes_sent = 0 + for output in self.wsgi_application(environ, self.start_response): + # If this is the first response, include the response headers + if not self.response_started: + self.response_started = True + self.sync_send(self.response_start) + # If the application supplies a Content-Length header + if self.response_content_length is not None: + # The server should not transmit more bytes to the client than the header allows + bytes_allowed = self.response_content_length - bytes_sent + if len(output) > bytes_allowed: + output = output[:bytes_allowed] + self.sync_send( + {"type": "http.response.body", "body": output, "more_body": True} + ) + bytes_sent += len(output) + # The server should stop iterating over the response when enough data has been sent + if bytes_sent == self.response_content_length: + break + # Close connection + if not self.response_started: + self.response_started = True + self.sync_send(self.response_start) + self.sync_send({"type": "http.response.body"}) diff --git a/gestao_raul/Lib/site-packages/distutils-precedence.pth b/gestao_raul/Lib/site-packages/distutils-precedence.pth new file mode 100644 index 0000000..7f009fe --- /dev/null +++ b/gestao_raul/Lib/site-packages/distutils-precedence.pth @@ -0,0 +1 @@ +import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim(); diff --git a/gestao_raul/Lib/site-packages/django/__init__.py b/gestao_raul/Lib/site-packages/django/__init__.py new file mode 100644 index 0000000..543877d --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/__init__.py @@ -0,0 +1,24 @@ +from django.utils.version import get_version + +VERSION = (5, 1, 4, "final", 0) + +__version__ = get_version(VERSION) + + +def setup(set_prefix=True): + """ + Configure the settings (this happens as a side effect of accessing the + first setting), configure logging and populate the app registry. + Set the thread-local urlresolvers script prefix if `set_prefix` is True. + """ + from django.apps import apps + from django.conf import settings + from django.urls import set_script_prefix + from django.utils.log import configure_logging + + configure_logging(settings.LOGGING_CONFIG, settings.LOGGING) + if set_prefix: + set_script_prefix( + "/" if settings.FORCE_SCRIPT_NAME is None else settings.FORCE_SCRIPT_NAME + ) + apps.populate(settings.INSTALLED_APPS) diff --git a/gestao_raul/Lib/site-packages/django/__main__.py b/gestao_raul/Lib/site-packages/django/__main__.py new file mode 100644 index 0000000..7415143 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/__main__.py @@ -0,0 +1,10 @@ +""" +Invokes django-admin when the django module is run as a script. + +Example: python -m django check +""" + +from django.core import management + +if __name__ == "__main__": + management.execute_from_command_line() diff --git a/gestao_raul/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e5a03ec0727d72b19f2e2515d36244f4259a18e GIT binary patch literal 998 zcmY*Y&2G~`5cc|~N%N-`_0FCUmS}oM2vMbJ6e%QClX9>kZH;&BY}we>?iwgcPURsu z!jV_X5l(#r)CD_1hQ^7x=6SHy;~2wx5x+=#LA0# z8VYF~lgP;JGI6GE2e!HbK@qi0-KD9Es3YvTv$RXy74F~Og=b-&vsB>_Zmc+En8h)RG|pliMiEmAf=yxx6?3Wd7Q%mlqkCwPC5ed)Q;PE} zFGQ%<^#C7BmT;xzb-M%^GhH&#Gs!}FD6%LNxR63Jl?gLqtRl&CjdRIj{u%QaUjl2g zHZL)-p2&i&!OEG#_i>?)f@gKxAL#ogYmK!@HqLv_WW#xQhmQPaP^VX6nq+MQBrEW# z?mZ?$Rv&tRt&+ROv$x4AG#9E3h|>IoL2EGT_4>me>5PV_{a#Sn*unnk=)BV<|Z@WQtJFlSCAC4!-gF*L%9G{(yeJ`l}Z@lDG(kLsJb$(j10p;#4IxnXe3Pv~m z#DvbKCs|a?S*q1EVM>P?kzpYo=>z_Ls<>u{c^G{NA!@pAHtJzr-97XvR!1OC&>M~=g1bk82V@eWDg$AVslue4FRjlyYBh8KN_y;WP6GTDRavP b9*Cw1ufCdRv=HpIIZMhAXjraYwOh_Vv;Pm% literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..db97ffe72bf2fb3e38d6bb253af2633687ff3685 GIT binary patch literal 412 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 Wf6A-7!O6+0`|^Bj09w@Imiz*@rA#RR literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/apps/__pycache__/config.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0550254b7949b86b88448e71a92677970c7575b4 GIT binary patch literal 6311 zcmcIo%X1t@8K3ES?Ck97VOh3g9AHQg&IWrEo`J-;5SE-uMNwQ>PGHM0HQF9YBhBut zyJw^9)`$wo1vyZ~;{r$Nm^1$Y2M*l1%!w*aDY$T>AhG#<-TRPiRdHgrrnjfx-`BtI zna#}j2A<#l>)v*G%`pB(A15CRAK%3*e~f|~+)Ry@{x@4DzFEpTR?9M}%}VW#({fbZ zPTfwWRZ(>(^*Ys7wd1#Ze7mh0ue9o~8{Fg7hX$`6vepbY?-~vNW9(t9H_UP->GU#@ zhn%}4++{(IJ$#!4F9PM-MsJ#>OPjqqg?VIic5HI%GW9rxvFjYU$A)|^uW*~bE`scz znQDfE8Q0Ya@0dncRjZ5EZxzOoUtk@y*3=$#RnBk&q*m5TCyh4av^1L^Gn{Dn^^KjF z=n7PGaCJ#u4H6l2vpk4`_o6i6!JR?A1A-Gy?AS_T(Jbrl#bPs)aoCMIacTFWe5Wy6 z+Ukog86XlBEMHatgDB5M>5E<@@`P9?NCL`wBBv_~VpHj$9}{P&elDa%!!40@MyM3C z)IOsjG;Z_I*04%j#_3k+few8lpKAIX9~t5^81(NS+$_exP53H zSOxz3rU-It*FJIz>)71J=&p; z;cLrz9(Q_qkY@pp^H_9}uF@h`Ww4c`u^dSB2PDA(Nw89sS{$1MJtf-V$8;0)NmIgb zefX=fF49ATB@sY<1RdOa(o5r$OQ)Gu!!mebNi<#y23a5DWIj>Haggsok3m#}{RGE| zy20cI0@x)bEu*gBDjn!*pxa1YC7b;`ZVnI6K2SG1>nPX$KZnrbc;%N+%tKYxp|s}B zIusVe&t>e9{n&P>&Q#rVhF2!+Y(Ax`PXV}&HAzjAMw1r-Z4MaXweZ?Qz_B1G+V2|O zstsrlE|>=WerR-myl(*9c5WRqvBy~f+eg~(z`+~`bKGATTd8PG41hk_)CSu{iAB(9h>h@v2sM;*Uj*&yMN1XuM(^)bg34rl?We zH;sI@VEG*Uhri_Wd~PE0xFgW?kD*hr-E#*PD44+=Ee!syDZtqI@z{Ms-6g3cy36wz zH}h+A0PmE37-JMZADT zKe9^Jd|Aw)T2|Ze7!wXkJ~B(IoyrrY#J@qp-Of6_n?Iogk!^M1MR<&T;yLgk9=o5o z_V9~Sk<&bB-XJ}g%A2T+7Z6LBtdz!?1mC6gzlcH+JUb=$Z1Tj*7<#*5DsseEY3b8u zP`rY+U*eS{=X7Ws_fyw&A3wD{Su(Z#GpMNTy~*}a0h*&~d3X;t`5!REU&C0))bZ`7h5H!?5QZU?`b|;DqUW+N668M zSB1z#Y42u9SJ2G}5)c}T)5oH$Ay`H9szzznE2oWQTtjCT{))EgdL=&`1qX1K>tXny zAEiV{7&hvHltJkzt;1B zb!1|7^I%~Q%qnb0TtTSx% zWBW1LYR{s1p2aXv&z!gMGdF5OwcYIeQqc3#oeGC$@n^u6?YN3p+%2U zyl?u`RiZ@3!CIE>^?M2uL9zuw8!Z{X4`nLHD^oNKa7+!#@Ody}Dxf54I}vso38y+% zv*GCgcme5>_8!3vi4VkF5g)YXbsG>fY7xXcMCRE((Cob#4>U|`Cl08BIp{+Q=32g5 zP7&3b5%Gh5B4WMv6DqQ-Lbmkgf5k+(h{AReiZVw29qPDq z9b$m#t?0Xj%0|>JqD{E`P+XdICob=MgRwflrf{&8rQjSTYV=UjhIA=Ox1IKR%wL_} z`}Kh0$Lm_&_;~zQCW21X9b88j{UiI6s&tOVK-SMEM-0ddiQlI*P(nLU>=W|@Rz1k+ zz}F@tua8$(K8ym$W(>se|Fs31yI z!lv}bxoPn{wNY$a)|6ABNfB>S^BpQSsCb8pcd3|qwo_k?JPArjs=S_Oz`Qc=MP|Xt zgb#Jg@4YwP_L>~QDasR$^`k1WmR88nrx~YZ(W?E!9?7Q#}1NI0ekDxsI#9Z zscdfbyKVBGqEwOAx^k*_1d}w2NKa^=NWtzk+WQ_A$^|-uqSCveXWt|gD8cd!4`Nkk Mb=U+OmVd$eFC4c>H~;_u literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/apps/__pycache__/registry.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc6f86c374e1af53c6d746009801cb2bf7ec22b2 GIT binary patch literal 13066 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 bepwV~;2TG#mS8ChR?V8Xjqmc`{LB9f`HYip literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/apps/config.py b/gestao_raul/Lib/site-packages/django/apps/config.py new file mode 100644 index 0000000..28e50e5 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/apps/config.py @@ -0,0 +1,274 @@ +import inspect +import os +from importlib import import_module + +from django.core.exceptions import ImproperlyConfigured +from django.utils.functional import cached_property +from django.utils.module_loading import import_string, module_has_submodule + +APPS_MODULE_NAME = "apps" +MODELS_MODULE_NAME = "models" + + +class AppConfig: + """Class representing a Django application and its configuration.""" + + def __init__(self, app_name, app_module): + # Full Python path to the application e.g. 'django.contrib.admin'. + self.name = app_name + + # Root module for the application e.g. . + self.module = app_module + + # Reference to the Apps registry that holds this AppConfig. Set by the + # registry when it registers the AppConfig instance. + self.apps = None + + # The following attributes could be defined at the class level in a + # subclass, hence the test-and-set pattern. + + # Last component of the Python path to the application e.g. 'admin'. + # This value must be unique across a Django project. + if not hasattr(self, "label"): + self.label = app_name.rpartition(".")[2] + if not self.label.isidentifier(): + raise ImproperlyConfigured( + "The app label '%s' is not a valid Python identifier." % self.label + ) + + # Human-readable name for the application e.g. "Admin". + if not hasattr(self, "verbose_name"): + self.verbose_name = self.label.title() + + # Filesystem path to the application directory e.g. + # '/path/to/django/contrib/admin'. + if not hasattr(self, "path"): + self.path = self._path_from_module(app_module) + + # Module containing models e.g. . Set by import_models(). + # None if the application doesn't have a models module. + self.models_module = None + + # Mapping of lowercase model names to model classes. Initially set to + # None to prevent accidental access before import_models() runs. + self.models = None + + def __repr__(self): + return "<%s: %s>" % (self.__class__.__name__, self.label) + + @cached_property + def default_auto_field(self): + from django.conf import settings + + return settings.DEFAULT_AUTO_FIELD + + @property + def _is_default_auto_field_overridden(self): + return self.__class__.default_auto_field is not AppConfig.default_auto_field + + def _path_from_module(self, module): + """Attempt to determine app's filesystem path from its module.""" + # See #21874 for extended discussion of the behavior of this method in + # various cases. + # Convert to list because __path__ may not support indexing. + paths = list(getattr(module, "__path__", [])) + if len(paths) != 1: + filename = getattr(module, "__file__", None) + if filename is not None: + paths = [os.path.dirname(filename)] + else: + # For unknown reasons, sometimes the list returned by __path__ + # contains duplicates that must be removed (#25246). + paths = list(set(paths)) + if len(paths) > 1: + raise ImproperlyConfigured( + "The app module %r has multiple filesystem locations (%r); " + "you must configure this app with an AppConfig subclass " + "with a 'path' class attribute." % (module, paths) + ) + elif not paths: + raise ImproperlyConfigured( + "The app module %r has no filesystem location, " + "you must configure this app with an AppConfig subclass " + "with a 'path' class attribute." % module + ) + return paths[0] + + @classmethod + def create(cls, entry): + """ + Factory that creates an app config from an entry in INSTALLED_APPS. + """ + # create() eventually returns app_config_class(app_name, app_module). + app_config_class = None + app_name = None + app_module = None + + # If import_module succeeds, entry points to the app module. + try: + app_module = import_module(entry) + except Exception: + pass + else: + # If app_module has an apps submodule that defines a single + # AppConfig subclass, use it automatically. + # To prevent this, an AppConfig subclass can declare a class + # variable default = False. + # If the apps module defines more than one AppConfig subclass, + # the default one can declare default = True. + if module_has_submodule(app_module, APPS_MODULE_NAME): + mod_path = "%s.%s" % (entry, APPS_MODULE_NAME) + mod = import_module(mod_path) + # Check if there's exactly one AppConfig candidate, + # excluding those that explicitly define default = False. + app_configs = [ + (name, candidate) + for name, candidate in inspect.getmembers(mod, inspect.isclass) + if ( + issubclass(candidate, cls) + and candidate is not cls + and getattr(candidate, "default", True) + ) + ] + if len(app_configs) == 1: + app_config_class = app_configs[0][1] + else: + # Check if there's exactly one AppConfig subclass, + # among those that explicitly define default = True. + app_configs = [ + (name, candidate) + for name, candidate in app_configs + if getattr(candidate, "default", False) + ] + if len(app_configs) > 1: + candidates = [repr(name) for name, _ in app_configs] + raise RuntimeError( + "%r declares more than one default AppConfig: " + "%s." % (mod_path, ", ".join(candidates)) + ) + elif len(app_configs) == 1: + app_config_class = app_configs[0][1] + + # Use the default app config class if we didn't find anything. + if app_config_class is None: + app_config_class = cls + app_name = entry + + # If import_string succeeds, entry is an app config class. + if app_config_class is None: + try: + app_config_class = import_string(entry) + except Exception: + pass + # If both import_module and import_string failed, it means that entry + # doesn't have a valid value. + if app_module is None and app_config_class is None: + # If the last component of entry starts with an uppercase letter, + # then it was likely intended to be an app config class; if not, + # an app module. Provide a nice error message in both cases. + mod_path, _, cls_name = entry.rpartition(".") + if mod_path and cls_name[0].isupper(): + # We could simply re-trigger the string import exception, but + # we're going the extra mile and providing a better error + # message for typos in INSTALLED_APPS. + # This may raise ImportError, which is the best exception + # possible if the module at mod_path cannot be imported. + mod = import_module(mod_path) + candidates = [ + repr(name) + for name, candidate in inspect.getmembers(mod, inspect.isclass) + if issubclass(candidate, cls) and candidate is not cls + ] + msg = "Module '%s' does not contain a '%s' class." % ( + mod_path, + cls_name, + ) + if candidates: + msg += " Choices are: %s." % ", ".join(candidates) + raise ImportError(msg) + else: + # Re-trigger the module import exception. + import_module(entry) + + # Check for obvious errors. (This check prevents duck typing, but + # it could be removed if it became a problem in practice.) + if not issubclass(app_config_class, AppConfig): + raise ImproperlyConfigured("'%s' isn't a subclass of AppConfig." % entry) + + # Obtain app name here rather than in AppClass.__init__ to keep + # all error checking for entries in INSTALLED_APPS in one place. + if app_name is None: + try: + app_name = app_config_class.name + except AttributeError: + raise ImproperlyConfigured("'%s' must supply a name attribute." % entry) + + # Ensure app_name points to a valid module. + try: + app_module = import_module(app_name) + except ImportError: + raise ImproperlyConfigured( + "Cannot import '%s'. Check that '%s.%s.name' is correct." + % ( + app_name, + app_config_class.__module__, + app_config_class.__qualname__, + ) + ) + + # Entry is a path to an app config class. + return app_config_class(app_name, app_module) + + def get_model(self, model_name, require_ready=True): + """ + Return the model with the given case-insensitive model_name. + + Raise LookupError if no model exists with this name. + """ + if require_ready: + self.apps.check_models_ready() + else: + self.apps.check_apps_ready() + try: + return self.models[model_name.lower()] + except KeyError: + raise LookupError( + "App '%s' doesn't have a '%s' model." % (self.label, model_name) + ) + + def get_models(self, include_auto_created=False, include_swapped=False): + """ + Return an iterable of models. + + By default, the following models aren't included: + + - auto-created models for many-to-many relations without + an explicit intermediate table, + - models that have been swapped out. + + Set the corresponding keyword argument to True to include such models. + Keyword arguments aren't documented; they're a private API. + """ + self.apps.check_models_ready() + for model in self.models.values(): + if model._meta.auto_created and not include_auto_created: + continue + if model._meta.swapped and not include_swapped: + continue + yield model + + def import_models(self): + # Dictionary of models for this app, primarily maintained in the + # 'all_models' attribute of the Apps this AppConfig is attached to. + self.models = self.apps.all_models[self.label] + + if module_has_submodule(self.module, MODELS_MODULE_NAME): + models_module_name = "%s.%s" % (self.name, MODELS_MODULE_NAME) + self.models_module = import_module(models_module_name) + + def ready(self): + """ + Override this method in subclasses to run code when Django starts. + """ diff --git a/gestao_raul/Lib/site-packages/django/apps/registry.py b/gestao_raul/Lib/site-packages/django/apps/registry.py new file mode 100644 index 0000000..92de607 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/apps/registry.py @@ -0,0 +1,437 @@ +import functools +import sys +import threading +import warnings +from collections import Counter, defaultdict +from functools import partial + +from django.core.exceptions import AppRegistryNotReady, ImproperlyConfigured + +from .config import AppConfig + + +class Apps: + """ + A registry that stores the configuration of installed applications. + + It also keeps track of models, e.g. to provide reverse relations. + """ + + def __init__(self, installed_apps=()): + # installed_apps is set to None when creating the main registry + # because it cannot be populated at that point. Other registries must + # provide a list of installed apps and are populated immediately. + if installed_apps is None and hasattr(sys.modules[__name__], "apps"): + raise RuntimeError("You must supply an installed_apps argument.") + + # Mapping of app labels => model names => model classes. Every time a + # model is imported, ModelBase.__new__ calls apps.register_model which + # creates an entry in all_models. All imported models are registered, + # regardless of whether they're defined in an installed application + # and whether the registry has been populated. Since it isn't possible + # to reimport a module safely (it could reexecute initialization code) + # all_models is never overridden or reset. + self.all_models = defaultdict(dict) + + # Mapping of labels to AppConfig instances for installed apps. + self.app_configs = {} + + # Stack of app_configs. Used to store the current state in + # set_available_apps and set_installed_apps. + self.stored_app_configs = [] + + # Whether the registry is populated. + self.apps_ready = self.models_ready = self.ready = False + # For the autoreloader. + self.ready_event = threading.Event() + + # Lock for thread-safe population. + self._lock = threading.RLock() + self.loading = False + + # Maps ("app_label", "modelname") tuples to lists of functions to be + # called when the corresponding model is ready. Used by this class's + # `lazy_model_operation()` and `do_pending_operations()` methods. + self._pending_operations = defaultdict(list) + + # Populate apps and models, unless it's the main registry. + if installed_apps is not None: + self.populate(installed_apps) + + def populate(self, installed_apps=None): + """ + Load application configurations and models. + + Import each application module and then each model module. + + It is thread-safe and idempotent, but not reentrant. + """ + if self.ready: + return + + # populate() might be called by two threads in parallel on servers + # that create threads before initializing the WSGI callable. + with self._lock: + if self.ready: + return + + # An RLock prevents other threads from entering this section. The + # compare and set operation below is atomic. + if self.loading: + # Prevent reentrant calls to avoid running AppConfig.ready() + # methods twice. + raise RuntimeError("populate() isn't reentrant") + self.loading = True + + # Phase 1: initialize app configs and import app modules. + for entry in installed_apps: + if isinstance(entry, AppConfig): + app_config = entry + else: + app_config = AppConfig.create(entry) + if app_config.label in self.app_configs: + raise ImproperlyConfigured( + "Application labels aren't unique, " + "duplicates: %s" % app_config.label + ) + + self.app_configs[app_config.label] = app_config + app_config.apps = self + + # Check for duplicate app names. + counts = Counter( + app_config.name for app_config in self.app_configs.values() + ) + duplicates = [name for name, count in counts.most_common() if count > 1] + if duplicates: + raise ImproperlyConfigured( + "Application names aren't unique, " + "duplicates: %s" % ", ".join(duplicates) + ) + + self.apps_ready = True + + # Phase 2: import models modules. + for app_config in self.app_configs.values(): + app_config.import_models() + + self.clear_cache() + + self.models_ready = True + + # Phase 3: run ready() methods of app configs. + for app_config in self.get_app_configs(): + app_config.ready() + + self.ready = True + self.ready_event.set() + + def check_apps_ready(self): + """Raise an exception if all apps haven't been imported yet.""" + if not self.apps_ready: + from django.conf import settings + + # If "not ready" is due to unconfigured settings, accessing + # INSTALLED_APPS raises a more helpful ImproperlyConfigured + # exception. + settings.INSTALLED_APPS + raise AppRegistryNotReady("Apps aren't loaded yet.") + + def check_models_ready(self): + """Raise an exception if all models haven't been imported yet.""" + if not self.models_ready: + raise AppRegistryNotReady("Models aren't loaded yet.") + + def get_app_configs(self): + """Import applications and return an iterable of app configs.""" + self.check_apps_ready() + return self.app_configs.values() + + def get_app_config(self, app_label): + """ + Import applications and returns an app config for the given label. + + Raise LookupError if no application exists with this label. + """ + self.check_apps_ready() + try: + return self.app_configs[app_label] + except KeyError: + message = "No installed app with label '%s'." % app_label + for app_config in self.get_app_configs(): + if app_config.name == app_label: + message += " Did you mean '%s'?" % app_config.label + break + raise LookupError(message) + + # This method is performance-critical at least for Django's test suite. + @functools.cache + def get_models(self, include_auto_created=False, include_swapped=False): + """ + Return a list of all installed models. + + By default, the following models aren't included: + + - auto-created models for many-to-many relations without + an explicit intermediate table, + - models that have been swapped out. + + Set the corresponding keyword argument to True to include such models. + """ + self.check_models_ready() + + result = [] + for app_config in self.app_configs.values(): + result.extend(app_config.get_models(include_auto_created, include_swapped)) + return result + + def get_model(self, app_label, model_name=None, require_ready=True): + """ + Return the model matching the given app_label and model_name. + + As a shortcut, app_label may be in the form .. + + model_name is case-insensitive. + + Raise LookupError if no application exists with this label, or no + model exists with this name in the application. Raise ValueError if + called with a single argument that doesn't contain exactly one dot. + """ + if require_ready: + self.check_models_ready() + else: + self.check_apps_ready() + + if model_name is None: + app_label, model_name = app_label.split(".") + + app_config = self.get_app_config(app_label) + + if not require_ready and app_config.models is None: + app_config.import_models() + + return app_config.get_model(model_name, require_ready=require_ready) + + def register_model(self, app_label, model): + # Since this method is called when models are imported, it cannot + # perform imports because of the risk of import loops. It mustn't + # call get_app_config(). + model_name = model._meta.model_name + app_models = self.all_models[app_label] + if model_name in app_models: + if ( + model.__name__ == app_models[model_name].__name__ + and model.__module__ == app_models[model_name].__module__ + ): + warnings.warn( + "Model '%s.%s' was already registered. Reloading models is not " + "advised as it can lead to inconsistencies, most notably with " + "related models." % (app_label, model_name), + RuntimeWarning, + stacklevel=2, + ) + else: + raise RuntimeError( + "Conflicting '%s' models in application '%s': %s and %s." + % (model_name, app_label, app_models[model_name], model) + ) + app_models[model_name] = model + self.do_pending_operations(model) + self.clear_cache() + + def is_installed(self, app_name): + """ + Check whether an application with this name exists in the registry. + + app_name is the full name of the app e.g. 'django.contrib.admin'. + """ + self.check_apps_ready() + return any(ac.name == app_name for ac in self.app_configs.values()) + + def get_containing_app_config(self, object_name): + """ + Look for an app config containing a given object. + + object_name is the dotted Python path to the object. + + Return the app config for the inner application in case of nesting. + Return None if the object isn't in any registered app config. + """ + self.check_apps_ready() + candidates = [] + for app_config in self.app_configs.values(): + if object_name.startswith(app_config.name): + subpath = object_name.removeprefix(app_config.name) + if subpath == "" or subpath[0] == ".": + candidates.append(app_config) + if candidates: + return sorted(candidates, key=lambda ac: -len(ac.name))[0] + + def get_registered_model(self, app_label, model_name): + """ + Similar to get_model(), but doesn't require that an app exists with + the given app_label. + + It's safe to call this method at import time, even while the registry + is being populated. + """ + model = self.all_models[app_label].get(model_name.lower()) + if model is None: + raise LookupError("Model '%s.%s' not registered." % (app_label, model_name)) + return model + + @functools.cache + def get_swappable_settings_name(self, to_string): + """ + For a given model string (e.g. "auth.User"), return the name of the + corresponding settings name if it refers to a swappable model. If the + referred model is not swappable, return None. + + This method is decorated with @functools.cache because it's performance + critical when it comes to migrations. Since the swappable settings don't + change after Django has loaded the settings, there is no reason to get + the respective settings attribute over and over again. + """ + to_string = to_string.lower() + for model in self.get_models(include_swapped=True): + swapped = model._meta.swapped + # Is this model swapped out for the model given by to_string? + if swapped and swapped.lower() == to_string: + return model._meta.swappable + # Is this model swappable and the one given by to_string? + if model._meta.swappable and model._meta.label_lower == to_string: + return model._meta.swappable + return None + + def set_available_apps(self, available): + """ + Restrict the set of installed apps used by get_app_config[s]. + + available must be an iterable of application names. + + set_available_apps() must be balanced with unset_available_apps(). + + Primarily used for performance optimization in TransactionTestCase. + + This method is safe in the sense that it doesn't trigger any imports. + """ + available = set(available) + installed = {app_config.name for app_config in self.get_app_configs()} + if not available.issubset(installed): + raise ValueError( + "Available apps isn't a subset of installed apps, extra apps: %s" + % ", ".join(available - installed) + ) + + self.stored_app_configs.append(self.app_configs) + self.app_configs = { + label: app_config + for label, app_config in self.app_configs.items() + if app_config.name in available + } + self.clear_cache() + + def unset_available_apps(self): + """Cancel a previous call to set_available_apps().""" + self.app_configs = self.stored_app_configs.pop() + self.clear_cache() + + def set_installed_apps(self, installed): + """ + Enable a different set of installed apps for get_app_config[s]. + + installed must be an iterable in the same format as INSTALLED_APPS. + + set_installed_apps() must be balanced with unset_installed_apps(), + even if it exits with an exception. + + Primarily used as a receiver of the setting_changed signal in tests. + + This method may trigger new imports, which may add new models to the + registry of all imported models. They will stay in the registry even + after unset_installed_apps(). Since it isn't possible to replay + imports safely (e.g. that could lead to registering listeners twice), + models are registered when they're imported and never removed. + """ + if not self.ready: + raise AppRegistryNotReady("App registry isn't ready yet.") + self.stored_app_configs.append(self.app_configs) + self.app_configs = {} + self.apps_ready = self.models_ready = self.loading = self.ready = False + self.clear_cache() + self.populate(installed) + + def unset_installed_apps(self): + """Cancel a previous call to set_installed_apps().""" + self.app_configs = self.stored_app_configs.pop() + self.apps_ready = self.models_ready = self.ready = True + self.clear_cache() + + def clear_cache(self): + """ + Clear all internal caches, for methods that alter the app registry. + + This is mostly used in tests. + """ + self.get_swappable_settings_name.cache_clear() + # Call expire cache on each model. This will purge + # the relation tree and the fields cache. + self.get_models.cache_clear() + if self.ready: + # Circumvent self.get_models() to prevent that the cache is refilled. + # This particularly prevents that an empty value is cached while cloning. + for app_config in self.app_configs.values(): + for model in app_config.get_models(include_auto_created=True): + model._meta._expire_cache() + + def lazy_model_operation(self, function, *model_keys): + """ + Take a function and a number of ("app_label", "modelname") tuples, and + when all the corresponding models have been imported and registered, + call the function with the model classes as its arguments. + + The function passed to this method must accept exactly n models as + arguments, where n=len(model_keys). + """ + # Base case: no arguments, just execute the function. + if not model_keys: + function() + # Recursive case: take the head of model_keys, wait for the + # corresponding model class to be imported and registered, then apply + # that argument to the supplied function. Pass the resulting partial + # to lazy_model_operation() along with the remaining model args and + # repeat until all models are loaded and all arguments are applied. + else: + next_model, *more_models = model_keys + + # This will be executed after the class corresponding to next_model + # has been imported and registered. The `func` attribute provides + # duck-type compatibility with partials. + def apply_next_model(model): + next_function = partial(apply_next_model.func, model) + self.lazy_model_operation(next_function, *more_models) + + apply_next_model.func = function + + # If the model has already been imported and registered, partially + # apply it to the function now. If not, add it to the list of + # pending operations for the model, where it will be executed with + # the model class as its sole argument once the model is ready. + try: + model_class = self.get_registered_model(*next_model) + except LookupError: + self._pending_operations[next_model].append(apply_next_model) + else: + apply_next_model(model_class) + + def do_pending_operations(self, model): + """ + Take a newly-prepared model and pass it to each function waiting for + it. This is called at the very end of Apps.register_model(). + """ + key = model._meta.app_label, model._meta.model_name + for function in self._pending_operations.pop(key, []): + function(model) + + +apps = Apps(installed_apps=None) diff --git a/gestao_raul/Lib/site-packages/django/conf/__init__.py b/gestao_raul/Lib/site-packages/django/conf/__init__.py new file mode 100644 index 0000000..5568d7c --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/__init__.py @@ -0,0 +1,272 @@ +""" +Settings and configuration for Django. + +Read values from the module specified by the DJANGO_SETTINGS_MODULE environment +variable, and then from django.conf.global_settings; see the global_settings.py +for a list of all possible variables. +""" + +import importlib +import os +import time +import traceback +import warnings +from pathlib import Path + +import django +from django.conf import global_settings +from django.core.exceptions import ImproperlyConfigured +from django.utils.deprecation import RemovedInDjango60Warning +from django.utils.functional import LazyObject, empty + +ENVIRONMENT_VARIABLE = "DJANGO_SETTINGS_MODULE" +DEFAULT_STORAGE_ALIAS = "default" +STATICFILES_STORAGE_ALIAS = "staticfiles" + +# RemovedInDjango60Warning. +FORMS_URLFIELD_ASSUME_HTTPS_DEPRECATED_MSG = ( + "The FORMS_URLFIELD_ASSUME_HTTPS transitional setting is deprecated." +) + + +class SettingsReference(str): + """ + String subclass which references a current settings value. It's treated as + the value in memory but serializes to a settings.NAME attribute reference. + """ + + def __new__(self, value, setting_name): + return str.__new__(self, value) + + def __init__(self, value, setting_name): + self.setting_name = setting_name + + +class LazySettings(LazyObject): + """ + A lazy proxy for either global Django settings or a custom settings object. + The user can manually configure settings prior to using them. Otherwise, + Django uses the settings module pointed to by DJANGO_SETTINGS_MODULE. + """ + + def _setup(self, name=None): + """ + Load the settings module pointed to by the environment variable. This + is used the first time settings are needed, if the user hasn't + configured settings manually. + """ + settings_module = os.environ.get(ENVIRONMENT_VARIABLE) + if not settings_module: + desc = ("setting %s" % name) if name else "settings" + raise ImproperlyConfigured( + "Requested %s, but settings are not configured. " + "You must either define the environment variable %s " + "or call settings.configure() before accessing settings." + % (desc, ENVIRONMENT_VARIABLE) + ) + + self._wrapped = Settings(settings_module) + + def __repr__(self): + # Hardcode the class name as otherwise it yields 'Settings'. + if self._wrapped is empty: + return "" + return '' % { + "settings_module": self._wrapped.SETTINGS_MODULE, + } + + def __getattr__(self, name): + """Return the value of a setting and cache it in self.__dict__.""" + if (_wrapped := self._wrapped) is empty: + self._setup(name) + _wrapped = self._wrapped + val = getattr(_wrapped, name) + + # Special case some settings which require further modification. + # This is done here for performance reasons so the modified value is cached. + if name in {"MEDIA_URL", "STATIC_URL"} and val is not None: + val = self._add_script_prefix(val) + elif name == "SECRET_KEY" and not val: + raise ImproperlyConfigured("The SECRET_KEY setting must not be empty.") + + self.__dict__[name] = val + return val + + def __setattr__(self, name, value): + """ + Set the value of setting. Clear all cached values if _wrapped changes + (@override_settings does this) or clear single values when set. + """ + if name == "_wrapped": + self.__dict__.clear() + else: + self.__dict__.pop(name, None) + super().__setattr__(name, value) + + def __delattr__(self, name): + """Delete a setting and clear it from cache if needed.""" + super().__delattr__(name) + self.__dict__.pop(name, None) + + def configure(self, default_settings=global_settings, **options): + """ + Called to manually configure the settings. The 'default_settings' + parameter sets where to retrieve any unspecified values from (its + argument must support attribute access (__getattr__)). + """ + if self._wrapped is not empty: + raise RuntimeError("Settings already configured.") + holder = UserSettingsHolder(default_settings) + for name, value in options.items(): + if not name.isupper(): + raise TypeError("Setting %r must be uppercase." % name) + setattr(holder, name, value) + self._wrapped = holder + + @staticmethod + def _add_script_prefix(value): + """ + Add SCRIPT_NAME prefix to relative paths. + + Useful when the app is being served at a subpath and manually prefixing + subpath to STATIC_URL and MEDIA_URL in settings is inconvenient. + """ + # Don't apply prefix to absolute paths and URLs. + if value.startswith(("http://", "https://", "/")): + return value + from django.urls import get_script_prefix + + return "%s%s" % (get_script_prefix(), value) + + @property + def configured(self): + """Return True if the settings have already been configured.""" + return self._wrapped is not empty + + def _show_deprecation_warning(self, message, category): + stack = traceback.extract_stack() + # Show a warning if the setting is used outside of Django. + # Stack index: -1 this line, -2 the property, -3 the + # LazyObject __getattribute__(), -4 the caller. + filename, _, _, _ = stack[-4] + if not filename.startswith(os.path.dirname(django.__file__)): + warnings.warn(message, category, stacklevel=2) + + +class Settings: + def __init__(self, settings_module): + # update this dict from global settings (but only for ALL_CAPS settings) + for setting in dir(global_settings): + if setting.isupper(): + setattr(self, setting, getattr(global_settings, setting)) + + # store the settings module in case someone later cares + self.SETTINGS_MODULE = settings_module + + mod = importlib.import_module(self.SETTINGS_MODULE) + + tuple_settings = ( + "ALLOWED_HOSTS", + "INSTALLED_APPS", + "TEMPLATE_DIRS", + "LOCALE_PATHS", + "SECRET_KEY_FALLBACKS", + ) + self._explicit_settings = set() + for setting in dir(mod): + if setting.isupper(): + setting_value = getattr(mod, setting) + + if setting in tuple_settings and not isinstance( + setting_value, (list, tuple) + ): + raise ImproperlyConfigured( + "The %s setting must be a list or a tuple." % setting + ) + setattr(self, setting, setting_value) + self._explicit_settings.add(setting) + + if self.is_overridden("FORMS_URLFIELD_ASSUME_HTTPS"): + warnings.warn( + FORMS_URLFIELD_ASSUME_HTTPS_DEPRECATED_MSG, + RemovedInDjango60Warning, + ) + + if hasattr(time, "tzset") and self.TIME_ZONE: + # When we can, attempt to validate the timezone. If we can't find + # this file, no check happens and it's harmless. + zoneinfo_root = Path("/usr/share/zoneinfo") + zone_info_file = zoneinfo_root.joinpath(*self.TIME_ZONE.split("/")) + if zoneinfo_root.exists() and not zone_info_file.exists(): + raise ValueError("Incorrect timezone setting: %s" % self.TIME_ZONE) + # Move the time zone info into os.environ. See ticket #2315 for why + # we don't do this unconditionally (breaks Windows). + os.environ["TZ"] = self.TIME_ZONE + time.tzset() + + def is_overridden(self, setting): + return setting in self._explicit_settings + + def __repr__(self): + return '<%(cls)s "%(settings_module)s">' % { + "cls": self.__class__.__name__, + "settings_module": self.SETTINGS_MODULE, + } + + +class UserSettingsHolder: + """Holder for user configured settings.""" + + # SETTINGS_MODULE doesn't make much sense in the manually configured + # (standalone) case. + SETTINGS_MODULE = None + + def __init__(self, default_settings): + """ + Requests for configuration variables not in this class are satisfied + from the module specified in default_settings (if possible). + """ + self.__dict__["_deleted"] = set() + self.default_settings = default_settings + + def __getattr__(self, name): + if not name.isupper() or name in self._deleted: + raise AttributeError + return getattr(self.default_settings, name) + + def __setattr__(self, name, value): + self._deleted.discard(name) + if name == "FORMS_URLFIELD_ASSUME_HTTPS": + warnings.warn( + FORMS_URLFIELD_ASSUME_HTTPS_DEPRECATED_MSG, + RemovedInDjango60Warning, + ) + super().__setattr__(name, value) + + def __delattr__(self, name): + self._deleted.add(name) + if hasattr(self, name): + super().__delattr__(name) + + def __dir__(self): + return sorted( + s + for s in [*self.__dict__, *dir(self.default_settings)] + if s not in self._deleted + ) + + def is_overridden(self, setting): + deleted = setting in self._deleted + set_locally = setting in self.__dict__ + set_on_default = getattr( + self.default_settings, "is_overridden", lambda s: False + )(setting) + return deleted or set_locally or set_on_default + + def __repr__(self): + return "<%(cls)s>" % { + "cls": self.__class__.__name__, + } + + +settings = LazySettings() diff --git a/gestao_raul/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..511f6473eb4f11f905b99eeca1a88e3f1ec2075e GIT binary patch literal 9380 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/__pycache__/global_settings.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8f70608c57ba1762c9f944a04535c4c9923338ff GIT binary patch literal 9249 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 'fr' fallback logic. +""" + +LANG_INFO = { + "af": { + "bidi": False, + "code": "af", + "name": "Afrikaans", + "name_local": "Afrikaans", + }, + "ar": { + "bidi": True, + "code": "ar", + "name": "Arabic", + "name_local": "العربيّة", + }, + "ar-dz": { + "bidi": True, + "code": "ar-dz", + "name": "Algerian Arabic", + "name_local": "العربية الجزائرية", + }, + "ast": { + "bidi": False, + "code": "ast", + "name": "Asturian", + "name_local": "asturianu", + }, + "az": { + "bidi": True, + "code": "az", + "name": "Azerbaijani", + "name_local": "Azərbaycanca", + }, + "be": { + "bidi": False, + "code": "be", + "name": "Belarusian", + "name_local": "беларуская", + }, + "bg": { + "bidi": False, + "code": "bg", + "name": "Bulgarian", + "name_local": "български", + }, + "bn": { + "bidi": False, + "code": "bn", + "name": "Bengali", + "name_local": "বাংলা", + }, + "br": { + "bidi": False, + "code": "br", + "name": "Breton", + "name_local": "brezhoneg", + }, + "bs": { + "bidi": False, + "code": "bs", + "name": "Bosnian", + "name_local": "bosanski", + }, + "ca": { + "bidi": False, + "code": "ca", + "name": "Catalan", + "name_local": "català", + }, + "ckb": { + "bidi": True, + "code": "ckb", + "name": "Central Kurdish (Sorani)", + "name_local": "کوردی", + }, + "cs": { + "bidi": False, + "code": "cs", + "name": "Czech", + "name_local": "česky", + }, + "cy": { + "bidi": False, + "code": "cy", + "name": "Welsh", + "name_local": "Cymraeg", + }, + "da": { + "bidi": False, + "code": "da", + "name": "Danish", + "name_local": "dansk", + }, + "de": { + "bidi": False, + "code": "de", + "name": "German", + "name_local": "Deutsch", + }, + "dsb": { + "bidi": False, + "code": "dsb", + "name": "Lower Sorbian", + "name_local": "dolnoserbski", + }, + "el": { + "bidi": False, + "code": "el", + "name": "Greek", + "name_local": "Ελληνικά", + }, + "en": { + "bidi": False, + "code": "en", + "name": "English", + "name_local": "English", + }, + "en-au": { + "bidi": False, + "code": "en-au", + "name": "Australian English", + "name_local": "Australian English", + }, + "en-gb": { + "bidi": False, + "code": "en-gb", + "name": "British English", + "name_local": "British English", + }, + "eo": { + "bidi": False, + "code": "eo", + "name": "Esperanto", + "name_local": "Esperanto", + }, + "es": { + "bidi": False, + "code": "es", + "name": "Spanish", + "name_local": "español", + }, + "es-ar": { + "bidi": False, + "code": "es-ar", + "name": "Argentinian Spanish", + "name_local": "español de Argentina", + }, + "es-co": { + "bidi": False, + "code": "es-co", + "name": "Colombian Spanish", + "name_local": "español de Colombia", + }, + "es-mx": { + "bidi": False, + "code": "es-mx", + "name": "Mexican Spanish", + "name_local": "español de Mexico", + }, + "es-ni": { + "bidi": False, + "code": "es-ni", + "name": "Nicaraguan Spanish", + "name_local": "español de Nicaragua", + }, + "es-ve": { + "bidi": False, + "code": "es-ve", + "name": "Venezuelan Spanish", + "name_local": "español de Venezuela", + }, + "et": { + "bidi": False, + "code": "et", + "name": "Estonian", + "name_local": "eesti", + }, + "eu": { + "bidi": False, + "code": "eu", + "name": "Basque", + "name_local": "Basque", + }, + "fa": { + "bidi": True, + "code": "fa", + "name": "Persian", + "name_local": "فارسی", + }, + "fi": { + "bidi": False, + "code": "fi", + "name": "Finnish", + "name_local": "suomi", + }, + "fr": { + "bidi": False, + "code": "fr", + "name": "French", + "name_local": "français", + }, + "fy": { + "bidi": False, + "code": "fy", + "name": "Frisian", + "name_local": "frysk", + }, + "ga": { + "bidi": False, + "code": "ga", + "name": "Irish", + "name_local": "Gaeilge", + }, + "gd": { + "bidi": False, + "code": "gd", + "name": "Scottish Gaelic", + "name_local": "Gàidhlig", + }, + "gl": { + "bidi": False, + "code": "gl", + "name": "Galician", + "name_local": "galego", + }, + "he": { + "bidi": True, + "code": "he", + "name": "Hebrew", + "name_local": "עברית", + }, + "hi": { + "bidi": False, + "code": "hi", + "name": "Hindi", + "name_local": "हिंदी", + }, + "hr": { + "bidi": False, + "code": "hr", + "name": "Croatian", + "name_local": "Hrvatski", + }, + "hsb": { + "bidi": False, + "code": "hsb", + "name": "Upper Sorbian", + "name_local": "hornjoserbsce", + }, + "hu": { + "bidi": False, + "code": "hu", + "name": "Hungarian", + "name_local": "Magyar", + }, + "hy": { + "bidi": False, + "code": "hy", + "name": "Armenian", + "name_local": "հայերեն", + }, + "ia": { + "bidi": False, + "code": "ia", + "name": "Interlingua", + "name_local": "Interlingua", + }, + "io": { + "bidi": False, + "code": "io", + "name": "Ido", + "name_local": "ido", + }, + "id": { + "bidi": False, + "code": "id", + "name": "Indonesian", + "name_local": "Bahasa Indonesia", + }, + "ig": { + "bidi": False, + "code": "ig", + "name": "Igbo", + "name_local": "Asụsụ Ìgbò", + }, + "is": { + "bidi": False, + "code": "is", + "name": "Icelandic", + "name_local": "Íslenska", + }, + "it": { + "bidi": False, + "code": "it", + "name": "Italian", + "name_local": "italiano", + }, + "ja": { + "bidi": False, + "code": "ja", + "name": "Japanese", + "name_local": "日本語", + }, + "ka": { + "bidi": False, + "code": "ka", + "name": "Georgian", + "name_local": "ქართული", + }, + "kab": { + "bidi": False, + "code": "kab", + "name": "Kabyle", + "name_local": "taqbaylit", + }, + "kk": { + "bidi": False, + "code": "kk", + "name": "Kazakh", + "name_local": "Қазақ", + }, + "km": { + "bidi": False, + "code": "km", + "name": "Khmer", + "name_local": "Khmer", + }, + "kn": { + "bidi": False, + "code": "kn", + "name": "Kannada", + "name_local": "Kannada", + }, + "ko": { + "bidi": False, + "code": "ko", + "name": "Korean", + "name_local": "한국어", + }, + "ky": { + "bidi": False, + "code": "ky", + "name": "Kyrgyz", + "name_local": "Кыргызча", + }, + "lb": { + "bidi": False, + "code": "lb", + "name": "Luxembourgish", + "name_local": "Lëtzebuergesch", + }, + "lt": { + "bidi": False, + "code": "lt", + "name": "Lithuanian", + "name_local": "Lietuviškai", + }, + "lv": { + "bidi": False, + "code": "lv", + "name": "Latvian", + "name_local": "latviešu", + }, + "mk": { + "bidi": False, + "code": "mk", + "name": "Macedonian", + "name_local": "Македонски", + }, + "ml": { + "bidi": False, + "code": "ml", + "name": "Malayalam", + "name_local": "മലയാളം", + }, + "mn": { + "bidi": False, + "code": "mn", + "name": "Mongolian", + "name_local": "Mongolian", + }, + "mr": { + "bidi": False, + "code": "mr", + "name": "Marathi", + "name_local": "मराठी", + }, + "ms": { + "bidi": False, + "code": "ms", + "name": "Malay", + "name_local": "Bahasa Melayu", + }, + "my": { + "bidi": False, + "code": "my", + "name": "Burmese", + "name_local": "မြန်မာဘာသာ", + }, + "nb": { + "bidi": False, + "code": "nb", + "name": "Norwegian Bokmal", + "name_local": "norsk (bokmål)", + }, + "ne": { + "bidi": False, + "code": "ne", + "name": "Nepali", + "name_local": "नेपाली", + }, + "nl": { + "bidi": False, + "code": "nl", + "name": "Dutch", + "name_local": "Nederlands", + }, + "nn": { + "bidi": False, + "code": "nn", + "name": "Norwegian Nynorsk", + "name_local": "norsk (nynorsk)", + }, + "no": { + "bidi": False, + "code": "no", + "name": "Norwegian", + "name_local": "norsk", + }, + "os": { + "bidi": False, + "code": "os", + "name": "Ossetic", + "name_local": "Ирон", + }, + "pa": { + "bidi": False, + "code": "pa", + "name": "Punjabi", + "name_local": "Punjabi", + }, + "pl": { + "bidi": False, + "code": "pl", + "name": "Polish", + "name_local": "polski", + }, + "pt": { + "bidi": False, + "code": "pt", + "name": "Portuguese", + "name_local": "Português", + }, + "pt-br": { + "bidi": False, + "code": "pt-br", + "name": "Brazilian Portuguese", + "name_local": "Português Brasileiro", + }, + "ro": { + "bidi": False, + "code": "ro", + "name": "Romanian", + "name_local": "Română", + }, + "ru": { + "bidi": False, + "code": "ru", + "name": "Russian", + "name_local": "Русский", + }, + "sk": { + "bidi": False, + "code": "sk", + "name": "Slovak", + "name_local": "slovensky", + }, + "sl": { + "bidi": False, + "code": "sl", + "name": "Slovenian", + "name_local": "Slovenščina", + }, + "sq": { + "bidi": False, + "code": "sq", + "name": "Albanian", + "name_local": "shqip", + }, + "sr": { + "bidi": False, + "code": "sr", + "name": "Serbian", + "name_local": "српски", + }, + "sr-latn": { + "bidi": False, + "code": "sr-latn", + "name": "Serbian Latin", + "name_local": "srpski (latinica)", + }, + "sv": { + "bidi": False, + "code": "sv", + "name": "Swedish", + "name_local": "svenska", + }, + "sw": { + "bidi": False, + "code": "sw", + "name": "Swahili", + "name_local": "Kiswahili", + }, + "ta": { + "bidi": False, + "code": "ta", + "name": "Tamil", + "name_local": "தமிழ்", + }, + "te": { + "bidi": False, + "code": "te", + "name": "Telugu", + "name_local": "తెలుగు", + }, + "tg": { + "bidi": False, + "code": "tg", + "name": "Tajik", + "name_local": "тоҷикӣ", + }, + "th": { + "bidi": False, + "code": "th", + "name": "Thai", + "name_local": "ภาษาไทย", + }, + "tk": { + "bidi": False, + "code": "tk", + "name": "Turkmen", + "name_local": "Türkmençe", + }, + "tr": { + "bidi": False, + "code": "tr", + "name": "Turkish", + "name_local": "Türkçe", + }, + "tt": { + "bidi": False, + "code": "tt", + "name": "Tatar", + "name_local": "Татарча", + }, + "udm": { + "bidi": False, + "code": "udm", + "name": "Udmurt", + "name_local": "Удмурт", + }, + "ug": { + "bidi": True, + "code": "ug", + "name": "Uyghur", + "name_local": "ئۇيغۇرچە", + }, + "uk": { + "bidi": False, + "code": "uk", + "name": "Ukrainian", + "name_local": "Українська", + }, + "ur": { + "bidi": True, + "code": "ur", + "name": "Urdu", + "name_local": "اردو", + }, + "uz": { + "bidi": False, + "code": "uz", + "name": "Uzbek", + "name_local": "oʻzbek tili", + }, + "vi": { + "bidi": False, + "code": "vi", + "name": "Vietnamese", + "name_local": "Tiếng Việt", + }, + "zh-cn": { + "fallback": ["zh-hans"], + }, + "zh-hans": { + "bidi": False, + "code": "zh-hans", + "name": "Simplified Chinese", + "name_local": "简体中文", + }, + "zh-hant": { + "bidi": False, + "code": "zh-hant", + "name": "Traditional Chinese", + "name_local": "繁體中文", + }, + "zh-hk": { + "fallback": ["zh-hant"], + }, + "zh-mo": { + "fallback": ["zh-hant"], + }, + "zh-my": { + "fallback": ["zh-hans"], + }, + "zh-sg": { + "fallback": ["zh-hans"], + }, + "zh-tw": { + "fallback": ["zh-hant"], + }, +} diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..59de633befb7fdf835d4b37785d5c9bf1d8d691e GIT binary patch literal 7676 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, 2019-2020,2022-2023 +# Stephen Cox , 2011-2012 +# unklphil , 2014,2019 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-04 06:49+0000\n" +"Last-Translator: F Wolff , 2019-2020,2022-2023\n" +"Language-Team: Afrikaans (http://app.transifex.com/django/django/language/" +"af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabies" + +msgid "Algerian Arabic" +msgstr "Algeriese Arabies" + +msgid "Asturian" +msgstr "Asturies" + +msgid "Azerbaijani" +msgstr "Aserbeidjans" + +msgid "Bulgarian" +msgstr "Bulgaars" + +msgid "Belarusian" +msgstr "Wit-Russies" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Bretons" + +msgid "Bosnian" +msgstr "Bosnies" + +msgid "Catalan" +msgstr "Katalaans" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "Tsjeggies" + +msgid "Welsh" +msgstr "Wallies" + +msgid "Danish" +msgstr "Deens" + +msgid "German" +msgstr "Duits" + +msgid "Lower Sorbian" +msgstr "Neder-Sorbies" + +msgid "Greek" +msgstr "Grieks" + +msgid "English" +msgstr "Engels" + +msgid "Australian English" +msgstr "Australiese Engels" + +msgid "British English" +msgstr "Britse Engels" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spaans" + +msgid "Argentinian Spanish" +msgstr "Argentynse Spaans" + +msgid "Colombian Spanish" +msgstr "Kolombiaanse Spaans" + +msgid "Mexican Spanish" +msgstr "Meksikaanse Spaans" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguaanse Spaans" + +msgid "Venezuelan Spanish" +msgstr "Venezolaanse Spaans" + +msgid "Estonian" +msgstr "Estnies" + +msgid "Basque" +msgstr "Baskies" + +msgid "Persian" +msgstr "Persies" + +msgid "Finnish" +msgstr "Fins" + +msgid "French" +msgstr "Fraans" + +msgid "Frisian" +msgstr "Fries" + +msgid "Irish" +msgstr "Iers" + +msgid "Scottish Gaelic" +msgstr "Skots-Gaelies" + +msgid "Galician" +msgstr "Galicies" + +msgid "Hebrew" +msgstr "Hebreeus" + +msgid "Hindi" +msgstr "Hindoe" + +msgid "Croatian" +msgstr "Kroaties" + +msgid "Upper Sorbian" +msgstr "Opper-Sorbies" + +msgid "Hungarian" +msgstr "Hongaars" + +msgid "Armenian" +msgstr "Armeens" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesies" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Yslands" + +msgid "Italian" +msgstr "Italiaans" + +msgid "Japanese" +msgstr "Japannees" + +msgid "Georgian" +msgstr "Georgian" + +msgid "Kabyle" +msgstr "Kabilies" + +msgid "Kazakh" +msgstr "Kazakh" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreaans" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Luxemburgs" + +msgid "Lithuanian" +msgstr "Litaus" + +msgid "Latvian" +msgstr "Lets" + +msgid "Macedonian" +msgstr "Macedonies" + +msgid "Malayalam" +msgstr "Malabaars" + +msgid "Mongolian" +msgstr "Mongools" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Maleisies" + +msgid "Burmese" +msgstr "Birmaans" + +msgid "Norwegian Bokmål" +msgstr "Noorweegse Bokmål" + +msgid "Nepali" +msgstr "Nepalees" + +msgid "Dutch" +msgstr "Nederlands" + +msgid "Norwegian Nynorsk" +msgstr "Noorweegse Nynorsk" + +msgid "Ossetic" +msgstr "Osseties" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Pools" + +msgid "Portuguese" +msgstr "Portugees" + +msgid "Brazilian Portuguese" +msgstr "Brasiliaanse Portugees" + +msgid "Romanian" +msgstr "Roemeens" + +msgid "Russian" +msgstr "Russiese" + +msgid "Slovak" +msgstr "Slowaaks" + +msgid "Slovenian" +msgstr "Sloweens" + +msgid "Albanian" +msgstr "Albanees" + +msgid "Serbian" +msgstr "Serwies" + +msgid "Serbian Latin" +msgstr "Serwies Latyns" + +msgid "Swedish" +msgstr "Sweeds" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Teloegoe" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turks" + +msgid "Tatar" +msgstr "Tataars" + +msgid "Udmurt" +msgstr "Oedmoerts" + +msgid "Uyghur" +msgstr "" + +msgid "Ukrainian" +msgstr "Oekraïens" + +msgid "Urdu" +msgstr "Oerdoe" + +msgid "Uzbek" +msgstr "Oesbekies " + +msgid "Vietnamese" +msgstr "Viëtnamees" + +msgid "Simplified Chinese" +msgstr "Vereenvoudigde Sjinees" + +msgid "Traditional Chinese" +msgstr "Tradisionele Sjinees" + +msgid "Messages" +msgstr "Boodskappe" + +msgid "Site Maps" +msgstr "Werfkaarte" + +msgid "Static Files" +msgstr "Statiese lêers" + +msgid "Syndication" +msgstr "Sindikasie" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Daai bladsynommer is nie ’n heelgetal nie" + +msgid "That page number is less than 1" +msgstr "Daai bladsynommer is minder as 1" + +msgid "That page contains no results" +msgstr "Daai bladsy bevat geen resultate nie" + +msgid "Enter a valid value." +msgstr "Gee ’n geldige waarde." + +msgid "Enter a valid URL." +msgstr "Gee ’n geldige URL." + +msgid "Enter a valid integer." +msgstr "Gee ’n geldige heelgetal." + +msgid "Enter a valid email address." +msgstr "Gee ’n geldige e-posadres." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Gee ’n geldige “slak” wat bestaan ​​uit letters, syfers, onderstreep of " +"koppelteken." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Gee ’n geldige “slak” wat bestaan ​​uit Unicode-letters, syfers, onderstreep " +"of koppelteken." + +msgid "Enter a valid IPv4 address." +msgstr "Gee ’n geldige IPv4-adres." + +msgid "Enter a valid IPv6 address." +msgstr "Gee ’n geldige IPv6-adres." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Gee ’n geldige IPv4- of IPv6-adres." + +msgid "Enter only digits separated by commas." +msgstr "Gee slegs syfers wat deur kommas geskei is." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Maak seker dat hierdie waarde %(limit_value)s is (dit is %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Maak seker dat hierdie waarde kleiner of gelyk is aan %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Maak seker dat hierdie waarde groter of gelyk is aan %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Maak seker dat hierdie waarde ’n veelvoud is van stapgrootte %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Maak seker hierdie waarde het ten minste %(limit_value)d karakter (dit het " +"%(show_value)d)." +msgstr[1] "" +"Maak seker hierdie waarde het ten minste %(limit_value)d karakters (dit het " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Maak seker hierdie waarde het op die meeste %(limit_value)d karakter (dit " +"het %(show_value)d)." +msgstr[1] "" +"Maak seker hierdie waarde het op die meeste %(limit_value)d karakters (dit " +"het %(show_value)d)." + +msgid "Enter a number." +msgstr "Gee ’n getal." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Maak seker dat daar nie meer as %(max)s syfer in totaal is nie." +msgstr[1] "Maak seker dat daar nie meer as %(max)s syfers in totaal is nie." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Maak seker dat daar nie meer as %(max)s desimale plek is nie." +msgstr[1] "Maak seker dat daar nie meer as %(max)s desimale plekke is nie." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Maak seker dat daar nie meer as %(max)s syfer voor die desimale punt is nie." +msgstr[1] "" +"Maak seker dat daar nie meer as %(max)s syfers voor die desimale punt is nie." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Lêeruitbreiding “%(extension)s” word nie toegelaat nie. Toegelate " +"uitbreidings is: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Nul-karakters word nie toegelaat nie." + +msgid "and" +msgstr "en" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s met hierdie %(field_labels)s bestaan alreeds." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Beperking “%(name)s” word verbreek." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Waarde %(value)r is nie ’n geldige keuse nie." + +msgid "This field cannot be null." +msgstr "Hierdie veld kan nie nil wees nie." + +msgid "This field cannot be blank." +msgstr "Hierdie veld kan nie leeg wees nie." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s met hierdie %(field_label)s bestaan ​​alreeds." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s moet uniek wees per %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Veld van tipe: %(field_type)s " + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” waarde moet óf True óf False wees." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Die waarde “%(value)s” moet True, False of None wees." + +msgid "Boolean (Either True or False)" +msgstr "Boole (True of False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (hoogstens %(max_length)s karakters)" + +msgid "String (unlimited)" +msgstr "String (onbeperk)" + +msgid "Comma-separated integers" +msgstr "Heelgetalle geskei met kommas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Die waarde “%(value)s” het ’n ongeldige datumformaat. Dit moet in die " +"formaat JJJJ-MM-DD wees." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Die waarde “%(value)s” het die korrekte formaat (JJJJ-MM-DD), maar dit is ’n " +"ongeldige datum." + +msgid "Date (without time)" +msgstr "Datum (sonder die tyd)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Die waarde “%(value)s” se formaat is ongeldig. Dit moet in die formaat JJJJ-" +"MM-DD HH:MM[:ss[.uuuuuu]][TZ] wees." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Die waarde “%(value)s” het die korrekte formaat (JJJJ-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ]) maar dit is ’n ongeldige datum/tyd." + +msgid "Date (with time)" +msgstr "Datum (met die tyd)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s”-waarde moet ’n desimale getal wees." + +msgid "Decimal number" +msgstr "Desimale getal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Die waarde “%(value)s” het ’n ongeldige formaat. Dit moet in die formaat " +"[DD] [HH:[MM:]]ss[.uuuuuu] wees." + +msgid "Duration" +msgstr "Duur" + +msgid "Email address" +msgstr "E-posadres" + +msgid "File path" +msgstr "Lêerpad" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Die waarde “%(value)s” moet ’n dryfpuntgetal wees." + +msgid "Floating point number" +msgstr "Dryfpuntgetal" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Die waarde “%(value)s” moet ’n heelgetal wees." + +msgid "Integer" +msgstr "Heelgetal" + +msgid "Big (8 byte) integer" +msgstr "Groot (8 greep) heelgetal" + +msgid "Small integer" +msgstr "Klein heelgetal" + +msgid "IPv4 address" +msgstr "IPv4-adres" + +msgid "IP address" +msgstr "IP-adres" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s”-waarde moet een wees uit None, True of False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boole (True, False, of None)" + +msgid "Positive big integer" +msgstr "Positiewe groot heelgetal" + +msgid "Positive integer" +msgstr "Positiewe heelgetal" + +msgid "Positive small integer" +msgstr "Klein positiewe heelgetal" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (tot en met %(max_length)s karakters)" + +msgid "Text" +msgstr "Teks" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s”-waarde het ’n ongeldige formaat. Dit moet geformateer word as HH:" +"MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Die waarde “%(value)s” het die regte formaat (HH:MM[:ss[.uuuuuu]]) maar is " +"nie ’n geldige tyd nie." + +msgid "Time" +msgstr "Tyd" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Rou binêre data" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” is nie ’n geldige UUID nie." + +msgid "Universally unique identifier" +msgstr "Universeel unieke identifiseerder" + +msgid "File" +msgstr "Lêer" + +msgid "Image" +msgstr "Prent" + +msgid "A JSON object" +msgstr "’n JSON-objek" + +msgid "Value must be valid JSON." +msgstr "Waarde moet geldige JSON wees." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s-objek met %(field)s %(value)r bestaan nie." + +msgid "Foreign Key (type determined by related field)" +msgstr "Vreemde sleutel (tipe bepaal deur verwante veld)" + +msgid "One-to-one relationship" +msgstr "Een-tot-een-verhouding" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s-verwantskap" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s-verwantskappe" + +msgid "Many-to-many relationship" +msgstr "Baie-tot-baie-verwantskap" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Dié veld is verpligtend." + +msgid "Enter a whole number." +msgstr "Tik ’n heelgetal in." + +msgid "Enter a valid date." +msgstr "Tik ’n geldige datum in." + +msgid "Enter a valid time." +msgstr "Tik ’n geldige tyd in." + +msgid "Enter a valid date/time." +msgstr "Tik ’n geldige datum/tyd in." + +msgid "Enter a valid duration." +msgstr "Tik ’n geldige tydsduur in." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Die aantal dae moet tussen {min_days} en {max_days} wees." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Geen lêer is ingedien nie. Maak seker die koderingtipe op die vorm is reg." + +msgid "No file was submitted." +msgstr "Geen lêer is ingedien nie." + +msgid "The submitted file is empty." +msgstr "Die ingediende lêer is leeg." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Maak seker hierdie lêernaam het hoogstens %(max)d karakter (dit het " +"%(length)d)." +msgstr[1] "" +"Maak seker hierdie lêernaam het hoogstens %(max)d karakters (dit het " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Dien die lêer in óf merk die Maak skoon-boksie, nie altwee nie." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Laai ’n geldige prent. Die lêer wat jy opgelaai het, is nie ’n prent nie of " +"dit is ’n korrupte prent." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Kies ’n geldige keuse. %(value)s is nie een van die beskikbare keuses nie." + +msgid "Enter a list of values." +msgstr "Tik ’n lys waardes in." + +msgid "Enter a complete value." +msgstr "Tik ’n volledige waarde in." + +msgid "Enter a valid UUID." +msgstr "Tik ’n geldig UUID in." + +msgid "Enter a valid JSON." +msgstr "Gee geldige JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Versteekte veld %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Dien asseblief hoogstens %(num)d vorm in." +msgstr[1] "Dien asseblief hoogstens %(num)d vorms in." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Dien asseblief ten minste %(num)d vorm in." +msgstr[1] "Dien asseblief ten minste %(num)d vorms in." + +msgid "Order" +msgstr "Orde" + +msgid "Delete" +msgstr "Verwyder" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Korrigeer die dubbele data vir %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Korrigeer die dubbele data vir %(field)s, dit moet uniek wees." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Korrigeer die dubbele data vir %(field_name)s, dit moet uniek wees vir die " +"%(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Korrigeer die dubbele waardes hieronder." + +msgid "The inline value did not match the parent instance." +msgstr "Die waarde inlyn pas nie by die ouerobjek nie." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Kies ’n geldige keuse. Daardie keuse is nie een van die beskikbare keuses " +"nie." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” is nie ’n geldige waarde nie." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s kon nie in die tydsone %(current_timezone)s vertolk word nie; " +"dit is dalk dubbelsinnig, of bestaan dalk nie." + +msgid "Clear" +msgstr "Maak skoon" + +msgid "Currently" +msgstr "Tans" + +msgid "Change" +msgstr "Verander" + +msgid "Unknown" +msgstr "Onbekend" + +msgid "Yes" +msgstr "Ja" + +msgid "No" +msgstr "Nee" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ja,nee,miskien" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d greep" +msgstr[1] "%(size)d grepe" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "nm." + +msgid "a.m." +msgstr "vm." + +msgid "PM" +msgstr "NM" + +msgid "AM" +msgstr "VM" + +msgid "midnight" +msgstr "middernag" + +msgid "noon" +msgstr "middag" + +msgid "Monday" +msgstr "Maandag" + +msgid "Tuesday" +msgstr "Dinsdag" + +msgid "Wednesday" +msgstr "Woensdag" + +msgid "Thursday" +msgstr "Donderdag" + +msgid "Friday" +msgstr "Vrydag" + +msgid "Saturday" +msgstr "Saterdag" + +msgid "Sunday" +msgstr "Sondag" + +msgid "Mon" +msgstr "Ma" + +msgid "Tue" +msgstr "Di" + +msgid "Wed" +msgstr "Wo" + +msgid "Thu" +msgstr "Do" + +msgid "Fri" +msgstr "Vr" + +msgid "Sat" +msgstr "Sa" + +msgid "Sun" +msgstr "So" + +msgid "January" +msgstr "Januarie" + +msgid "February" +msgstr "Februarie" + +msgid "March" +msgstr "Maart" + +msgid "April" +msgstr "April" + +msgid "May" +msgstr "Mei" + +msgid "June" +msgstr "Junie" + +msgid "July" +msgstr "Julie" + +msgid "August" +msgstr "Augustus" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "Oktober" + +msgid "November" +msgstr "November" + +msgid "December" +msgstr "Desember" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mrt" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mei" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sept" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "des" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Maart" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mei" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junie" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julie" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Des." + +msgctxt "alt. month" +msgid "January" +msgstr "Januarie" + +msgctxt "alt. month" +msgid "February" +msgstr "Februarie" + +msgctxt "alt. month" +msgid "March" +msgstr "Maart" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Mei" + +msgctxt "alt. month" +msgid "June" +msgstr "Junie" + +msgctxt "alt. month" +msgid "July" +msgstr "Julie" + +msgctxt "alt. month" +msgid "August" +msgstr "Augustus" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "Desember" + +msgid "This is not a valid IPv6 address." +msgstr "Hierdie is nie ’n geldige IPv6-adres nie." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "of" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d jaar" +msgstr[1] "%(num)d jaar" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d maand" +msgstr[1] "%(num)d maande" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d week" +msgstr[1] "%(num)d weke" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dag" +msgstr[1] "%(num)d dae" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d uur" +msgstr[1] "%(num)d uur" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuut" +msgstr[1] "%(num)d minute" + +msgid "Forbidden" +msgstr "Verbode" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-verifikasie het misluk. Versoek is laat val." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"U sien hierdie boodskap omdat dié HTTPS-werf vereis dat u webblaaier ’n " +"“Referer header” moet stuur, maar dit is nie gestuur nie. Hierdie header is " +"vir sekuriteitsredes nodig om te verseker dat u blaaier nie deur derde " +"partye gekaap is nie." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"As “Referer headers” in u blaaier gedeaktiveer is, heraktiveer hulle asb. " +"ten minste vir dié werf, of vir HTTPS-verbindings, of vir “same-origin”-" +"versoeke." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Indien u die -etiket gebruik " +"of die “Referrer-Policy: no-referrer” header gebruik, verwyder hulle asb. " +"Die CSRF-beskerming vereis die “Referer” header om streng kontrole van die " +"verwysende bladsy te doen. Indien u besorg is oor privaatheid, gebruik " +"alternatiewe soos vir skakels na derdepartywebwerwe." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"U sien hierdie boodskap omdat dié werf ’n CSRF-koekie benodig wanneer vorms " +"ingedien word. Dié koekie word vir sekuriteitsredes benodig om te te " +"verseker dat u blaaier nie deur derde partye gekaap word nie." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Indien koekies in u blaaier gedeaktiveer is, aktiveerder hulle asb. ten " +"minste vir dié werf, of vir “same-origin”-versoeke." + +msgid "More information is available with DEBUG=True." +msgstr "Meer inligting is beskikbaar met DEBUG=True." + +msgid "No year specified" +msgstr "Geen jaar gespesifiseer nie" + +msgid "Date out of range" +msgstr "Datum buite omvang" + +msgid "No month specified" +msgstr "Geen maand gespesifiseer nie" + +msgid "No day specified" +msgstr "Geen dag gespesifiseer nie" + +msgid "No week specified" +msgstr "Geen week gespesifiseer nie" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Geen %(verbose_name_plural)s beskikbaar nie" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Toekomstige %(verbose_name_plural)s is nie beskikbaar nie, omdat " +"%(class_name)s.allow_future vals is." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ongeldige datumstring “%(datestr)s” gegewe die formaat “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Geen %(verbose_name)s gevind vir die soektog" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Bladsy is nie “last” nie, en dit kan nie omgeskakel word na ’n heelgetal nie." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ongeldige bladsy (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Leë lys en “%(class_name)s.allow_empty” is vals." + +msgid "Directory indexes are not allowed here." +msgstr "Gidsindekse word nie hier toegelaat nie." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” bestaan nie." + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indeks van %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Die installasie was suksesvol! Geluk!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Sien die vrystellingsnotas vir Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"U sien dié bladsy omdat DEBUG=True in die settings-lêer is en geen URL’e " +"opgestel is nie." + +msgid "Django Documentation" +msgstr "Django-dokumentasie" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "Kom aan die gang met Django" + +msgid "Django Community" +msgstr "Django-gemeenskap" + +msgid "Connect, get help, or contribute" +msgstr "Kontak, kry hulp om dra by" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..f0a041294326d38405c3c8c54c3b93e682f91b7d GIT binary patch literal 35688 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po new file mode 100644 index 0000000..25a491b --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po @@ -0,0 +1,1389 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Bashar Al-Abdulhadi, 2015-2016,2020-2021 +# Bashar Al-Abdulhadi, 2014 +# Eyad Toma , 2013-2014 +# Jannis Leidel , 2011 +# Mariusz Felisiak , 2021 +# Muaaz Alsaied, 2020 +# Omar Al-Ithawi , 2020 +# Ossama Khayat , 2011 +# Tony xD , 2020 +# صفا الفليج , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-24 16:27+0000\n" +"Last-Translator: Mariusz Felisiak \n" +"Language-Team: Arabic (http://www.transifex.com/django/django/language/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +msgid "Afrikaans" +msgstr "الإفريقية" + +msgid "Arabic" +msgstr "العربيّة" + +msgid "Algerian Arabic" +msgstr "عربي جزائري" + +msgid "Asturian" +msgstr "الأسترية" + +msgid "Azerbaijani" +msgstr "الأذربيجانية" + +msgid "Bulgarian" +msgstr "البلغاريّة" + +msgid "Belarusian" +msgstr "البيلاروسية" + +msgid "Bengali" +msgstr "البنغاليّة" + +msgid "Breton" +msgstr "البريتونية" + +msgid "Bosnian" +msgstr "البوسنيّة" + +msgid "Catalan" +msgstr "الكتلانيّة" + +msgid "Czech" +msgstr "التشيكيّة" + +msgid "Welsh" +msgstr "الويلز" + +msgid "Danish" +msgstr "الدنماركيّة" + +msgid "German" +msgstr "الألمانيّة" + +msgid "Lower Sorbian" +msgstr "الصربية السفلى" + +msgid "Greek" +msgstr "اليونانيّة" + +msgid "English" +msgstr "الإنجليزيّة" + +msgid "Australian English" +msgstr "الإنجليزية الإسترالية" + +msgid "British English" +msgstr "الإنجليزيّة البريطانيّة" + +msgid "Esperanto" +msgstr "الاسبرانتو" + +msgid "Spanish" +msgstr "الإسبانيّة" + +msgid "Argentinian Spanish" +msgstr "الأسبانية الأرجنتينية" + +msgid "Colombian Spanish" +msgstr "الكولومبية الإسبانية" + +msgid "Mexican Spanish" +msgstr "الأسبانية المكسيكية" + +msgid "Nicaraguan Spanish" +msgstr "الإسبانية النيكاراغوية" + +msgid "Venezuelan Spanish" +msgstr "الإسبانية الفنزويلية" + +msgid "Estonian" +msgstr "الإستونيّة" + +msgid "Basque" +msgstr "الباسك" + +msgid "Persian" +msgstr "الفارسيّة" + +msgid "Finnish" +msgstr "الفنلنديّة" + +msgid "French" +msgstr "الفرنسيّة" + +msgid "Frisian" +msgstr "الفريزيّة" + +msgid "Irish" +msgstr "الإيرلنديّة" + +msgid "Scottish Gaelic" +msgstr "الغيلية الأسكتلندية" + +msgid "Galician" +msgstr "الجليقيّة" + +msgid "Hebrew" +msgstr "العبريّة" + +msgid "Hindi" +msgstr "الهندية" + +msgid "Croatian" +msgstr "الكرواتيّة" + +msgid "Upper Sorbian" +msgstr "الصربية العليا" + +msgid "Hungarian" +msgstr "الهنغاريّة" + +msgid "Armenian" +msgstr "الأرمنية" + +msgid "Interlingua" +msgstr "اللغة الوسيطة" + +msgid "Indonesian" +msgstr "الإندونيسيّة" + +msgid "Igbo" +msgstr "الإيبو" + +msgid "Ido" +msgstr "ايدو" + +msgid "Icelandic" +msgstr "الآيسلنديّة" + +msgid "Italian" +msgstr "الإيطاليّة" + +msgid "Japanese" +msgstr "اليابانيّة" + +msgid "Georgian" +msgstr "الجورجيّة" + +msgid "Kabyle" +msgstr "القبائل" + +msgid "Kazakh" +msgstr "الكازاخستانية" + +msgid "Khmer" +msgstr "الخمر" + +msgid "Kannada" +msgstr "الهنديّة (كنّادا)" + +msgid "Korean" +msgstr "الكوريّة" + +msgid "Kyrgyz" +msgstr "قيرغيز" + +msgid "Luxembourgish" +msgstr "اللوكسمبرجية" + +msgid "Lithuanian" +msgstr "اللتوانيّة" + +msgid "Latvian" +msgstr "اللاتفيّة" + +msgid "Macedonian" +msgstr "المقدونيّة" + +msgid "Malayalam" +msgstr "المايالام" + +msgid "Mongolian" +msgstr "المنغوليّة" + +msgid "Marathi" +msgstr "المهاراتية" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "البورمية" + +msgid "Norwegian Bokmål" +msgstr "النرويجية" + +msgid "Nepali" +msgstr "النيبالية" + +msgid "Dutch" +msgstr "الهولنديّة" + +msgid "Norwegian Nynorsk" +msgstr "النينورسك نرويجيّة" + +msgid "Ossetic" +msgstr "الأوسيتيكية" + +msgid "Punjabi" +msgstr "البنجابيّة" + +msgid "Polish" +msgstr "البولنديّة" + +msgid "Portuguese" +msgstr "البرتغاليّة" + +msgid "Brazilian Portuguese" +msgstr "البرتغاليّة البرازيليّة" + +msgid "Romanian" +msgstr "الرومانيّة" + +msgid "Russian" +msgstr "الروسيّة" + +msgid "Slovak" +msgstr "السلوفاكيّة" + +msgid "Slovenian" +msgstr "السلوفانيّة" + +msgid "Albanian" +msgstr "الألبانيّة" + +msgid "Serbian" +msgstr "الصربيّة" + +msgid "Serbian Latin" +msgstr "اللاتينيّة الصربيّة" + +msgid "Swedish" +msgstr "السويديّة" + +msgid "Swahili" +msgstr "السواحلية" + +msgid "Tamil" +msgstr "التاميل" + +msgid "Telugu" +msgstr "التيلوغو" + +msgid "Tajik" +msgstr "طاجيك" + +msgid "Thai" +msgstr "التايلنديّة" + +msgid "Turkmen" +msgstr "تركمان" + +msgid "Turkish" +msgstr "التركيّة" + +msgid "Tatar" +msgstr "التتاريية" + +msgid "Udmurt" +msgstr "الأدمرتية" + +msgid "Ukrainian" +msgstr "الأكرانيّة" + +msgid "Urdu" +msgstr "الأوردو" + +msgid "Uzbek" +msgstr "الأوزبكي" + +msgid "Vietnamese" +msgstr "الفيتناميّة" + +msgid "Simplified Chinese" +msgstr "الصينيّة المبسطة" + +msgid "Traditional Chinese" +msgstr "الصينيّة التقليدية" + +msgid "Messages" +msgstr "الرسائل" + +msgid "Site Maps" +msgstr "خرائط الموقع" + +msgid "Static Files" +msgstr "الملفات الثابتة" + +msgid "Syndication" +msgstr "توظيف النشر" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "رقم الصفحة هذا ليس عدداً طبيعياً" + +msgid "That page number is less than 1" +msgstr "رقم الصفحة أقل من 1" + +msgid "That page contains no results" +msgstr "هذه الصفحة لا تحتوي على نتائج" + +msgid "Enter a valid value." +msgstr "أدخِل قيمة صحيحة." + +msgid "Enter a valid URL." +msgstr "أدخِل رابطًا صحيحًا." + +msgid "Enter a valid integer." +msgstr "أدخِل عدداً طبيعياً." + +msgid "Enter a valid email address." +msgstr "أدخِل عنوان بريد إلكتروني صحيح." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "أدخل اختصار 'slug' صحيح يتكوّن من أحرف، أرقام، شرطات سفلية وعاديّة." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"أدخل اختصار 'slug' صحيح يتكون من أحرف Unicode أو أرقام أو شرطات سفلية أو " +"واصلات." + +msgid "Enter a valid IPv4 address." +msgstr "أدخِل عنوان IPv4 صحيح." + +msgid "Enter a valid IPv6 address." +msgstr "أدخِل عنوان IPv6 صحيح." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "أدخِل عنوان IPv4 أو عنوان IPv6 صحيح." + +msgid "Enter only digits separated by commas." +msgstr "أدخِل فقط أرقامًا تفصلها الفواصل." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "تحقق من أن هذه القيمة هي %(limit_value)s (إنها %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "تحقق من أن تكون هذه القيمة أقل من %(limit_value)s أو مساوية لها." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "تحقق من أن تكون هذه القيمة أكثر من %(limit_value)s أو مساوية لها." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[1] "" +"تأكد أن هذه القيمة تحتوي على حرف أو رمز %(limit_value)d على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[2] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف و رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[3] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[4] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[5] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[1] "" +"تأكد أن هذه القيمة تحتوي على حرف أو رمز %(limit_value)d على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[2] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف و رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[3] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[4] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[5] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." + +msgid "Enter a number." +msgstr "أدخل رقماً." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "تحقق من أن تدخل %(max)s أرقام لا أكثر." +msgstr[1] "تحقق من أن تدخل رقم %(max)s لا أكثر." +msgstr[2] "تحقق من أن تدخل %(max)s رقمين لا أكثر." +msgstr[3] "تحقق من أن تدخل %(max)s أرقام لا أكثر." +msgstr[4] "تحقق من أن تدخل %(max)s أرقام لا أكثر." +msgstr[5] "تحقق من أن تدخل %(max)s أرقام لا أكثر." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[1] "تحقق من أن تدخل خانة %(max)s عشرية لا أكثر." +msgstr[2] "تحقق من أن تدخل %(max)s خانتين عشريتين لا أكثر." +msgstr[3] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[4] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[5] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[1] "تحقق من أن تدخل رقم %(max)s قبل الفاصل العشري لا أكثر." +msgstr[2] "تحقق من أن تدخل %(max)s رقمين قبل الفاصل العشري لا أكثر." +msgstr[3] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[4] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[5] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"امتداد الملف “%(extension)s” غير مسموح به. الامتدادات المسموح بها هي:" +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "الأحرف الخالية غير مسموح بها." + +msgid "and" +msgstr "و" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s بهذا %(field_labels)s موجود سلفاً." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "القيمة %(value)r ليست خيارا صحيحاً." + +msgid "This field cannot be null." +msgstr "لا يمكن تعيين null كقيمة لهذا الحقل." + +msgid "This field cannot be blank." +msgstr "لا يمكن ترك هذا الحقل فارغاً." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "النموذج %(model_name)s والحقل %(field_label)s موجود مسبقاً." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s يجب أن يكون فريد لـ %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "حقل نوع: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "قيمة '%(value)s' يجب أن تكون True أو False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "قيمة “%(value)s” يجب أن تكون True , False أو None." + +msgid "Boolean (Either True or False)" +msgstr "ثنائي (إما True أو False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "سلسلة نص (%(max_length)s كحد أقصى)" + +msgid "Comma-separated integers" +msgstr "أرقام صحيحة مفصولة بفواصل" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"قيمة '%(value)s' ليست من بُنية تاريخ صحيحة. القيمة يجب ان تكون من البُنية YYYY-" +"MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "قيمة '%(value)s' من بُنية صحيحة (YYYY-MM-DD) لكنها تحوي تاريخ غير صحيح." + +msgid "Date (without time)" +msgstr "التاريخ (دون الوقت)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"قيمة '%(value)s' ليست من بُنية صحيحة. القيمة يجب ان تكون من البُنية YYYY-MM-DD " +"HH:MM[:ss[.uuuuuu]][TZ] ." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"قيمة '%(value)s' من بُنية صحيحة (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) لكنها " +"تحوي وقت و تاريخ غير صحيحين." + +msgid "Date (with time)" +msgstr "التاريخ (مع الوقت)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "قيمة '%(value)s' يجب ان تكون عدد عشري." + +msgid "Decimal number" +msgstr "رقم عشري" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"قيمة '%(value)s' ليست بنسق صحيح. القيمة يجب ان تكون من التنسيق ([DD] " +"[[HH:]MM:]ss[.uuuuuu])" + +msgid "Duration" +msgstr "المدّة" + +msgid "Email address" +msgstr "عنوان بريد إلكتروني" + +msgid "File path" +msgstr "مسار الملف" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "قيمة '%(value)s' يجب ان تكون عدد تعويم." + +msgid "Floating point number" +msgstr "رقم فاصلة عائمة" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "قيمة '%(value)s' يجب ان تكون عدد طبيعي." + +msgid "Integer" +msgstr "عدد صحيح" + +msgid "Big (8 byte) integer" +msgstr "عدد صحيح كبير (8 بايت)" + +msgid "Small integer" +msgstr "عدد صحيح صغير" + +msgid "IPv4 address" +msgstr "عنوان IPv4" + +msgid "IP address" +msgstr "عنوان IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "قيمة '%(value)s' يجب ان تكون None أو True أو False." + +msgid "Boolean (Either True, False or None)" +msgstr "ثنائي (إما True أو False أو None)" + +msgid "Positive big integer" +msgstr "عدد صحيح موجب كبير" + +msgid "Positive integer" +msgstr "عدد صحيح موجب" + +msgid "Positive small integer" +msgstr "عدد صحيح صغير موجب" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (حتى %(max_length)s)" + +msgid "Text" +msgstr "نص" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"قيمة '%(value)s' ليست بنسق صحيح. القيمة يجب ان تكون من التنسيق\n" +"HH:MM[:ss[.uuuuuu]]" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"قيمة '%(value)s' من بُنية صحيحة (HH:MM[:ss[.uuuuuu]]) لكنها تحوي وقت غير صحيح." + +msgid "Time" +msgstr "وقت" + +msgid "URL" +msgstr "رابط" + +msgid "Raw binary data" +msgstr "البيانات الثنائية الخام" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "القيمة \"%(value)s\" ليست UUID صالح." + +msgid "Universally unique identifier" +msgstr "معرّف فريد عالمياً" + +msgid "File" +msgstr "ملف" + +msgid "Image" +msgstr "صورة" + +msgid "A JSON object" +msgstr "كائن JSON" + +msgid "Value must be valid JSON." +msgstr "يجب أن تكون قيمة JSON صالحة." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "النموذج %(model)s ذو الحقل و القيمة %(field)s %(value)r غير موجود." + +msgid "Foreign Key (type determined by related field)" +msgstr "الحقل المرتبط (تم تحديد النوع وفقاً للحقل المرتبط)" + +msgid "One-to-one relationship" +msgstr "علاقة واحد إلى واحد" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s علاقة" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s علاقات" + +msgid "Many-to-many relationship" +msgstr "علاقة متعدد إلى متعدد" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "هذا الحقل مطلوب." + +msgid "Enter a whole number." +msgstr "أدخل رقما صحيحا." + +msgid "Enter a valid date." +msgstr "أدخل تاريخاً صحيحاً." + +msgid "Enter a valid time." +msgstr "أدخل وقتاً صحيحاً." + +msgid "Enter a valid date/time." +msgstr "أدخل تاريخاً/وقتاً صحيحاً." + +msgid "Enter a valid duration." +msgstr "أدخل مدّة صحيحة" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "يجب أن يكون عدد الأيام بين {min_days} و {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "لم يتم ارسال ملف، الرجاء التأكد من نوع ترميز الاستمارة." + +msgid "No file was submitted." +msgstr "لم يتم إرسال اي ملف." + +msgid "The submitted file is empty." +msgstr "الملف الذي قمت بإرساله فارغ." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[1] "" +"تأكد أن إسم هذا الملف يحتوي على حرف %(max)d على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[2] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرفين على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[3] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[4] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[5] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "رجاءً أرسل ملف أو صح علامة صح عند مربع اختيار \"فارغ\"، وليس كلاهما." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"قم برفع صورة صحيحة، الملف الذي قمت برفعه إما أنه ليس ملفا لصورة أو أنه ملف " +"معطوب." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "انتق خياراً صحيحاً. %(value)s ليس أحد الخيارات المتاحة." + +msgid "Enter a list of values." +msgstr "أدخل قائمة من القيم." + +msgid "Enter a complete value." +msgstr "إدخال قيمة كاملة." + +msgid "Enter a valid UUID." +msgstr "أدخل قيمة UUID صحيحة." + +msgid "Enter a valid JSON." +msgstr "أدخل مدخل JSON صالح." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(الحقل الخفي %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"بيانات نموذج الإدارة مفقودة أو تم العبث بها. الحقول المفقودة: " +"%(field_names)s. قد تحتاج إلى تقديم تقرير خطأ إذا استمرت المشكلة." + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "الرجاء إرسال %d إستمارة على الأكثر." +msgstr[1] "الرجاء إرسال %d إستمارة على الأكثر." +msgstr[2] "الرجاء إرسال %d إستمارة على الأكثر." +msgstr[3] "الرجاء إرسال %d إستمارة على الأكثر." +msgstr[4] "الرجاء إرسال %d إستمارة على الأكثر." +msgstr[5] "الرجاء إرسال %d إستمارة على الأكثر." + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "الرجاء إرسال %d إستمارة على الأقل." +msgstr[1] "الرجاء إرسال %d إستمارة على الأقل." +msgstr[2] "الرجاء إرسال %d إستمارة على الأقل." +msgstr[3] "الرجاء إرسال %d إستمارة على الأقل." +msgstr[4] "الرجاء إرسال %d إستمارة على الأقل." +msgstr[5] "الرجاء إرسال %d إستمارة على الأقل." + +msgid "Order" +msgstr "الترتيب" + +msgid "Delete" +msgstr "احذف" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "رجاء صحّح بيانات %(field)s المتكررة." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "رجاء صحّح بيانات %(field)s المتكررة والتي يجب أن تكون مُميّزة." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"رجاء صحّح بيانات %(field_name)s المتكررة والتي يجب أن تكون مُميّزة لـ%(lookup)s " +"في %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "رجاءً صحّح القيم المُكرّرة أدناه." + +msgid "The inline value did not match the parent instance." +msgstr "لا تتطابق القيمة المضمنة مع المثيل الأصلي." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "انتق خياراً صحيحاً. اختيارك ليس أحد الخيارات المتاحة." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" ليست قيمة صالحة." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s لا يمكن تفسيرها في المنطقة الزمنية %(current_timezone)s; قد " +"تكون غامضة أو أنها غير موجودة." + +msgid "Clear" +msgstr "تفريغ" + +msgid "Currently" +msgstr "حالياً" + +msgid "Change" +msgstr "عدّل" + +msgid "Unknown" +msgstr "مجهول" + +msgid "Yes" +msgstr "نعم" + +msgid "No" +msgstr "لا" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "نعم,لا,ربما" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d بايت" +msgstr[1] "بايت واحد" +msgstr[2] "بايتان" +msgstr[3] "%(size)d بايتان" +msgstr[4] "%(size)d بايت" +msgstr[5] "%(size)d بايت" + +#, python-format +msgid "%s KB" +msgstr "%s ك.ب" + +#, python-format +msgid "%s MB" +msgstr "%s م.ب" + +#, python-format +msgid "%s GB" +msgstr "%s ج.ب" + +#, python-format +msgid "%s TB" +msgstr "%s ت.ب" + +#, python-format +msgid "%s PB" +msgstr "%s ب.ب" + +msgid "p.m." +msgstr "م" + +msgid "a.m." +msgstr "ص" + +msgid "PM" +msgstr "م" + +msgid "AM" +msgstr "ص" + +msgid "midnight" +msgstr "منتصف الليل" + +msgid "noon" +msgstr "ظهراً" + +msgid "Monday" +msgstr "الاثنين" + +msgid "Tuesday" +msgstr "الثلاثاء" + +msgid "Wednesday" +msgstr "الأربعاء" + +msgid "Thursday" +msgstr "الخميس" + +msgid "Friday" +msgstr "الجمعة" + +msgid "Saturday" +msgstr "السبت" + +msgid "Sunday" +msgstr "الأحد" + +msgid "Mon" +msgstr "إثنين" + +msgid "Tue" +msgstr "ثلاثاء" + +msgid "Wed" +msgstr "أربعاء" + +msgid "Thu" +msgstr "خميس" + +msgid "Fri" +msgstr "جمعة" + +msgid "Sat" +msgstr "سبت" + +msgid "Sun" +msgstr "أحد" + +msgid "January" +msgstr "يناير" + +msgid "February" +msgstr "فبراير" + +msgid "March" +msgstr "مارس" + +msgid "April" +msgstr "إبريل" + +msgid "May" +msgstr "مايو" + +msgid "June" +msgstr "يونيو" + +msgid "July" +msgstr "يوليو" + +msgid "August" +msgstr "أغسطس" + +msgid "September" +msgstr "سبتمبر" + +msgid "October" +msgstr "أكتوبر" + +msgid "November" +msgstr "نوفمبر" + +msgid "December" +msgstr "ديسمبر" + +msgid "jan" +msgstr "يناير" + +msgid "feb" +msgstr "فبراير" + +msgid "mar" +msgstr "مارس" + +msgid "apr" +msgstr "إبريل" + +msgid "may" +msgstr "مايو" + +msgid "jun" +msgstr "يونيو" + +msgid "jul" +msgstr "يوليو" + +msgid "aug" +msgstr "أغسطس" + +msgid "sep" +msgstr "سبتمبر" + +msgid "oct" +msgstr "أكتوبر" + +msgid "nov" +msgstr "نوفمبر" + +msgid "dec" +msgstr "ديسمبر" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "يناير" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "فبراير" + +msgctxt "abbrev. month" +msgid "March" +msgstr "مارس" + +msgctxt "abbrev. month" +msgid "April" +msgstr "إبريل" + +msgctxt "abbrev. month" +msgid "May" +msgstr "مايو" + +msgctxt "abbrev. month" +msgid "June" +msgstr "يونيو" + +msgctxt "abbrev. month" +msgid "July" +msgstr "يوليو" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "أغسطس" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "سبتمبر" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "أكتوبر" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "نوفمبر" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ديسمبر" + +msgctxt "alt. month" +msgid "January" +msgstr "يناير" + +msgctxt "alt. month" +msgid "February" +msgstr "فبراير" + +msgctxt "alt. month" +msgid "March" +msgstr "مارس" + +msgctxt "alt. month" +msgid "April" +msgstr "أبريل" + +msgctxt "alt. month" +msgid "May" +msgstr "مايو" + +msgctxt "alt. month" +msgid "June" +msgstr "يونيو" + +msgctxt "alt. month" +msgid "July" +msgstr "يوليو" + +msgctxt "alt. month" +msgid "August" +msgstr "أغسطس" + +msgctxt "alt. month" +msgid "September" +msgstr "سبتمبر" + +msgctxt "alt. month" +msgid "October" +msgstr "أكتوبر" + +msgctxt "alt. month" +msgid "November" +msgstr "نوفمبر" + +msgctxt "alt. month" +msgid "December" +msgstr "ديسمبر" + +msgid "This is not a valid IPv6 address." +msgstr "هذا ليس عنوان IPv6 صحيح." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "أو" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "، " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d سنة" +msgstr[1] "%(num)d سنة" +msgstr[2] "%(num)d سنتين" +msgstr[3] "%(num)d سنوات" +msgstr[4] "%(num)d سنوات" +msgstr[5] "%(num)d سنوات" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d شهر" +msgstr[1] "%(num)d شهر" +msgstr[2] "%(num)d شهرين" +msgstr[3] "%(num)d أشهر" +msgstr[4] "%(num)d أشهر" +msgstr[5] "%(num)d أشهر" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d أسبوع" +msgstr[1] "%(num)d أسبوع" +msgstr[2] "%(num)d أسبوعين" +msgstr[3] "%(num)d أسابيع" +msgstr[4] "%(num)d أسابيع" +msgstr[5] "%(num)d أسابيع" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d يوم" +msgstr[1] "%(num)d يوم" +msgstr[2] "%(num)d يومين" +msgstr[3] "%(num)d أيام" +msgstr[4] "%(num)d يوم" +msgstr[5] "%(num)d أيام" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d ساعة" +msgstr[1] "%(num)d ساعة" +msgstr[2] "%(num)d ساعتين" +msgstr[3] "%(num)d ساعات" +msgstr[4] "%(num)d ساعة" +msgstr[5] "%(num)d ساعات" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d دقيقة" +msgstr[1] "%(num)d دقيقة" +msgstr[2] "%(num)d دقيقتين" +msgstr[3] "%(num)d دقائق" +msgstr[4] "%(num)d دقيقة" +msgstr[5] "%(num)d دقيقة" + +msgid "Forbidden" +msgstr "ممنوع" + +msgid "CSRF verification failed. Request aborted." +msgstr "تم الفشل للتحقق من CSRF. تم إنهاء الطلب." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"أنت ترى هذه الرسالة لأن موقع HTTPS هذا يتطلب إرسال “Referer header” بواسطة " +"متصفح الويب الخاص بك، ولكن لم يتم إرسال أي منها. هذا مطلوب لأسباب أمنية، " +"لضمان عدم اختطاف متصفحك من قبل أطراف ثالثة." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"إذا قمت بتكوين المستعرض لتعطيل رؤوس “Referer” ، فيرجى إعادة تمكينها ، على " +"الأقل لهذا الموقع ، أو لاتصالات HTTPS ، أو لطلبات “same-origin”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"إذا كنت تستخدم العلامة أو " +"تضمين رأس “Referrer-Policy: no-referrer”، يرجى إزالتها. تتطلب حماية CSRF أن " +"يقوم رأس “Referer” بإجراء فحص صارم للمراجع. إذا كنت قلقًا بشأن الخصوصية ، " +"فاستخدم بدائل مثل للروابط إلى مواقع الجهات الخارجية." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"أنت ترى هذه الرسالة لأن هذا الموقع يتطلب كعكة CSRF عند تقديم النماذج. ملف " +"الكعكة هذا مطلوب لأسباب أمنية في تعريف الإرتباط، لضمان أنه لم يتم اختطاف " +"المتصفح من قبل أطراف أخرى." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"إذا قمت بضبط المتصفح لتعطيل الكوكيز الرجاء إعادة تغعيلها، على الأقل بالنسبة " +"لهذا الموقع، أو للطلبات من “same-origin”." + +msgid "More information is available with DEBUG=True." +msgstr "يتوفر مزيد من المعلومات عند ضبط الخيار DEBUG=True." + +msgid "No year specified" +msgstr "لم تحدد السنة" + +msgid "Date out of range" +msgstr "التاريخ خارج النطاق" + +msgid "No month specified" +msgstr "لم تحدد الشهر" + +msgid "No day specified" +msgstr "لم تحدد اليوم" + +msgid "No week specified" +msgstr "لم تحدد الأسبوع" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "لا يوجد %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"التاريخ بالمستقبل %(verbose_name_plural)s غير متوفر لأن قيمة %(class_name)s." +"allow_future هي False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "نسق تاريخ غير صحيح \"%(datestr)s\" محدد بالشكل ''%(format)s\"" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "لم يعثر على أي %(verbose_name)s مطابقة لهذا الإستعلام" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "الصفحة ليست \"الأخيرة\"، كما لا يمكن تحويل القيمة إلى رقم طبيعي." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "صفحة خاطئة (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" +"قائمة فارغة و\n" +"\"%(class_name)s.allow_empty\"\n" +"قيمته False." + +msgid "Directory indexes are not allowed here." +msgstr "لا يسمح لفهارس الدليل هنا." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "”%(path)s“ غير موجود" + +#, python-format +msgid "Index of %(directory)s" +msgstr "فهرس لـ %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "تمت عملية التنصيب بنجاح! تهانينا!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"استعراض ملاحظات الإصدار لجانغو %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"تظهر لك هذه الصفحة لأن DEBUG=True في ملف settings خاصتك كما أنك لم تقم بإعداد الروابط URLs." + +msgid "Django Documentation" +msgstr "وثائق تعليمات جانغو" + +msgid "Topics, references, & how-to’s" +msgstr "المواضيع و المراجع و التعليمات" + +msgid "Tutorial: A Polling App" +msgstr "برنامج تعليمي: تطبيق تصويت" + +msgid "Get started with Django" +msgstr "إبدأ مع جانغو" + +msgid "Django Community" +msgstr "مجتمع جانغو" + +msgid "Connect, get help, or contribute" +msgstr "اتصل بنا أو احصل على مساعدة أو ساهم" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ar/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ar/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4f5e53addab16724f75017bff596b17eb89b22b GIT binary patch literal 193 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 E|AylNR{#J2 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po new file mode 100644 index 0000000..b32da34 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/LC_MESSAGES/django.po @@ -0,0 +1,1397 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jihad Bahmaid Al-Halki, 2022 +# Riterix , 2019-2020 +# Riterix , 2019 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-17 05:23-0500\n" +"PO-Revision-Date: 2022-07-25 06:49+0000\n" +"Last-Translator: Jihad Bahmaid Al-Halki\n" +"Language-Team: Arabic (Algeria) (http://www.transifex.com/django/django/" +"language/ar_DZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar_DZ\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +msgid "Afrikaans" +msgstr "الإفريقية" + +msgid "Arabic" +msgstr "العربية" + +msgid "Algerian Arabic" +msgstr "العربية الجزائرية" + +msgid "Asturian" +msgstr "الأسترية" + +msgid "Azerbaijani" +msgstr "الأذربيجانية" + +msgid "Bulgarian" +msgstr "البلغارية" + +msgid "Belarusian" +msgstr "البيلاروسية" + +msgid "Bengali" +msgstr "البنغالية" + +msgid "Breton" +msgstr "البريتونية" + +msgid "Bosnian" +msgstr "البوسنية" + +msgid "Catalan" +msgstr "الكتلانية" + +msgid "Czech" +msgstr "التشيكية" + +msgid "Welsh" +msgstr "الويلز" + +msgid "Danish" +msgstr "الدنماركية" + +msgid "German" +msgstr "الألمانية" + +msgid "Lower Sorbian" +msgstr "الصربية السفلى" + +msgid "Greek" +msgstr "اليونانية" + +msgid "English" +msgstr "الإنجليزية" + +msgid "Australian English" +msgstr "الإنجليزية الإسترالية" + +msgid "British English" +msgstr "الإنجليزية البريطانية" + +msgid "Esperanto" +msgstr "الاسبرانتو" + +msgid "Spanish" +msgstr "الإسبانية" + +msgid "Argentinian Spanish" +msgstr "الأسبانية الأرجنتينية" + +msgid "Colombian Spanish" +msgstr "الكولومبية الإسبانية" + +msgid "Mexican Spanish" +msgstr "الأسبانية المكسيكية" + +msgid "Nicaraguan Spanish" +msgstr "الإسبانية النيكاراغوية" + +msgid "Venezuelan Spanish" +msgstr "الإسبانية الفنزويلية" + +msgid "Estonian" +msgstr "الإستونية" + +msgid "Basque" +msgstr "الباسك" + +msgid "Persian" +msgstr "الفارسية" + +msgid "Finnish" +msgstr "الفنلندية" + +msgid "French" +msgstr "الفرنسية" + +msgid "Frisian" +msgstr "الفريزية" + +msgid "Irish" +msgstr "الإيرلندية" + +msgid "Scottish Gaelic" +msgstr "الغيلية الأسكتلندية" + +msgid "Galician" +msgstr "الجليقية" + +msgid "Hebrew" +msgstr "العبرية" + +msgid "Hindi" +msgstr "الهندية" + +msgid "Croatian" +msgstr "الكرواتية" + +msgid "Upper Sorbian" +msgstr "الصربية العليا" + +msgid "Hungarian" +msgstr "الهنغارية" + +msgid "Armenian" +msgstr "الأرمنية" + +msgid "Interlingua" +msgstr "اللغة الوسيطة" + +msgid "Indonesian" +msgstr "الإندونيسية" + +msgid "Igbo" +msgstr "إيبو" + +msgid "Ido" +msgstr "ايدو" + +msgid "Icelandic" +msgstr "الآيسلندية" + +msgid "Italian" +msgstr "الإيطالية" + +msgid "Japanese" +msgstr "اليابانية" + +msgid "Georgian" +msgstr "الجورجية" + +msgid "Kabyle" +msgstr "القبائلية" + +msgid "Kazakh" +msgstr "الكازاخستانية" + +msgid "Khmer" +msgstr "الخمر" + +msgid "Kannada" +msgstr "الهندية (كنّادا)" + +msgid "Korean" +msgstr "الكورية" + +msgid "Kyrgyz" +msgstr "القيرغيزية" + +msgid "Luxembourgish" +msgstr "اللوكسمبرجية" + +msgid "Lithuanian" +msgstr "اللتوانية" + +msgid "Latvian" +msgstr "اللاتفية" + +msgid "Macedonian" +msgstr "المقدونية" + +msgid "Malayalam" +msgstr "المايالام" + +msgid "Mongolian" +msgstr "المنغولية" + +msgid "Marathi" +msgstr "المهاراتية" + +msgid "Malay" +msgstr "ملاي" + +msgid "Burmese" +msgstr "البورمية" + +msgid "Norwegian Bokmål" +msgstr "النرويجية" + +msgid "Nepali" +msgstr "النيبالية" + +msgid "Dutch" +msgstr "الهولندية" + +msgid "Norwegian Nynorsk" +msgstr "النينورسك نرويجية" + +msgid "Ossetic" +msgstr "الأوسيتيكية" + +msgid "Punjabi" +msgstr "البنجابية" + +msgid "Polish" +msgstr "البولندية" + +msgid "Portuguese" +msgstr "البرتغالية" + +msgid "Brazilian Portuguese" +msgstr "البرتغالية البرازيلية" + +msgid "Romanian" +msgstr "الرومانية" + +msgid "Russian" +msgstr "الروسية" + +msgid "Slovak" +msgstr "السلوفاكية" + +msgid "Slovenian" +msgstr "السلوفانية" + +msgid "Albanian" +msgstr "الألبانية" + +msgid "Serbian" +msgstr "الصربية" + +msgid "Serbian Latin" +msgstr "اللاتينية الصربية" + +msgid "Swedish" +msgstr "السويدية" + +msgid "Swahili" +msgstr "السواحلية" + +msgid "Tamil" +msgstr "التاميل" + +msgid "Telugu" +msgstr "التيلوغو" + +msgid "Tajik" +msgstr "الطاجيكية" + +msgid "Thai" +msgstr "التايلندية" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "التركية" + +msgid "Tatar" +msgstr "التتاريية" + +msgid "Udmurt" +msgstr "الأدمرتية" + +msgid "Ukrainian" +msgstr "الأكرانية" + +msgid "Urdu" +msgstr "الأوردو" + +msgid "Uzbek" +msgstr "الأوزبكية" + +msgid "Vietnamese" +msgstr "الفيتنامية" + +msgid "Simplified Chinese" +msgstr "الصينية المبسطة" + +msgid "Traditional Chinese" +msgstr "الصينية التقليدية" + +msgid "Messages" +msgstr "الرسائل" + +msgid "Site Maps" +msgstr "خرائط الموقع" + +msgid "Static Files" +msgstr "الملفات الثابتة" + +msgid "Syndication" +msgstr "توظيف النشر" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "رقم الصفحة ليس عددًا صحيحًا" + +msgid "That page number is less than 1" +msgstr "رقم الصفحة أقل من 1" + +msgid "That page contains no results" +msgstr "هذه الصفحة لا تحتوي على نتائج" + +msgid "Enter a valid value." +msgstr "أدخل قيمة صحيحة." + +msgid "Enter a valid URL." +msgstr "أدخل رابطاً صحيحاً." + +msgid "Enter a valid integer." +msgstr "أدخل رقم صالح." + +msgid "Enter a valid email address." +msgstr "أدخل عنوان بريد إلكتروني صحيح." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"أدخل “slug” صالحة تتكون من أحرف أو أرقام أو الشرطة السفلية أو الواصلات." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"أدخل “slug” صالحة تتكون من أحرف Unicode أو الأرقام أو الشرطة السفلية أو " +"الواصلات." + +msgid "Enter a valid IPv4 address." +msgstr "أدخل عنوان IPv4 صحيح." + +msgid "Enter a valid IPv6 address." +msgstr "أدخل عنوان IPv6 صحيح." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "أدخل عنوان IPv4 أو عنوان IPv6 صحيح." + +msgid "Enter only digits separated by commas." +msgstr "أدخل أرقاما فقط مفصول بينها بفواصل." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "تحقق من أن هذه القيمة هي %(limit_value)s (إنها %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "تحقق من أن تكون هذه القيمة أقل من %(limit_value)s أو مساوية لها." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "تحقق من أن تكون هذه القيمة أكثر من %(limit_value)s أو مساوية لها." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[1] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[2] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[3] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[4] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[5] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأقل (هي تحتوي " +"حالياً على %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[1] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[2] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[3] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[4] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." +msgstr[5] "" +"تأكد أن هذه القيمة تحتوي على %(limit_value)d حرف أو رمز على الأكثر (هي تحتوي " +"حالياً على %(show_value)d)." + +msgid "Enter a number." +msgstr "أدخل رقماً." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "تحقق من أن تدخل %(max)s أرقام لا أكثر." +msgstr[1] "تحقق من أن تدخل رقم %(max)s لا أكثر." +msgstr[2] "تحقق من أن تدخل %(max)s رقمين لا أكثر." +msgstr[3] "تحقق من أن تدخل %(max)s أرقام لا أكثر." +msgstr[4] "تحقق من أن تدخل %(max)s أرقام لا أكثر." +msgstr[5] "تحقق من أن تدخل %(max)s أرقام لا أكثر." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[1] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[2] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[3] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[4] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." +msgstr[5] "تحقق من أن تدخل %(max)s خانات عشرية لا أكثر." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[1] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[2] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[3] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[4] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." +msgstr[5] "تحقق من أن تدخل %(max)s أرقام قبل الفاصل العشري لا أكثر." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"امتداد الملف “%(extension)s” غير مسموح به. الامتدادات المسموح بها هي:" +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "لا يُسمح بالأحرف الخالية." + +msgid "and" +msgstr "و" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s بهذا %(field_labels)s موجود سلفاً." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "القيمة %(value)r ليست خيارا صحيحاً." + +msgid "This field cannot be null." +msgstr "لا يمكن ترك هذا الحقل خالي." + +msgid "This field cannot be blank." +msgstr "لا يمكن ترك هذا الحقل فارغاً." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "النموذج %(model_name)s والحقل %(field_label)s موجود مسبقاً." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s يجب أن يكون فريد لـ %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "حقل نوع: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "يجب أن تكون القيمة “%(value)s” إما True أو False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "يجب أن تكون القيمة “%(value)s” إما True أو False أو None." + +msgid "Boolean (Either True or False)" +msgstr "ثنائي (إما True أو False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "سلسلة نص (%(max_length)s كحد أقصى)" + +msgid "Comma-separated integers" +msgstr "أرقام صحيحة مفصولة بفواصل" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"تحتوي القيمة “%(value)s” على تنسيق تاريخ غير صالح. يجب أن يكون بتنسيق YYYY-" +"MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"تحتوي القيمة “%(value)s” على التنسيق الصحيح (YYYY-MM-DD) ولكنه تاريخ غير " +"صالح." + +msgid "Date (without time)" +msgstr "التاريخ (دون الوقت)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"تحتوي القيمة “%(value)s” على تنسيق غير صالح. يجب أن يكون بتنسيق YYYY-MM-DD " +"HH: MM [: ss [.uuuuuu]] [TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"تحتوي القيمة “%(value)s” على التنسيق الصحيح (YYYY-MM-DD HH: MM [: ss [." +"uuuuuu]] [TZ]) ولكنها تعد تاريخًا / وقتًا غير صالحين." + +msgid "Date (with time)" +msgstr "التاريخ (مع الوقت)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "يجب أن تكون القيمة “%(value)s” رقمًا عشريًا." + +msgid "Decimal number" +msgstr "رقم عشري" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"تحتوي القيمة “%(value)s” على تنسيق غير صالح. يجب أن يكون بتنسيق [DD] [[HH:] " +"MM:] ss [.uuuuuu]." + +msgid "Duration" +msgstr "المدّة" + +msgid "Email address" +msgstr "عنوان بريد إلكتروني" + +msgid "File path" +msgstr "مسار الملف" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "يجب أن تكون القيمة “%(value)s” قيمة عائمة." + +msgid "Floating point number" +msgstr "رقم فاصلة عائمة" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "يجب أن تكون القيمة “%(value)s” عددًا صحيحًا." + +msgid "Integer" +msgstr "عدد صحيح" + +msgid "Big (8 byte) integer" +msgstr "عدد صحيح كبير (8 بايت)" + +msgid "Small integer" +msgstr "عدد صحيح صغير" + +msgid "IPv4 address" +msgstr "عنوان IPv4" + +msgid "IP address" +msgstr "عنوان IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "يجب أن تكون القيمة “%(value)s” إما None أو True أو False." + +msgid "Boolean (Either True, False or None)" +msgstr "ثنائي (إما True أو False أو None)" + +msgid "Positive big integer" +msgstr "عدد صحيح كبير موجب" + +msgid "Positive integer" +msgstr "عدد صحيح موجب" + +msgid "Positive small integer" +msgstr "عدد صحيح صغير موجب" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (حتى %(max_length)s)" + +msgid "Text" +msgstr "نص" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"تحتوي القيمة “%(value)s” على تنسيق غير صالح. يجب أن يكون بتنسيق HH: MM [: ss " +"[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"تحتوي القيمة “%(value)s” على التنسيق الصحيح (HH: MM [: ss [.uuuuuu]]) ولكنه " +"وقت غير صالح." + +msgid "Time" +msgstr "وقت" + +msgid "URL" +msgstr "رابط" + +msgid "Raw binary data" +msgstr "البيانات الثنائية الخام" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” ليس UUID صالحًا." + +msgid "Universally unique identifier" +msgstr "المعرف الفريد العالمي (UUID)" + +msgid "File" +msgstr "ملف" + +msgid "Image" +msgstr "صورة" + +msgid "A JSON object" +msgstr "كائن JSON" + +msgid "Value must be valid JSON." +msgstr "يجب أن تكون قيمة JSON صالحة." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "النموذج %(model)s ذو الحقل و القيمة %(field)s %(value)r غير موجود." + +msgid "Foreign Key (type determined by related field)" +msgstr "الحقل المرتبط (تم تحديد النوع وفقاً للحقل المرتبط)" + +msgid "One-to-one relationship" +msgstr "علاقة واحد إلى واحد" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s علاقة" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s علاقات" + +msgid "Many-to-many relationship" +msgstr "علاقة متعدد إلى متعدد" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "هذا الحقل مطلوب." + +msgid "Enter a whole number." +msgstr "أدخل رقما صحيحا." + +msgid "Enter a valid date." +msgstr "أدخل تاريخاً صحيحاً." + +msgid "Enter a valid time." +msgstr "أدخل وقتاً صحيحاً." + +msgid "Enter a valid date/time." +msgstr "أدخل تاريخاً/وقتاً صحيحاً." + +msgid "Enter a valid duration." +msgstr "أدخل مدّة صحيحة" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "يجب أن يتراوح عدد الأيام بين {min_days} و {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "لم يتم ارسال ملف، الرجاء التأكد من نوع ترميز الاستمارة." + +msgid "No file was submitted." +msgstr "لم يتم إرسال اي ملف." + +msgid "The submitted file is empty." +msgstr "الملف الذي قمت بإرساله فارغ." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[1] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[2] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[3] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[4] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." +msgstr[5] "" +"تأكد أن إسم هذا الملف يحتوي على %(max)d حرف على الأكثر (هو يحتوي الآن على " +"%(length)d حرف)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"رجاءً أرسل ملف أو صح علامة صح عند مربع اختيار \\\"فارغ\\\"، وليس كلاهما." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"قم برفع صورة صحيحة، الملف الذي قمت برفعه إما أنه ليس ملفا لصورة أو أنه ملف " +"معطوب." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "انتق خياراً صحيحاً. %(value)s ليس أحد الخيارات المتاحة." + +msgid "Enter a list of values." +msgstr "أدخل قائمة من القيم." + +msgid "Enter a complete value." +msgstr "إدخال قيمة كاملة." + +msgid "Enter a valid UUID." +msgstr "أدخل قيمة UUID صحيحة." + +msgid "Enter a valid JSON." +msgstr "ادخل كائن JSON صالح." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(الحقل الخفي %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"نموذج بيانات الإدارة مفقود أو تم العبث به. %(field_names)sمن الحقول مفقود. " +"قد تحتاج إلى رفع تقرير بالمشكلة إن استمرت الحالة." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +msgid "Order" +msgstr "الترتيب" + +msgid "Delete" +msgstr "احذف" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "رجاء صحّح بيانات %(field)s المتكررة." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "رجاء صحّح بيانات %(field)s المتكررة والتي يجب أن تكون مُميّزة." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"رجاء صحّح بيانات %(field_name)s المتكررة والتي يجب أن تكون مُميّزة لـ%(lookup)s " +"في %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "رجاءً صحّح القيم المُكرّرة أدناه." + +msgid "The inline value did not match the parent instance." +msgstr "القيمة المضمنة لا تتطابق مع المثيل الأصلي." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "انتق خياراً صحيحاً. اختيارك ليس أحد الخيارات المتاحة." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” ليست قيمة صالحة." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"لا يمكن تفسير٪ %(datetime)s في المنطقة الزمنية٪ %(current_timezone)s؛ قد " +"تكون غامضة أو غير موجودة." + +msgid "Clear" +msgstr "تفريغ" + +msgid "Currently" +msgstr "حالياً" + +msgid "Change" +msgstr "عدّل" + +msgid "Unknown" +msgstr "مجهول" + +msgid "Yes" +msgstr "نعم" + +msgid "No" +msgstr "لا" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "نعم,لا,ربما" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d بايت" +msgstr[1] "%(size)d بايت واحد " +msgstr[2] "%(size)d بايتان" +msgstr[3] "%(size)d بايت" +msgstr[4] "%(size)d بايت" +msgstr[5] "%(size)d بايت" + +#, python-format +msgid "%s KB" +msgstr "%s ك.ب" + +#, python-format +msgid "%s MB" +msgstr "%s م.ب" + +#, python-format +msgid "%s GB" +msgstr "%s ج.ب" + +#, python-format +msgid "%s TB" +msgstr "%s ت.ب" + +#, python-format +msgid "%s PB" +msgstr "%s ب.ب" + +msgid "p.m." +msgstr "م" + +msgid "a.m." +msgstr "ص" + +msgid "PM" +msgstr "م" + +msgid "AM" +msgstr "ص" + +msgid "midnight" +msgstr "منتصف الليل" + +msgid "noon" +msgstr "ظهراً" + +msgid "Monday" +msgstr "الاثنين" + +msgid "Tuesday" +msgstr "الثلاثاء" + +msgid "Wednesday" +msgstr "الأربعاء" + +msgid "Thursday" +msgstr "الخميس" + +msgid "Friday" +msgstr "الجمعة" + +msgid "Saturday" +msgstr "السبت" + +msgid "Sunday" +msgstr "الأحد" + +msgid "Mon" +msgstr "إثنين" + +msgid "Tue" +msgstr "ثلاثاء" + +msgid "Wed" +msgstr "أربعاء" + +msgid "Thu" +msgstr "خميس" + +msgid "Fri" +msgstr "جمعة" + +msgid "Sat" +msgstr "سبت" + +msgid "Sun" +msgstr "أحد" + +msgid "January" +msgstr "جانفي" + +msgid "February" +msgstr "فيفري" + +msgid "March" +msgstr "مارس" + +msgid "April" +msgstr "أفريل" + +msgid "May" +msgstr "ماي" + +msgid "June" +msgstr "جوان" + +msgid "July" +msgstr "جويليه" + +msgid "August" +msgstr "أوت" + +msgid "September" +msgstr "سبتمبر" + +msgid "October" +msgstr "أكتوبر" + +msgid "November" +msgstr "نوفمبر" + +msgid "December" +msgstr "ديسمبر" + +msgid "jan" +msgstr "جانفي" + +msgid "feb" +msgstr "فيفري" + +msgid "mar" +msgstr "مارس" + +msgid "apr" +msgstr "أفريل" + +msgid "may" +msgstr "ماي" + +msgid "jun" +msgstr "جوان" + +msgid "jul" +msgstr "جويليه" + +msgid "aug" +msgstr "أوت" + +msgid "sep" +msgstr "سبتمبر" + +msgid "oct" +msgstr "أكتوبر" + +msgid "nov" +msgstr "نوفمبر" + +msgid "dec" +msgstr "ديسمبر" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "جانفي" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "فيفري" + +msgctxt "abbrev. month" +msgid "March" +msgstr "مارس" + +msgctxt "abbrev. month" +msgid "April" +msgstr "أفريل" + +msgctxt "abbrev. month" +msgid "May" +msgstr "ماي" + +msgctxt "abbrev. month" +msgid "June" +msgstr "جوان" + +msgctxt "abbrev. month" +msgid "July" +msgstr "جويليه" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "أوت" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "سبتمبر" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "أكتوبر" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "نوفمبر" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ديسمبر" + +msgctxt "alt. month" +msgid "January" +msgstr "جانفي" + +msgctxt "alt. month" +msgid "February" +msgstr "فيفري" + +msgctxt "alt. month" +msgid "March" +msgstr "مارس" + +msgctxt "alt. month" +msgid "April" +msgstr "أفريل" + +msgctxt "alt. month" +msgid "May" +msgstr "ماي" + +msgctxt "alt. month" +msgid "June" +msgstr "جوان" + +msgctxt "alt. month" +msgid "July" +msgstr "جويليه" + +msgctxt "alt. month" +msgid "August" +msgstr "أوت" + +msgctxt "alt. month" +msgid "September" +msgstr "سبتمبر" + +msgctxt "alt. month" +msgid "October" +msgstr "أكتوبر" + +msgctxt "alt. month" +msgid "November" +msgstr "نوفمبر" + +msgctxt "alt. month" +msgid "December" +msgstr "ديسمبر" + +msgid "This is not a valid IPv6 address." +msgstr "هذا ليس عنوان IPv6 صحيح." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "أو" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "، " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +msgid "Forbidden" +msgstr "ممنوع" + +msgid "CSRF verification failed. Request aborted." +msgstr "تم الفشل للتحقق من CSRF. تم إنهاء الطلب." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"أنت ترى هذه الرسالة لأن موقع HTTPS هذا يتطلب \"عنوان مرجعي\" ليتم إرساله " +"بواسطة متصفح الويب الخاص بك ، ولكن لم يتم إرسال أي شيء. هذا العنوان مطلوب " +"لأسباب أمنية ، لضمان عدم اختراق متصفحك من قبل أطراف أخرى." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"إذا قمت بتكوين المستعرض الخاص بك لتعطيل رؤوس “Referer” ، فالرجاء إعادة " +"تمكينها ، على الأقل لهذا الموقع ، أو لاتصالات HTTPS ، أو لطلبات “same-" +"origin”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"إذا كنت تستخدم العلامة أو تتضمن رأس “Referrer-Policy: no-referrer” ، فيرجى إزالتها. تتطلب حماية " +"CSRF رأس “Referer” القيام بالتحقق من “strict referer”. إذا كنت مهتمًا " +"بالخصوصية ، فاستخدم بدائل مثل للروابط إلى مواقع " +"الجهات الخارجية." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"تشاهد هذه الرسالة لأن هذا الموقع يتطلب ملف تعريف ارتباط CSRF Cookie عند " +"إرسال النماذج. ملف تعريف ارتباط Cookie هذا مطلوب لأسباب أمنية ، لضمان عدم " +"اختطاف متصفحك من قبل أطراف ثالثة." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"إذا قمت بتكوين المستعرض الخاص بك لتعطيل ملفات تعريف الارتباط Cookies ، يرجى " +"إعادة تمكينها ، على الأقل لهذا الموقع ، أو لطلبات “same-origin”." + +msgid "More information is available with DEBUG=True." +msgstr "يتوفر مزيد من المعلومات عند ضبط الخيار DEBUG=True." + +msgid "No year specified" +msgstr "لم تحدد السنة" + +msgid "Date out of range" +msgstr "تاريخ خارج النطاق" + +msgid "No month specified" +msgstr "لم تحدد الشهر" + +msgid "No day specified" +msgstr "لم تحدد اليوم" + +msgid "No week specified" +msgstr "لم تحدد الأسبوع" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "لا يوجد %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"التاريخ بالمستقبل %(verbose_name_plural)s غير متوفر لأن قيمة %(class_name)s." +"allow_future هي False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "سلسلة تاريخ غير صالحة “%(datestr)s” شكل معين “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "لم يعثر على أي %(verbose_name)s مطابقة لهذا الإستعلام" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "الصفحة ليست \"الأخيرة\" ، ولا يمكن تحويلها إلى عدد صحيح." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "صفحة خاطئة (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "القائمة فارغة و “%(class_name)s.allow_empty” هي False." + +msgid "Directory indexes are not allowed here." +msgstr "لا يسمح لفهارس الدليل هنا." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” غير موجود" + +#, python-format +msgid "Index of %(directory)s" +msgstr "فهرس لـ %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "تمَّت عملية التثبيت بنجاح! تهانينا!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"عرض ملاحظات الإصدار ل جانغو " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"تشاهد هذه الصفحة لأن DEBUG = True موجود في ملف الإعدادات الخاص بك ولم تقم بتكوين أي " +"عناوين URL." + +msgid "Django Documentation" +msgstr "توثيق جانغو" + +msgid "Topics, references, & how-to’s" +msgstr "الموضوعات ، المراجع، & الكيفية" + +msgid "Tutorial: A Polling App" +msgstr "البرنامج التعليمي: تطبيق الاقتراع" + +msgid "Get started with Django" +msgstr "الخطوات الأولى مع جانغو" + +msgid "Django Community" +msgstr "مجتمع جانغو" + +msgid "Connect, get help, or contribute" +msgstr "الاتصال، الحصول على المساعدة أو المساهمة" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0f939b42a15c5682093ff088ff578edf0ca4c97c GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYF2gk$*wn~E;0uUe&LBb)9 z@Q5b@5*QPiJ|ZGICPx`W5;-PP#-RZjkRjWLWQ0cK1f7sE8k30+&Zf0^JvZi2&6|r& zJ!t)TmH zG}6>S$A;_KYJf(8Wj~8)6X}9kq^lmbT_-RP1uveIrbY)c^G(+aaJTEr|ESl_uspxX zjIe9q&$|8zowj9`vkZfO{d{!V*7Vt{=d1PkOw%tcTfM@*zEnLma6MLTx}mQ+T8B-Y z(Eg}<_|kL3rR7}y0ENiDqcxA~i$xrkX;H@C(!8RvMpyf7x~s}KOUo*uxJdSS&%fGy ziOWruzP(9SUlW!Ulj~%cQDsGUYbB?vBu|y3z#3B4wAdz9d46+yFTLARvd`1^kR4sV ZW=0SM*qxjx{NV%+3coqAu}xfpe*woBu6O_d literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/formats.py new file mode 100644 index 0000000..cbd361d --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ar_DZ/formats.py @@ -0,0 +1,29 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j F Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "j F Y" +SHORT_DATETIME_FORMAT = "j F Y H:i" +FIRST_DAY_OF_WEEK = 0 # Sunday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%Y/%m/%d", # '2006/10/25' +] +TIME_INPUT_FORMATS = [ + "%H:%M", # '14:30 + "%H:%M:%S", # '14:30:59' +] +DATETIME_INPUT_FORMATS = [ + "%Y/%m/%d %H:%M", # '2006/10/25 14:30' + "%Y/%m/%d %H:%M:%S", # '2006/10/25 14:30:59' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ast/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..31733b2ee10b1686442f7e71785aa0cf223e0d78 GIT binary patch literal 15579 zcmb`N37i~NoyVVmfB_c)0TG1?5}47KipVZ2$D+mq5ka%M-`}g(Gd;s3B&_wxf4=oz zz5DpT|ND3DKVXj!7@lp&OT@j5IqNyb+_#@%jqwgLWZAdGIJmb4)kf1I~r|euDcxAMQ0S|}Q!=vDx?)ziz`=6l7-|r9v z9t_paqoK-~>o^}O-DyzmIs?84_Cd9G5Gr5nzK=nre-pIh3f2A(L8ZSIYTQ2$m97bo zf!~5E|1tP{_#{+2_N1~5{vG@vd@CG=FFw?m_rlBJC*hGVHs&h$O?Waq|1e`tg;&D` z@L@=i=13-A{q2E7nPu>0aL|R{1vUSlhHCdMQ2o6V^3Oc%;&*>(G0ulTrrOMgN5h3s z;}JsjH+8%a^3S}TKbrqfK&AT(R6jolRn8XJ4ZjaHK7WO~!#$Zyg=ave-yfa_4~42H zb9@6-x{IO4^HLXnp9^0JRqw~4*3D<(zVHh!{&uK*-+?R<^Fyd~k3!Y^IMn*v244a9 zKB7o}Jk<9d$AwVsS_akMe#dj%_t!wRGk~hE=E8~lJ_c3qMNsSE-7b73RQo>#nR;^r zRQ@}l#_4-d^ZO$g{y9`Vk3i-7wF^H9HP3&A+J^^t%pp7oYQHRmTEA7OaTtYKNAH2k z_iea8yx;M+j=Qn>)$bQVjmJx&*4-?qcAnzm7eUp#+=W-dC4|?(x$vVfhTnxRho>G% zn_vig;dM~``Zd%z{Q;`ITFh$i{!sOIK#j*-sCJ#^;+MkR37_TS*TThwUklHGpM)B( zUqO}g1k^nI1*-r1GDxcb2&i;NL+z)zQ0Z1cg6dc3zNhe9!mo!a?{27ZxEE^tw?g&rNvM3=;B(=gM;Gz?Lgjk_R67oW%HQdD zvg0bpl4I`p4yb$|fm(MrxcIL--sQeO0<{kQ43%!*V~Tu-J01&F?-HnWajs(sm2V76 zKfepAzAK>8Z-zQoZiDLQ-HtzT{F&nejt@CL>bTYMcaDE>d$dw({S_Q_1Bbn~I+ zYpLTZ$F+{Ha`Yivz*M2ybqRbPybRI|^I@oVUg^Gn49*~Y72FeUhN|cDF1!V5e829( zcR}gbpF*X31kQk4;ok5`sCjt~$`=)E4uVI)Qn|PhWv5?;aO_KeX*}@mrzB@o}hiwg<{n^&Jc~o`*w?%N%$-JjsP4sP>IQ zrN0bb2tNql4-f1zCV`)UH^Rd>48H*Hgg3*t&OwL41#^pY{zAuFp!C8MP~{&u51k7; zAw`>2E_@->xp5V={e&C=<{n5_%pYC+%Z@F+p9-bF&V@9|j6n74Q&8={!SQB@sy4T} z@B{Dw!jD3Y<2I=Jc4v{!hlfMW$JtQ(>2*-$RUB(@J>krS?}AEyp9?<(Rqj?7ejI9k zwn3%ajX{?l-Un))4uxuWCsexQp!DTQF8(a2@?Hh^fhEXLn#g_s7*x5}K&AVf3*X|x zw?nP_J6!yCUHm;z_1zEEzXx6XuUz=|Q0@FPRQsNHLcs&!3kkmzD*v%i<g@QA3~*jBm8^#7T5u|K-qOahtdPv;9_{-iN&~_3$>mufJ%26)Hq%Z zRsPM6x55_?{w7rWehk%~pF!z|2cg>k2wVoYLYA_bPh(uG^r>{k98#532loUHk)3`5tooh2w7=A9sAp@h^_MpIqeI+wu91 z2RI($_!7sNQ2jX?s{Yx~_Q!F7i(llp460pcLFHTL!mozP=R1Z_<8cAhIre&}{=UKS zBFDEozSHqi$IBf*;CO}ON8!Gdvk9uc>s|a89k)Q$_cf??-sa-J0X3g@xbGhCixEAq zL|$Uwia-AVUW{lT1;|GcJ>NoZK|Y534{{swIHHGbXy^N8sC}WQ6L~)}2e}c^{J$MJ z6ZtvvYGgHXB(f1{J@>npH^M(4gRKv3%z6J$0iiI}q)k%Mk55J#Rt|MWk2s zNRMo`Z`cX&eB=wrX-Mno<>hzCamd?{A0ppFq{H=Gf!vPFMD9T}CyyXsLR!zuc;T2b z_aQn9mm}+u-y=Ujjz$hb^n9RzowN7xz7&zZy$X2@(er)8M`j`4Ku$q^g|Kx^9r-F! zLH-Frt=Rc~5FY1c{9>_9^~b{$fuE#i`3^FSd=Y6q$Mf=M7Z`wtAWh_7T%7O*_kNz^Vem)p{RH?MM7rc0 zWF_)>WErC8CrF6I3h*pJUW8nVJc_&=S%B!-P{8{1^!hUwZbzBG1;}@iSGf->98Yx= zzKzU7UXLWm#mHxoYY{!~EMPtX_d=|;{#^!#%Hlfn$? zM}F+$%&d-jTnTFHBflPWrrt=H4SCs6n0m812E(9MSzq%@L5(kdEeZU}m=}zOX_j`A zF%35cofWS%mIaeTshL&rD*l**4GzV5qOfQq>S2^CW5p}pipV(1hHRW(Y}7~)Y*377 zBgO*XmLw99dS@)u-{tmipZ&Yq{vB9oI?fC$l_2tLSLjmF%TC^cB#D#G)XetG-0>Fl zn4VX5&osS#rgtz2H~4;(n%-K;k3v5(y^SQSncl=Ng=J6;qAb)0ufIWpbjbAP)jZ8i z@5Uf0`QiCQnuUIPK^~ZeLCsI{RHZBoqN-oxOIY;u z%DyO162_%AW)^J>%0uS#Vq{Jyxz|ywt&nv_d@CZ(GcPORf^twVF$$*#<*@G8yeN0U zTEId%Jxqdf7AIp=TM0%3R%8-*QJk?dYw-xpVZ?%Nb9$ap@#4B4);zybNrE&rt$r?! z(wt1$kWZyb?#l4$aSg#`U`&)^RtL$e z*-&Stv#kv~T~7MU1r7T(Hk@k>OWro87S_XTz5Rr?o32^uP(0E~Fr{g`Qet}pceY43 zWPiIh?zq5RY9cekl(mgsk=sVM^)H=v$VgS?z|s7(T_fqY;DQ{jki}C=oxB)|5hr_% zoxf9gRfq4P2s1Ap^lW~+ZHxFq3#pDG%=fV3EnPi)d`rDd`;GRJ=ENPO+3vTsYgSAx zvcf=27dJ<$bLxknUH47>I9&$Y<%xtNL!3fR`?g}^s5a(Rq@Gf5;s7X(d1ajm8m_bv zBz}~|ym7?nFjx|llH5S(exbebicMw|vql29U(1lV(U zNuKE_nAI`NX&tA5HGtMPYI)+z+Og-#FlUHgVk}BQ+0Rp@F4z1tb;eS+J$Tj+7A3Lb z>@nSK&R~UaZ)W_lDfi)Y?(6|mSDu3$uSn1Gjq%Vd-5(_-C8TAeQ}wkWx7Pt zvRPX9If|F+^wVI@>Zr7iL`IQlj(^*=rOuiVlNv*q`+P3eZG$4bj#(Yz`eJE!rk$D- zj{THK6~zz@nWd5<}t}O0iwA@^Vag+{)4Zb8y zWFIrwhXq=0GrRgQXb?>8KhrBxGF?-3&qmZ%fHoI8NE@l|N(o9pgZJ&mg11gR;7)gKj&tI>`g$|xih)>)(4o@_V{40Kt4EgtqaSOm74{k5EXS>7nj z46Xv}oz0ncn*K>6*1GleXNmUf_VVP^i)PVajrc=c$Y4;>EDiW|?vn%Tmc$GM)SH9R z%+T+UKf#3FC{__;8PpruST`Sew~N$65$dR7QN1!VDySg=G^**jufk8sHv_6p8X=gSvpFV%Apbd6Jp68xr4Mht1k(Llloh zW^IELyfVHxxYAWw8|s+d6k~Djp)*Lrd`L~Ytz%E#$g|0{1AMDya;BCGr!B**O)9xr z7ev9vTxa9>1$Oyd z6>UlAUa@!D;>HcQwz!r#&>m$wI8k`fyNR&tT6+Zjnh1`cM{RMfqp2-Qy>d;AD#mXl z#?PyUd%776O6GjF`}uhdiANyLz#(UY=kHtHgP#Kabg-;1(>mBEJ$ZZ z@oW;80<$`a&qtkgEvIc%=bh9wZ(i5j6TG=|dybp`in%;9R&bN-VpBya)@hvdcx%}EN$mB- zSerr0cNuBbplcxT>pfm?ihk9J-7%D9jh;DkMn*=uGi474gVAnG?m0!fT3{2{{Bx*h zPUnoirG1Mhx-hSM?u=={6X{ghV32ez zcJ@e*H@_5S;|=ZcsAa(Z$%@?8`M+X>Mj~^D@MEIu;SuwU{f)zQr~b3c|*q zC+tfa)Hvj9#^SYz_M11_oKX38>}Oo$*BiNqsa#5$n{#@#BTpm6P4P4~H;ua*bJJUr zqp^7rp2k4;Dm4IKRx-*AHaFvltl}pjS>b0KrBbubPs=$zMQo7-MxSA3_#pKnf$<5fjDdN^q ztrefbthp%))yC!)`5M(&-HGzT)5u3&>Uo8oy8@R%Bjm;2xMO$U%zWOsV(P-_7Y;|? z^lI5NI=CqV%EsGBZE`O9UWZng)`N965)Rlst(e~7kg?3o%H|fi81t5&4cBApN8H^K zvogo_rdfCwG2WY-shtC}x!J4nW<8K638GZjSS`H zHF;}1Om7-gn_J{W)g^3=Gn%Mm;GTVk)pK5@)wUd>z zsYXNU#Y2bgP`hegBY!q6DN51+{*8)KqguYmUFwZ(!?Zb%vC1flaYiyOn;2Vq!3K{iL~xUoY@Y+9Z=alapHXEX!rQcdld%ZEU2cx3k^tHeGw${BQE6 zPSfUHEV-@4yHqyYnbFPh(oFU1{lA;NQ$;_Ec8}R><7B_4jce<;oSNGmR1#xxFmJIJ zqQKDYtgQAKo4QMjRaDG~GP4+Wm>JJc5?At#+_Z6Q%Cl*&Xn1BQx$UDDIR!W=*0(y% zX)o)G8g6dle&;_!s<`lY?o8qnz3EeNq1etB>s6ROlRnLns^4DL>2&dS(r&jHU2z%o zq6Mh>=|)j!Q-dF?r0CrQU-fu??)2cG^pxR2@Zahn!R3gEfA~L8)+^g35>8%Bfviz%|;^kn~Y3n?!%`I}VVjWB@gQcq{ zhlYEtXkeO`;&a`op`YH*%3R64YNvYK%euO`X%y!P_JLce&+KX)ueETu z(kna@6nl=(;Aw=Jg9?O#EO;c7vXKF1VK9+s!QDmX>Q+4Juyt3D}w{9jDm#ZLfzSnZ|CYBrf&EJl* z)uqp)VXQNfy4}+4En@TXdwU6u={B2YAAhdSdN0EKksB`OmwcIeMYkr`s*A#YrWDJOX)PI1)QYZd<5-1Ij$mFyoMhuPw^6sm8s34*j7kFm?fPeE-o=d+C% z9i?F@XjR~!XeHO+jw^M0ZtbYV#c5kTDijT_a(7&2KTDc9O4DaZ(_A8!U@~&Zxgt)AN!lz~4;XKr)OTIa7|2V(9QA@nfR(?Ml~6xZdH~ zP3XsjLznk5hdf>=PEIYCC@$mKpukdSrx9Q5XfUyU+Ipvxe3WGNN)_AN?HIoePvn}- z=E-~%t**_O8Qq0Pcl-z$mTOm6X&f7cOE=^|=)=_L!(EY-abKkRl~w0je{*x;)WvIp z$z6^4GaPoyf?@, 2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Asturian (http://www.transifex.com/django/django/language/" +"ast/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ast\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikáans" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Azerbaixanu" + +msgid "Bulgarian" +msgstr "Búlgaru" + +msgid "Belarusian" +msgstr "Bielorrusu" + +msgid "Bengali" +msgstr "Bengalí" + +msgid "Breton" +msgstr "Bretón" + +msgid "Bosnian" +msgstr "Bosniu" + +msgid "Catalan" +msgstr "Catalán" + +msgid "Czech" +msgstr "Checu" + +msgid "Welsh" +msgstr "Galés" + +msgid "Danish" +msgstr "Danés" + +msgid "German" +msgstr "Alemán" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Griegu" + +msgid "English" +msgstr "Inglés" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "Inglés británicu" + +msgid "Esperanto" +msgstr "Esperantu" + +msgid "Spanish" +msgstr "Castellán" + +msgid "Argentinian Spanish" +msgstr "Español arxentín" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Español mexicanu" + +msgid "Nicaraguan Spanish" +msgstr "Español nicaraguanu" + +msgid "Venezuelan Spanish" +msgstr "Español venezolanu" + +msgid "Estonian" +msgstr "Estoniu" + +msgid "Basque" +msgstr "Vascu" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finés" + +msgid "French" +msgstr "Francés" + +msgid "Frisian" +msgstr "Frisón" + +msgid "Irish" +msgstr "Irlandés" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Gallegu" + +msgid "Hebrew" +msgstr "Hebréu" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Húngaru" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesiu" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Islandés" + +msgid "Italian" +msgstr "Italianu" + +msgid "Japanese" +msgstr "Xaponés" + +msgid "Georgian" +msgstr "Xeorxanu" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Kazakh" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Canarés" + +msgid "Korean" +msgstr "Coreanu" + +msgid "Luxembourgish" +msgstr "Luxemburgués" + +msgid "Lithuanian" +msgstr "Lituanu" + +msgid "Latvian" +msgstr "Letón" + +msgid "Macedonian" +msgstr "Macedoniu" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "Birmanu" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Nepalí" + +msgid "Dutch" +msgstr "Holandés" + +msgid "Norwegian Nynorsk" +msgstr "Nynorsk noruegu" + +msgid "Ossetic" +msgstr "Osetiu" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polacu" + +msgid "Portuguese" +msgstr "Portugués" + +msgid "Brazilian Portuguese" +msgstr "Portugués brasileñu" + +msgid "Romanian" +msgstr "Rumanu" + +msgid "Russian" +msgstr "Rusu" + +msgid "Slovak" +msgstr "Eslovacu" + +msgid "Slovenian" +msgstr "Eslovenu" + +msgid "Albanian" +msgstr "Albanu" + +msgid "Serbian" +msgstr "Serbiu" + +msgid "Serbian Latin" +msgstr "Serbiu llatín" + +msgid "Swedish" +msgstr "Suecu" + +msgid "Swahili" +msgstr "Suaḥili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Thai" +msgstr "Tailandés" + +msgid "Turkish" +msgstr "Turcu" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurtu" + +msgid "Ukrainian" +msgstr "Ucranianu" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chinu simplificáu" + +msgid "Traditional Chinese" +msgstr "Chinu tradicional" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Introduz un valor válidu." + +msgid "Enter a valid URL." +msgstr "Introduz una URL válida." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "Introduz una direición de corréu válida." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Introduz una direición IPv4 válida." + +msgid "Enter a valid IPv6 address." +msgstr "Introduz una direición IPv6 válida." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Introduz una direición IPv4 o IPv6 válida." + +msgid "Enter only digits separated by commas." +msgstr "Introduz namái díxitos separtaos per comes." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Asegúrate qu'esti valor ye %(limit_value)s (ye %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Asegúrate qu'esti valor ye menor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Asegúrate qu'esti valor ye mayor o igual a %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrate qu'esti valor tien polo menos %(limit_value)d caráuter (tien " +"%(show_value)d)." +msgstr[1] "" +"Asegúrate qu'esti valor tien polo menos %(limit_value)d caráuteres (tien " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrate qu'esti valor tien como muncho %(limit_value)d caráuter (tien " +"%(show_value)d)." +msgstr[1] "" +"Asegúrate qu'esti valor tien como muncho %(limit_value)d caráuteres (tien " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Introduz un númberu." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asegúrate que nun hai más de %(max)s díxitu en total." +msgstr[1] "Asegúrate que nun hai más de %(max)s díxitos en total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Asegúrate que nun hai más de %(max)s allugamientu decimal." +msgstr[1] "Asegúrate que nun hai más de %(max)s allugamientos decimales." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Asegúrate que nun hai más de %(max)s díxitu enantes del puntu decimal." +msgstr[1] "" +"Asegúrate que nun hai más de %(max)s díxitos enantes del puntu decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "y" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Esti campu nun pue ser nulu." + +msgid "This field cannot be blank." +msgstr "Esti campu nun pue tar baleru." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s con esti %(field_label)s yá esiste." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campu de la triba: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boleanu (tamién True o False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadena (fasta %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Enteros separtaos per coma" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Data (ensin hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Data (con hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Númberu decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Direición de corréu" + +msgid "File path" +msgstr "Camín del ficheru" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Númberu de puntu flotante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Enteru" + +msgid "Big (8 byte) integer" +msgstr "Enteru big (8 byte)" + +msgid "IPv4 address" +msgstr "Direición IPv4" + +msgid "IP address" +msgstr "Direición IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boleanu (tamién True, False o None)" + +msgid "Positive integer" +msgstr "Enteru positivu" + +msgid "Positive small integer" +msgstr "Enteru pequeñu positivu" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (fasta %(max_length)s)" + +msgid "Small integer" +msgstr "Enteru pequeñu" + +msgid "Text" +msgstr "Testu" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datos binarios crudos" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Ficheru" + +msgid "Image" +msgstr "Imaxe" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Clave foriata (triba determinada pol campu rellacionáu)" + +msgid "One-to-one relationship" +msgstr "Rellación a ún" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Rellación a munchos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Requierse esti campu." + +msgid "Enter a whole number." +msgstr "Introduz un númberu completu" + +msgid "Enter a valid date." +msgstr "Introduz una data válida." + +msgid "Enter a valid time." +msgstr "Introduz una hora válida." + +msgid "Enter a valid date/time." +msgstr "Introduz una data/hora válida." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nun s'unvió'l ficheru. Comprueba la triba de cifráu nel formulariu." + +msgid "No file was submitted." +msgstr "No file was submitted." + +msgid "The submitted file is empty." +msgstr "El ficheru dunviáu ta baleru." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Asegúrate qu'esti nome de ficheru tien polo menos %(max)d caráuter (tien " +"%(length)d)." +msgstr[1] "" +"Asegúrate qu'esti nome de ficheru tien polo menos %(max)d caráuteres (tien " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Por favor, dunvia un ficheru o conseña la caxella , non dambos." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Xubi una imaxe válida. El ficheru que xubiesti o nun yera una imaxe, o taba " +"toriada." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Esbilla una escoyeta válida. %(value)s nun una ún de les escoyetes " +"disponibles." + +msgid "Enter a list of values." +msgstr "Introduz una llista valores." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campu anubríu %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Por favor, dunvia %d o menos formularios." +msgstr[1] "Por favor, dunvia %d o menos formularios." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Orde" + +msgid "Delete" +msgstr "Desanciar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor, igua'l datu duplicáu de %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor, igua'l datu duplicáu pa %(field)s, el cual tien de ser únicu." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor, igua'l datu duplicáu de %(field_name)s el cual tien de ser únicu " +"pal %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Por favor, igua los valores duplicaos embaxo" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Esbilla una escoyeta válida. Esa escoyeta nun ye una de les escoyetes " +"disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Llimpiar" + +msgid "Currently" +msgstr "Anguaño" + +msgid "Change" +msgstr "Camudar" + +msgid "Unknown" +msgstr "Desconocíu" + +msgid "Yes" +msgstr "Sí" + +msgid "No" +msgstr "Non" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "sí,non,quiciabes" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "Media nueche" + +msgid "noon" +msgstr "Meudía" + +msgid "Monday" +msgstr "Llunes" + +msgid "Tuesday" +msgstr "Martes" + +msgid "Wednesday" +msgstr "Miércoles" + +msgid "Thursday" +msgstr "Xueves" + +msgid "Friday" +msgstr "Vienres" + +msgid "Saturday" +msgstr "Sábadu" + +msgid "Sunday" +msgstr "Domingu" + +msgid "Mon" +msgstr "LLu" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mie" + +msgid "Thu" +msgstr "Xue" + +msgid "Fri" +msgstr "Vie" + +msgid "Sat" +msgstr "Sáb" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "Xineru" + +msgid "February" +msgstr "Febreru" + +msgid "March" +msgstr "Marzu" + +msgid "April" +msgstr "Abril" + +msgid "May" +msgstr "Mayu" + +msgid "June" +msgstr "Xunu" + +msgid "July" +msgstr "Xunetu" + +msgid "August" +msgstr "Agostu" + +msgid "September" +msgstr "Setiembre" + +msgid "October" +msgstr "Ochobre" + +msgid "November" +msgstr "Payares" + +msgid "December" +msgstr "Avientu" + +msgid "jan" +msgstr "xin" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "xun" + +msgid "jul" +msgstr "xnt" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "set" + +msgid "oct" +msgstr "och" + +msgid "nov" +msgstr "pay" + +msgid "dec" +msgstr "avi" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Xin." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mar." + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "May." + +msgctxt "abbrev. month" +msgid "June" +msgstr "Xun." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Xnt." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Set." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Och." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Pay." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Avi." + +msgctxt "alt. month" +msgid "January" +msgstr "Xineru" + +msgctxt "alt. month" +msgid "February" +msgstr "Febreru" + +msgctxt "alt. month" +msgid "March" +msgstr "Marzu" + +msgctxt "alt. month" +msgid "April" +msgstr "Abril" + +msgctxt "alt. month" +msgid "May" +msgstr "Mayu" + +msgctxt "alt. month" +msgid "June" +msgstr "Xunu" + +msgctxt "alt. month" +msgid "July" +msgstr "Xunetu" + +msgctxt "alt. month" +msgid "August" +msgstr "Agostu" + +msgctxt "alt. month" +msgid "September" +msgstr "Setiembre" + +msgctxt "alt. month" +msgid "October" +msgstr "Ochobre" + +msgctxt "alt. month" +msgid "November" +msgstr "Payares" + +msgctxt "alt. month" +msgid "December" +msgstr "Avientu" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d añu" +msgstr[1] "%d años" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d mes" +msgstr[1] "%d meses" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d selmana" +msgstr[1] "%d selmanes" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d día" +msgstr[1] "%d díes" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d hora" +msgstr[1] "%d hores" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minutu" +msgstr[1] "%d minutos" + +msgid "0 minutes" +msgstr "0 minutos" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "Nun s'especificó l'añu" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Nun s'especificó'l mes" + +msgid "No day specified" +msgstr "Nun s'especificó'l día" + +msgid "No week specified" +msgstr "Nun s'especificó la selmana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ensin %(verbose_name_plural)s disponible" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Nun ta disponible'l %(verbose_name_plural)s futuru porque %(class_name)s." +"allow_future ye False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Nun s'alcontró %(verbose_name)s que concase cola gueta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Páxina inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Nun tán almitíos equí los indexaos de direutoriu." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índiz de %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..441b0ca0c92a8ad34a1e54f8f912ecd42f5cabb5 GIT binary patch literal 28595 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po new file mode 100644 index 0000000..72734bb --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/az/LC_MESSAGES/django.po @@ -0,0 +1,1347 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Emin Mastizada , 2018,2020 +# Emin Mastizada , 2015-2016 +# Metin Amiroff , 2011 +# Nicat Məmmədov , 2022 +# Nijat Mammadov, 2024 +# Sevdimali , 2024 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Sevdimali , 2024\n" +"Language-Team: Azerbaijani (http://app.transifex.com/django/django/language/" +"az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Ərəb" + +msgid "Algerian Arabic" +msgstr "Əlcəzair Ərəbcəsi" + +msgid "Asturian" +msgstr "Asturiya" + +msgid "Azerbaijani" +msgstr "Azərbaycan" + +msgid "Bulgarian" +msgstr "Bolqar" + +msgid "Belarusian" +msgstr "Belarus" + +msgid "Bengali" +msgstr "Benqal" + +msgid "Breton" +msgstr "Breton" + +msgid "Bosnian" +msgstr "Bosniya" + +msgid "Catalan" +msgstr "Katalon" + +msgid "Central Kurdish (Sorani)" +msgstr "Mərkəzi Kürd dili (Sorani)" + +msgid "Czech" +msgstr "Çex" + +msgid "Welsh" +msgstr "Uels" + +msgid "Danish" +msgstr "Danimarka" + +msgid "German" +msgstr "Alman" + +msgid "Lower Sorbian" +msgstr "Aşağı Sorb" + +msgid "Greek" +msgstr "Yunan" + +msgid "English" +msgstr "İngilis" + +msgid "Australian English" +msgstr "Avstraliya İngiliscəsi" + +msgid "British English" +msgstr "Britaniya İngiliscəsi" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "İspan" + +msgid "Argentinian Spanish" +msgstr "Argentina İspancası" + +msgid "Colombian Spanish" +msgstr "Kolumbia İspancası" + +msgid "Mexican Spanish" +msgstr "Meksika İspancası" + +msgid "Nicaraguan Spanish" +msgstr "Nikaraqua İspancası" + +msgid "Venezuelan Spanish" +msgstr "Venesuela İspancası" + +msgid "Estonian" +msgstr "Eston" + +msgid "Basque" +msgstr "Bask" + +msgid "Persian" +msgstr "Fars" + +msgid "Finnish" +msgstr "Fin" + +msgid "French" +msgstr "Fransız" + +msgid "Frisian" +msgstr "Fris" + +msgid "Irish" +msgstr "İrland" + +msgid "Scottish Gaelic" +msgstr "Şotland Keltcəsi" + +msgid "Galician" +msgstr "Qalisiya" + +msgid "Hebrew" +msgstr "İvrit" + +msgid "Hindi" +msgstr "Hind" + +msgid "Croatian" +msgstr "Xorvat" + +msgid "Upper Sorbian" +msgstr "Yuxarı Sorb" + +msgid "Hungarian" +msgstr "Macar" + +msgid "Armenian" +msgstr "Erməni" + +msgid "Interlingua" +msgstr "İnterlinqua" + +msgid "Indonesian" +msgstr "İndoneziya dili" + +msgid "Igbo" +msgstr "İqbo" + +msgid "Ido" +msgstr "İdo" + +msgid "Icelandic" +msgstr "İsland" + +msgid "Italian" +msgstr "İtalyan" + +msgid "Japanese" +msgstr "Yapon" + +msgid "Georgian" +msgstr "Gürcü" + +msgid "Kabyle" +msgstr "Kabile" + +msgid "Kazakh" +msgstr "Qazax" + +msgid "Khmer" +msgstr "Xmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreya" + +msgid "Kyrgyz" +msgstr "Qırğız" + +msgid "Luxembourgish" +msgstr "Lüksemburq" + +msgid "Lithuanian" +msgstr "Litva" + +msgid "Latvian" +msgstr "Latış" + +msgid "Macedonian" +msgstr "Makedon" + +msgid "Malayalam" +msgstr "Malayam" + +msgid "Mongolian" +msgstr "Monqol" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malay" + +msgid "Burmese" +msgstr "Birman" + +msgid "Norwegian Bokmål" +msgstr "Norveç Bukmolcası" + +msgid "Nepali" +msgstr "Nepal" + +msgid "Dutch" +msgstr "Niderland" + +msgid "Norwegian Nynorsk" +msgstr "Norveç Nyunorskcası" + +msgid "Ossetic" +msgstr "Osetin" + +msgid "Punjabi" +msgstr "Pəncab" + +msgid "Polish" +msgstr "Polyak" + +msgid "Portuguese" +msgstr "Portuqal" + +msgid "Brazilian Portuguese" +msgstr "Braziliya Portuqalcası" + +msgid "Romanian" +msgstr "Rumın" + +msgid "Russian" +msgstr "Rus" + +msgid "Slovak" +msgstr "Slovak" + +msgid "Slovenian" +msgstr "Sloven" + +msgid "Albanian" +msgstr "Alban" + +msgid "Serbian" +msgstr "Serb" + +msgid "Serbian Latin" +msgstr "Serb (Latın)" + +msgid "Swedish" +msgstr "İsveç" + +msgid "Swahili" +msgstr "Suahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Teluqu" + +msgid "Tajik" +msgstr "Tacik" + +msgid "Thai" +msgstr "Tay" + +msgid "Turkmen" +msgstr "Türkmən" + +msgid "Turkish" +msgstr "Türk" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Uyğur" + +msgid "Ukrainian" +msgstr "Ukrayn" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Özbək" + +msgid "Vietnamese" +msgstr "Vyetnam" + +msgid "Simplified Chinese" +msgstr "Sadələşdirilmiş Çin dili" + +msgid "Traditional Chinese" +msgstr "Ənənəvi Çin dili" + +msgid "Messages" +msgstr "Mesajlar" + +msgid "Site Maps" +msgstr "Sayt Xəritələri" + +msgid "Static Files" +msgstr "Statik Fayllar" + +msgid "Syndication" +msgstr "Sindikasiya" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Səhifə nömrəsi rəqəm deyil" + +msgid "That page number is less than 1" +msgstr "Səhifə nömrəsi 1-dən balacadır" + +msgid "That page contains no results" +msgstr "O səhifədə nəticə yoxdur" + +msgid "Enter a valid value." +msgstr "Düzgün dəyər daxil edin." + +msgid "Enter a valid domain name." +msgstr "Düzgün domen adı daxil edin." + +msgid "Enter a valid URL." +msgstr "Düzgün URL daxil edin." + +msgid "Enter a valid integer." +msgstr "Düzgün rəqəm daxil edin." + +msgid "Enter a valid email address." +msgstr "Düzgün e-poçt ünvanı daxil edin." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Hərflərdən, rəqəmlərdən, alt-xətlərdən və ya defislərdən ibarət düzgün " +"qısaltma (“slug”) daxil edin." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Unicode hərflərdən, rəqəmlərdən, alt-xətlərdən və ya defislərdən ibarət " +"düzgün qısaltma (“slug”) daxil edin." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Düzgün %(protocol)s adres daxil edin." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 və ya IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Vergüllə ayırmaqla yalnız rəqəmlər daxil edin." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Əmin olun ki, bu dəyər %(limit_value)s-dir/dır (bu %(show_value)s-dir/dır)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Bu qiymətin %(limit_value)s-(y)a/ə bərabər və ya ondan kiçik olduğunu " +"yoxlayın." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Bu qiymətin %(limit_value)s-(y)a/ə bərabər və ya ondan böyük olduğunu " +"yoxlayın." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Bu dəyərin %(limit_value)s addım ölçüsünün mərtəbələri olduğundan əmin olun." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Bu dəyərin %(offset)s dəyərindən başlayaraq %(limit_value)s addım ölçüsü " +"mərtəbəsi olduğundan əmin olun. Məs: %(offset)s, %(valid_value1)s, " +"%(valid_value2)s və s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bu dəyərin ən az %(limit_value)d simvol olduğuna əmin olun (%(show_value)d " +"simvol var)" +msgstr[1] "" +"Bu dəyərin ən az %(limit_value)d simvol olduğuna əmin olun (%(show_value)d " +"simvol var)" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bu dəyərin ən çox %(limit_value)d simvol olduğuna əmin olun (%(show_value)d " +"simvol var)" +msgstr[1] "" +"Bu dəyərin ən çox %(limit_value)d simvol olduğuna əmin olun (%(show_value)d " +"simvol var)" + +msgid "Enter a number." +msgstr "Ədəd daxil edin." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Toplamda %(max)s rəqəmdən çox olmadığına əmin olun." +msgstr[1] "Toplamda %(max)s rəqəmdən çox olmadığına əmin olun." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Onluq hissənin %(max)s rəqəmdən çox olmadığına əmin olun." +msgstr[1] "Onluq hissənin %(max)s rəqəmdən çox olmadığına əmin olun." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Onluq hissədən əvvəl %(max)s rəqəmdən çox olmadığına əmin olun." +msgstr[1] "Onluq hissədən əvvəl %(max)s rəqəmdən çox olmadığına əmin olun." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"“%(extension)s” fayl uzantısına icazə verilmir. İcazə verilən fayl " +"uzantıları: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null simvollara icazə verilmir." + +msgid "and" +msgstr "və" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(field_labels)s ilə %(model_name)s artıq mövcuddur." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "“%(name)s” məhdudiyyəti pozuldu." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r dəyəri doğru seçim deyil." + +msgid "This field cannot be null." +msgstr "Bu sahə boş qala bilməz." + +msgid "This field cannot be blank." +msgstr "Bu sahə ağ qala bilməz." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s bu %(field_label)s sahə ilə artıq mövcuddur." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s dəyəri %(date_field_label)s %(lookup_type)s üçün unikal " +"olmalıdır." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Sahənin tipi: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” dəyəri ya True, ya da False olmalıdır." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” dəyəri True, False və ya None olmalıdır." + +msgid "Boolean (Either True or False)" +msgstr "Bul (ya Doğru, ya Yalan)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Sətir (%(max_length)s simvola kimi)" + +msgid "String (unlimited)" +msgstr "Sətir (limitsiz)" + +msgid "Comma-separated integers" +msgstr "Vergüllə ayrılmış tam ədədlər" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” dəyəri səhv tarix formatındadır. Formatı YYYY-MM-DD olmalıdır." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” dəyəri düzgün formatdadır (YYYY-MM-DD), amma bu tarix xətalıdır." + +msgid "Date (without time)" +msgstr "Tarix (saatsız)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” dəyərinin formatı səhvdir. Formatı YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ] olmalıdır." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” dəyərinin formatı düzgündür (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) " +"amma bu tarix xətalıdır." + +msgid "Date (with time)" +msgstr "Tarix (vaxt ilə)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” dəyəri onluq kəsrli (decimal) rəqəm olmalıdır." + +msgid "Decimal number" +msgstr "Rasional ədəd" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” dəyərinin formatı səhvdir. Formatı [DD] [HH:[MM:]]ss[.uuuuuu] " +"olmalıdır." + +msgid "Duration" +msgstr "Müddət" + +msgid "Email address" +msgstr "E-poçt" + +msgid "File path" +msgstr "Faylın ünvanı" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” dəyəri float olmalıdır." + +msgid "Floating point number" +msgstr "Sürüşən vergüllü ədəd" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” dəyəri tam rəqəm olmalıdır." + +msgid "Integer" +msgstr "Tam ədəd" + +msgid "Big (8 byte) integer" +msgstr "Böyük (8 bayt) tam ədəd" + +msgid "Small integer" +msgstr "Kiçik tam ədəd" + +msgid "IPv4 address" +msgstr "IPv4 ünvanı" + +msgid "IP address" +msgstr "IP ünvan" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” dəyəri None, True və ya False olmalıdır." + +msgid "Boolean (Either True, False or None)" +msgstr "Bul (Ya True, ya False, ya da None)" + +msgid "Positive big integer" +msgstr "Müsbət böyük rəqəm" + +msgid "Positive integer" +msgstr "Müsbət tam ədəd" + +msgid "Positive small integer" +msgstr "Müsbət tam kiçik ədəd" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Əzmə (%(max_length)s simvola kimi)" + +msgid "Text" +msgstr "Mətn" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” dəyərinin formatı səhvdir. Formatı HH:MM[:ss[.uuuuuu]] olmalıdır." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” dəyəri düzgün formatdadır (HH:MM[:ss[.uuuuuu]]), amma vaxtı " +"xətalıdır." + +msgid "Time" +msgstr "Vaxt" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Düz ikili (binary) məlumat" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” keçərli UUID deyil." + +msgid "Universally unique identifier" +msgstr "Universal təkrarolunmaz identifikator" + +msgid "File" +msgstr "Fayl" + +msgid "Image" +msgstr "Şəkil" + +msgid "A JSON object" +msgstr "JSON obyekti" + +msgid "Value must be valid JSON." +msgstr "Dəyər düzgün JSON olmalıdır." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s dəyəri %(value)r olan %(model)s mövcud deyil." + +msgid "Foreign Key (type determined by related field)" +msgstr "Xarici açar (bağlı olduğu sahəyə uyğun tipi alır)" + +msgid "One-to-one relationship" +msgstr "Birin-birə münasibət" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s əlaqəsi" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s əlaqələri" + +msgid "Many-to-many relationship" +msgstr "Çoxun-çoxa münasibət" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Bu sahə vacibdir." + +msgid "Enter a whole number." +msgstr "Tam ədəd daxil edin." + +msgid "Enter a valid date." +msgstr "Düzgün tarix daxil edin." + +msgid "Enter a valid time." +msgstr "Düzgün vaxt daxil edin." + +msgid "Enter a valid date/time." +msgstr "Düzgün tarix/vaxt daxil edin." + +msgid "Enter a valid duration." +msgstr "Keçərli müddət daxil edin." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Günlərin sayı {min_days} ilə {max_days} arasında olmalıdır." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Fayl göndərilməyib. Vərəqənin (\"form\") şifrələmə tipini yoxlayın." + +msgid "No file was submitted." +msgstr "Fayl göndərilməyib." + +msgid "The submitted file is empty." +msgstr "Göndərilən fayl boşdur." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Bu fayl adının ən çox %(max)d simvol olduğuna əmin olun (%(length)d var)." +msgstr[1] "" +"Bu fayl adının ən çox %(max)d simvol olduğuna əmin olun (%(length)d var)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Ya fayl göndərin, ya da xanaya quş qoymayın, hər ikisini də birdən etməyin." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Düzgün şəkil göndərin. Göndərdiyiniz fayl ya şəkil deyil, ya da şəkildə " +"problem var." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Düzgün seçim edin. %(value)s seçimlər arasında yoxdur." + +msgid "Enter a list of values." +msgstr "Qiymətlərin siyahısını daxil edin." + +msgid "Enter a complete value." +msgstr "Tam dəyər daxil edin." + +msgid "Enter a valid UUID." +msgstr "Keçərli UUID daxil et." + +msgid "Enter a valid JSON." +msgstr "Etibarlı bir JSON daxil edin." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Gizli %(name)s sahəsi) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm datası ya əskikdir, ya da dəyişdirilib. Çatışmayan xanalar: " +"%(field_names)s. Problem davam edərsə, səhv hesabatı təqdim etməli ola " +"bilərsiniz." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Zəhmət olmasa ən çox %(num)d forma təsdiqləyin." +msgstr[1] "Zəhmət olmasa ən çox %(num)d forma təsdiqləyin." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Zəhmət olmasa ən az %(num)d forma təsdiqləyin." +msgstr[1] "Zəhmət olmasa ən az %(num)d forma təsdiqləyin." + +msgid "Order" +msgstr "Sırala" + +msgid "Delete" +msgstr "Sil" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s sahəsinə görə təkrarlanan məlumatlara düzəliş edin." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"%(field)s sahəsinə görə təkrarlanan məlumatlara düzəliş edin, onların hamısı " +"fərqli olmalıdır." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s sahəsinə görə təkrarlanan məlumatlara düzəliş edin, onlar " +"%(date_field)s %(lookup)s-a görə fərqli olmalıdır." + +msgid "Please correct the duplicate values below." +msgstr "Aşağıda təkrarlanan qiymətlərə düzəliş edin." + +msgid "The inline value did not match the parent instance." +msgstr "Sətiriçi dəyər ana nüsxəyə uyğun deyil." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Düzgün seçim edin. Bu seçim mümkün deyil." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” düzgün dəyər deyil." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s vaxtı %(current_timezone)s zaman qurşağında ifadə oluna bilmir; " +"ya qeyri-müəyyənlik, ya da mövcud olmaya bilər." + +msgid "Clear" +msgstr "Təmizlə" + +msgid "Currently" +msgstr "Hal-hazırda" + +msgid "Change" +msgstr "Dəyiş" + +msgid "Unknown" +msgstr "Məlum deyil" + +msgid "Yes" +msgstr "Hə" + +msgid "No" +msgstr "Yox" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "hə,yox,bəlkə" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bayt" +msgstr[1] "%(size)d bayt" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s QB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "g.s." + +msgid "a.m." +msgstr "g.ə." + +msgid "PM" +msgstr "GS" + +msgid "AM" +msgstr "GƏ" + +msgid "midnight" +msgstr "gecə yarısı" + +msgid "noon" +msgstr "günorta" + +msgid "Monday" +msgstr "Bazar ertəsi" + +msgid "Tuesday" +msgstr "Çərşənbə axşamı" + +msgid "Wednesday" +msgstr "Çərşənbə" + +msgid "Thursday" +msgstr "Cümə axşamı" + +msgid "Friday" +msgstr "Cümə" + +msgid "Saturday" +msgstr "Şənbə" + +msgid "Sunday" +msgstr "Bazar" + +msgid "Mon" +msgstr "B.e" + +msgid "Tue" +msgstr "Ç.a" + +msgid "Wed" +msgstr "Çrş" + +msgid "Thu" +msgstr "C.a" + +msgid "Fri" +msgstr "Cüm" + +msgid "Sat" +msgstr "Şnb" + +msgid "Sun" +msgstr "Bzr" + +msgid "January" +msgstr "Yanvar" + +msgid "February" +msgstr "Fevral" + +msgid "March" +msgstr "Mart" + +msgid "April" +msgstr "Aprel" + +msgid "May" +msgstr "May" + +msgid "June" +msgstr "İyun" + +msgid "July" +msgstr "İyul" + +msgid "August" +msgstr "Avqust" + +msgid "September" +msgstr "Sentyabr" + +msgid "October" +msgstr "Oktyabr" + +msgid "November" +msgstr "Noyabr" + +msgid "December" +msgstr "Dekabr" + +msgid "jan" +msgstr "ynv" + +msgid "feb" +msgstr "fvr" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "iyn" + +msgid "jul" +msgstr "iyl" + +msgid "aug" +msgstr "avq" + +msgid "sep" +msgstr "snt" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "noy" + +msgid "dec" +msgstr "dek" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Yan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Fev." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mart" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Aprel" + +msgctxt "abbrev. month" +msgid "May" +msgstr "May" + +msgctxt "abbrev. month" +msgid "June" +msgstr "İyun" + +msgctxt "abbrev. month" +msgid "July" +msgstr "İyul" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Avq." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sen." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Noy." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dek." + +msgctxt "alt. month" +msgid "January" +msgstr "Yanvar" + +msgctxt "alt. month" +msgid "February" +msgstr "Fevral" + +msgctxt "alt. month" +msgid "March" +msgstr "Mart" + +msgctxt "alt. month" +msgid "April" +msgstr "Aprel" + +msgctxt "alt. month" +msgid "May" +msgstr "May" + +msgctxt "alt. month" +msgid "June" +msgstr "İyun" + +msgctxt "alt. month" +msgid "July" +msgstr "İyul" + +msgctxt "alt. month" +msgid "August" +msgstr "Avqust" + +msgctxt "alt. month" +msgid "September" +msgstr "Sentyabr" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktyabr" + +msgctxt "alt. month" +msgid "November" +msgstr "Noyabr" + +msgctxt "alt. month" +msgid "December" +msgstr "Dekabr" + +msgid "This is not a valid IPv6 address." +msgstr "Bu doğru IPv6 ünvanı deyil." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "və ya" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d il" +msgstr[1] "%(num)d il" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d ay" +msgstr[1] "%(num)d ay" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d həftə" +msgstr[1] "%(num)d həftə" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d gün" +msgstr[1] "%(num)d gün" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d saat" +msgstr[1] "%(num)d saat" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d dəqiqə" +msgstr[1] "%(num)d dəqiqə" + +msgid "Forbidden" +msgstr "Qadağan" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF təsdiqləmə alınmadı. Sorğu ləğv edildi." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Bu mesajı ona görə görürsünüz ki, bu HTTPS saytı sizin səyyah tərəfindən " +"“Referer header”in göndərilməsini tələb etdiyi halda heç nə " +"göndərilməmişdir. Bu başlıq sizin veb-səyyahınızın kənar şəxlər tərəfindən " +"ələ keçirilmədiyindən əmin olmaq üçün tələb olunur." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Əgər səyyahınızın “Referer” başlığını göndərməsini söndürmüsünüzsə, lütfən " +"bu sayt üçün, HTTPS əlaqələr üçün və ya “same-origin” sorğular üçün aktiv " +"edin." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Əgər etiketini və ya " +"“Referrer-Policy: no-referrer” başlığını işlədirsinizsə, lütfən silin. CSRF " +"qoruma dəqiq yönləndirən yoxlaması üçün “Referer” başlığını tələb edir. Əgər " +"məxfilik üçün düşünürsünüzsə, üçüncü tərəf sayt keçidləri üçün kimi bir alternativ işlədin." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Bu sayt formaları göndərmək üçün CSRF çərəzini işlədir. Bu çərəz " +"səyyahınızın üçüncü biri tərəfindən hack-lənmədiyinə əmin olmaq üçün " +"istifadə edilir. " + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Əgər səyyahınızda çərəzlər söndürülübsə, lütfən bu sayt və ya “same-origin” " +"sorğular üçün aktiv edin." + +msgid "More information is available with DEBUG=True." +msgstr "Daha ətraflı məlumat DEBUG=True ilə mövcuddur." + +msgid "No year specified" +msgstr "İl göstərilməyib" + +msgid "Date out of range" +msgstr "Tarix aralığın xaricindədir" + +msgid "No month specified" +msgstr "Ay göstərilməyib" + +msgid "No day specified" +msgstr "Gün göstərilməyib" + +msgid "No week specified" +msgstr "Həftə göstərilməyib" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s seçmək mümkün deyil" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Gələcək %(verbose_name_plural)s seçmək mümkün deyil, çünki %(class_name)s." +"allow_future Yalan kimi qeyd olunub." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "“%(format)s” formatına görə “%(datestr)s” tarixi düzgün deyil" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Sorğuya uyğun %(verbose_name)s tapılmadı" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Səhifə həm “axırıncı” deyil, həm də tam ədədə çevrilə bilmir." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Yanlış səhifə (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Siyahı boşdur və “%(class_name)s.allow_empty” dəyəri False-dur." + +msgid "Directory indexes are not allowed here." +msgstr "Ünvan indekslərinə icazə verilmir." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” mövcud deyil" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s-nin indeksi" + +msgid "The install worked successfully! Congratulations!" +msgstr "Quruluş uğurla tamamlandı! Təbriklər!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Django %(version)s üçün buraxılış " +"qeydlərinə baxın" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Tənzimləmə faylınızda DEBUG=True və heç bir URL qurmadığınız üçün bu səhifəni " +"görürsünüz." + +msgid "Django Documentation" +msgstr "Django Dokumentasiya" + +msgid "Topics, references, & how-to’s" +msgstr "Mövzular, istinadlar və nümunələr" + +msgid "Tutorial: A Polling App" +msgstr "Məşğələ: Səsvermə Tətbiqi" + +msgid "Get started with Django" +msgstr "Django ilə başla" + +msgid "Django Community" +msgstr "Django İcması" + +msgid "Connect, get help, or contribute" +msgstr "Qoşul, kömək al və dəstək ol" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/az/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/az/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/az/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0c0c734ad5bbb68ad1be88351798a3c96814b767 GIT binary patch literal 193 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 n, 2014-2015 +# znotdead , 2016-2017,2019-2021,2023-2024 +# Bobsans , 2016 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: znotdead , " +"2016-2017,2019-2021,2023-2024\n" +"Language-Team: Belarusian (http://app.transifex.com/django/django/language/" +"be/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: be\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +msgid "Afrikaans" +msgstr "Афрыкаанс" + +msgid "Arabic" +msgstr "Арабская" + +msgid "Algerian Arabic" +msgstr "Алжырская арабская" + +msgid "Asturian" +msgstr "Астурыйская" + +msgid "Azerbaijani" +msgstr "Азэрбайджанская" + +msgid "Bulgarian" +msgstr "Баўгарская" + +msgid "Belarusian" +msgstr "Беларуская" + +msgid "Bengali" +msgstr "Бэнґальская" + +msgid "Breton" +msgstr "Брэтонская" + +msgid "Bosnian" +msgstr "Басьнійская" + +msgid "Catalan" +msgstr "Каталёнская" + +msgid "Central Kurdish (Sorani)" +msgstr "Цэнтральнакурдская (сарані)" + +msgid "Czech" +msgstr "Чэская" + +msgid "Welsh" +msgstr "Валійская" + +msgid "Danish" +msgstr "Дацкая" + +msgid "German" +msgstr "Нямецкая" + +msgid "Lower Sorbian" +msgstr "Ніжнелужыцкая" + +msgid "Greek" +msgstr "Грэцкая" + +msgid "English" +msgstr "Анґельская" + +msgid "Australian English" +msgstr "Анґельская (Аўстралія)" + +msgid "British English" +msgstr "Анґельская (Брытанская)" + +msgid "Esperanto" +msgstr "Эспэранта" + +msgid "Spanish" +msgstr "Гішпанская" + +msgid "Argentinian Spanish" +msgstr "Гішпанская (Арґентына)" + +msgid "Colombian Spanish" +msgstr "Гішпанская (Калумбія)" + +msgid "Mexican Spanish" +msgstr "Гішпанская (Мэксыка)" + +msgid "Nicaraguan Spanish" +msgstr "Гішпанская (Нікараґуа)" + +msgid "Venezuelan Spanish" +msgstr "Іспанская (Вэнэсуэла)" + +msgid "Estonian" +msgstr "Эстонская" + +msgid "Basque" +msgstr "Басконская" + +msgid "Persian" +msgstr "Фарсі" + +msgid "Finnish" +msgstr "Фінская" + +msgid "French" +msgstr "Француская" + +msgid "Frisian" +msgstr "Фрызкая" + +msgid "Irish" +msgstr "Ірляндзкая" + +msgid "Scottish Gaelic" +msgstr "Гэльская шатляндзкая" + +msgid "Galician" +msgstr "Ґальская" + +msgid "Hebrew" +msgstr "Габрэйская" + +msgid "Hindi" +msgstr "Гінды" + +msgid "Croatian" +msgstr "Харвацкая" + +msgid "Upper Sorbian" +msgstr "Верхнелужыцкая" + +msgid "Hungarian" +msgstr "Вугорская" + +msgid "Armenian" +msgstr "Армянскі" + +msgid "Interlingua" +msgstr "Інтэрлінгва" + +msgid "Indonesian" +msgstr "Інданэзійская" + +msgid "Igbo" +msgstr "Ігба" + +msgid "Ido" +msgstr "Іда" + +msgid "Icelandic" +msgstr "Ісьляндзкая" + +msgid "Italian" +msgstr "Італьянская" + +msgid "Japanese" +msgstr "Японская" + +msgid "Georgian" +msgstr "Грузінская" + +msgid "Kabyle" +msgstr "Кабільскі" + +msgid "Kazakh" +msgstr "Казаская" + +msgid "Khmer" +msgstr "Кхмерская" + +msgid "Kannada" +msgstr "Каннада" + +msgid "Korean" +msgstr "Карэйская" + +msgid "Kyrgyz" +msgstr "Кіргізская" + +msgid "Luxembourgish" +msgstr "Люксэмбургская" + +msgid "Lithuanian" +msgstr "Літоўская" + +msgid "Latvian" +msgstr "Латыская" + +msgid "Macedonian" +msgstr "Македонская" + +msgid "Malayalam" +msgstr "Малаялам" + +msgid "Mongolian" +msgstr "Манґольская" + +msgid "Marathi" +msgstr "Маратхі" + +msgid "Malay" +msgstr "Малайская" + +msgid "Burmese" +msgstr "Бірманская" + +msgid "Norwegian Bokmål" +msgstr "Нарвэская букмал" + +msgid "Nepali" +msgstr "Нэпальская" + +msgid "Dutch" +msgstr "Галяндзкая" + +msgid "Norwegian Nynorsk" +msgstr "Нарвэская нюнорск" + +msgid "Ossetic" +msgstr "Асяцінская" + +msgid "Punjabi" +msgstr "Панджабі" + +msgid "Polish" +msgstr "Польская" + +msgid "Portuguese" +msgstr "Партуґальская" + +msgid "Brazilian Portuguese" +msgstr "Партуґальская (Бразылія)" + +msgid "Romanian" +msgstr "Румынская" + +msgid "Russian" +msgstr "Расейская" + +msgid "Slovak" +msgstr "Славацкая" + +msgid "Slovenian" +msgstr "Славенская" + +msgid "Albanian" +msgstr "Альбанская" + +msgid "Serbian" +msgstr "Сэрбская" + +msgid "Serbian Latin" +msgstr "Сэрбская (лацінка)" + +msgid "Swedish" +msgstr "Швэдзкая" + +msgid "Swahili" +msgstr "Суахілі" + +msgid "Tamil" +msgstr "Тамільская" + +msgid "Telugu" +msgstr "Тэлуґу" + +msgid "Tajik" +msgstr "Таджыкскі" + +msgid "Thai" +msgstr "Тайская" + +msgid "Turkmen" +msgstr "Туркменская" + +msgid "Turkish" +msgstr "Турэцкая" + +msgid "Tatar" +msgstr "Татарская" + +msgid "Udmurt" +msgstr "Удмурцкая" + +msgid "Uyghur" +msgstr "Уйгурскі" + +msgid "Ukrainian" +msgstr "Украінская" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "Узбецкі" + +msgid "Vietnamese" +msgstr "Віетнамская" + +msgid "Simplified Chinese" +msgstr "Кітайская (спрошчаная)" + +msgid "Traditional Chinese" +msgstr "Кітайская (звычайная)" + +msgid "Messages" +msgstr "Паведамленні" + +msgid "Site Maps" +msgstr "Мапы сайту" + +msgid "Static Files" +msgstr "Cтатычныя файлы" + +msgid "Syndication" +msgstr "Сындыкацыя" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Лік гэтай старонкі не з'яўляецца цэлым лікам" + +msgid "That page number is less than 1" +msgstr "Лік старонкі менш чым 1" + +msgid "That page contains no results" +msgstr "Гэтая старонка не мае ніякіх вынікаў" + +msgid "Enter a valid value." +msgstr "Пазначце правільнае значэньне." + +msgid "Enter a valid domain name." +msgstr "Пазначце сапраўднае даменнае имя." + +msgid "Enter a valid URL." +msgstr "Пазначце чынную спасылку." + +msgid "Enter a valid integer." +msgstr "Увядзіце цэлы лік." + +msgid "Enter a valid email address." +msgstr "Увядзіце сапраўдны адрас электроннай пошты." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Значэнне павінна быць толькі з літараў, личбаў, знакаў падкрэслівання ці " +"злучкі." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Значэнне павінна быць толькі з літараў стандарту Unicode, личбаў, знакаў " +"падкрэслівання ці злучкі." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Пазначце сапраўдны %(protocol)s адрас." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 або IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Набярыце лічбы, падзеленыя коскамі." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Упэўніцеся, што гэтае значэньне — %(limit_value)s (зараз яно — " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Значэньне мусіць быць меншым або роўным %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Значэньне мусіць быць большым або роўным %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Пераканайцеся, што гэта значэнне кратнае памеру кроку %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Пераканайцеся, што гэта значэнне кратнае памеру кроку %(limit_value)s, " +"пачынаючы з %(offset)s, напрыклад. %(offset)s, %(valid_value1)s, " +"%(valid_value2)s, і гэтак далей." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Упэўніцеся, што гэтае значэнне мае не менш %(limit_value)d сімвал (зараз " +"%(show_value)d)." +msgstr[1] "" +"Упэўніцеся, што гэтае значэнне мае не менш %(limit_value)d сімвала (зараз " +"%(show_value)d)." +msgstr[2] "" +"Упэўніцеся, што гэтае значэнне мае не менш %(limit_value)d сімвалаў (зараз " +"%(show_value)d)." +msgstr[3] "" +"Упэўніцеся, што гэтае значэнне мае не менш %(limit_value)d сімвалаў (зараз " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Упэўніцеся, што гэтае значэнне мае не болей %(limit_value)d сімвал (зараз " +"%(show_value)d)." +msgstr[1] "" +"Упэўніцеся, што гэтае значэнне мае не болей %(limit_value)d сімвала (зараз " +"%(show_value)d)." +msgstr[2] "" +"Упэўніцеся, што гэтае значэнне мае не болей %(limit_value)d сімвалаў (зараз " +"%(show_value)d)." +msgstr[3] "" +"Упэўніцеся, што гэтае значэнне мае не болей %(limit_value)d сімвалаў (зараз " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Набярыце лік." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Упэўніцеся, што набралі ня болей за %(max)s лічбу." +msgstr[1] "Упэўніцеся, што набралі ня болей за %(max)s лічбы." +msgstr[2] "Упэўніцеся, што набралі ня болей за %(max)s лічбаў." +msgstr[3] "Упэўніцеся, што набралі ня болей за %(max)s лічбаў." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Упэўніцеся, што набралі ня болей за %(max)s лічбу пасьля коскі." +msgstr[1] "Упэўніцеся, што набралі ня болей за %(max)s лічбы пасьля коскі." +msgstr[2] "Упэўніцеся, што набралі ня болей за %(max)s лічбаў пасьля коскі." +msgstr[3] "Упэўніцеся, што набралі ня болей за %(max)s лічбаў пасьля коскі." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Упэўніцеся, што набралі ня болей за %(max)s лічбу да коскі." +msgstr[1] "Упэўніцеся, што набралі ня болей за %(max)s лічбы да коскі." +msgstr[2] "Упэўніцеся, што набралі ня болей за %(max)s лічбаў да коскі." +msgstr[3] "Упэўніцеся, што набралі ня болей за %(max)s лічбаў да коскі." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Пашырэнне файла “%(extension)s” не дапускаецца. Дапушчальныя пашырэння: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null сімвалы не дапускаюцца." + +msgid "and" +msgstr "і" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s з такім %(field_labels)s ужо існуе." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Абмежаванне \"%(name)s\" парушана." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Значэнне %(value)r не з'яўляецца правільным выбарам." + +msgid "This field cannot be null." +msgstr "Поле ня можа мець значэньне «null»." + +msgid "This field cannot be blank." +msgstr "Трэба запоўніць поле." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s з такім %(field_label)s ужо існуе." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s павінна быць унікальна для %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Палі віду: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Значэньне “%(value)s” павінна быць True альбо False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Значэньне “%(value)s” павінна быць True, False альбо None." + +msgid "Boolean (Either True or False)" +msgstr "Ляґічнае («сапраўдна» або «не сапраўдна»)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Радок (ня болей за %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Радок (неабмежаваны)" + +msgid "Comma-separated integers" +msgstr "Цэлыя лікі, падзеленыя коскаю" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Значэнне “%(value)s” мае няправільны фармат. Яно павінна быць у фармаце ГГГГ-" +"ММ-ДД." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Значэнне “%(value)s” мае правільны фармат(ГГГГ-ММ-ДД) але гэта несапраўдная " +"дата." + +msgid "Date (without time)" +msgstr "Дата (бяз часу)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Значэнне “%(value)s” мае няправільны фармат. Яно павінна быць у фармаце ГГГГ-" +"ММ-ДД ГГ:ХХ[:сс[.мммммм]][ЧА], дзе ЧА — часавы абсяг." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Значэнне “%(value)s” мае правільны фармат (ГГГГ-ММ-ДД ГГ:ХХ[:сс[.мммммм]]" +"[ЧА], дзе ЧА — часавы абсяг) але гэта несапраўдныя дата/час." + +msgid "Date (with time)" +msgstr "Дата (разам з часам)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Значэньне “%(value)s” павінна быць дзесятковым лікам." + +msgid "Decimal number" +msgstr "Дзесятковы лік" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Значэньне “%(value)s” мае няправільны фармат. Яно павінна быць у фармаце " +"[ДД] [ГГ:[ХХ:]]сс[.мммммм]." + +msgid "Duration" +msgstr "Працягласць" + +msgid "Email address" +msgstr "Адрас эл. пошты" + +msgid "File path" +msgstr "Шлях да файла" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Значэньне “%(value)s” павінна быць дробным лікам." + +msgid "Floating point number" +msgstr "Лік зь пераноснай коскаю" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Значэньне “%(value)s” павінна быць цэлым лікам." + +msgid "Integer" +msgstr "Цэлы лік" + +msgid "Big (8 byte) integer" +msgstr "Вялікі (8 байтаў) цэлы" + +msgid "Small integer" +msgstr "Малы цэлы лік" + +msgid "IPv4 address" +msgstr "Адрас IPv4" + +msgid "IP address" +msgstr "Адрас IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Значэньне “%(value)s” павінна быць None, True альбо False." + +msgid "Boolean (Either True, False or None)" +msgstr "Ляґічнае («сапраўдна», «не сапраўдна» ці «нічога»)" + +msgid "Positive big integer" +msgstr "Дадатны вялікі цэлы лік" + +msgid "Positive integer" +msgstr "Дадатны цэлы лік" + +msgid "Positive small integer" +msgstr "Дадатны малы цэлы лік" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Бірка (ня болей за %(max_length)s)" + +msgid "Text" +msgstr "Тэкст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Значэньне “%(value)s” мае няправільны фармат. Яно павінна быць у фармаце ГГ:" +"ХХ[:сс[.мммммм]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Значэнне “%(value)s” мае правільны фармат (ГГ:ХХ[:сс[.мммммм]]) але гэта " +"несапраўдны час." + +msgid "Time" +msgstr "Час" + +msgid "URL" +msgstr "Сеціўная спасылка" + +msgid "Raw binary data" +msgstr "Неапрацаваныя бінарныя зьвесткі" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” не з'яўляецца дапушчальным UUID." + +msgid "Universally unique identifier" +msgstr "Універсальны непаўторны ідэнтыфікатар" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Выява" + +msgid "A JSON object" +msgstr "Аб'ект JSON" + +msgid "Value must be valid JSON." +msgstr "Значэньне павінна быць сапраўдным JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Экземпляр %(model)s з %(field)s %(value)r не iснуе." + +msgid "Foreign Key (type determined by related field)" +msgstr "Вонкавы ключ (від вызначаецца паводле зьвязанага поля)" + +msgid "One-to-one relationship" +msgstr "Сувязь «адзін да аднаго»" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Сувязь %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Сувязi %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Сувязь «некалькі да некалькіх»" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Поле трэба запоўніць." + +msgid "Enter a whole number." +msgstr "Набярыце ўвесь лік." + +msgid "Enter a valid date." +msgstr "Пазначце чынную дату." + +msgid "Enter a valid time." +msgstr "Пазначце чынны час." + +msgid "Enter a valid date/time." +msgstr "Пазначце чынныя час і дату." + +msgid "Enter a valid duration." +msgstr "Увядзіце сапраўдны тэрмін." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Колькасць дзён павінна быць паміж {min_days} i {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Файл не даслалі. Зірніце кадоўку блянку." + +msgid "No file was submitted." +msgstr "Файл не даслалі." + +msgid "The submitted file is empty." +msgstr "Дасланы файл — парожні." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Упэўніцеся, што гэтае імя файлу мае не болей %(max)d сімвал (зараз " +"%(length)d)." +msgstr[1] "" +"Упэўніцеся, што гэтае імя файлу мае не болей %(max)d сімвала (зараз " +"%(length)d)." +msgstr[2] "" +"Упэўніцеся, што гэтае імя файлу мае не болей %(max)d сімвалаў (зараз " +"%(length)d)." +msgstr[3] "" +"Упэўніцеся, што гэтае імя файлу мае не болей %(max)d сімвалаў (зараз " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Трэба або даслаць файл, або абраць «Ачысьціць», але нельга рабіць гэта " +"адначасова." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Запампаваць чынны малюнак. Запампавалі або не выяву, або пашкоджаную выяву." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Абярыце дазволенае. %(value)s няма ў даступных значэньнях." + +msgid "Enter a list of values." +msgstr "Упішыце сьпіс значэньняў." + +msgid "Enter a complete value." +msgstr "Калі ласка, увядзіце поўнае значэньне." + +msgid "Enter a valid UUID." +msgstr "Увядзіце сапраўдны UUID." + +msgid "Enter a valid JSON." +msgstr "Пазначце сапраўдны JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Схаванае поле %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Дадзеныя формы ManagementForm адсутнічаюць ці былі падменены. Адсутнічаюць " +"палі: %(field_names)s. Магчыма, вам спатрэбіцца падаць справаздачу пра " +"памылку, калі праблема захоўваецца." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Калі ласка, адпраўце не болей чым %(num)d формаў." +msgstr[1] "Калі ласка, адпраўце не болей чым %(num)d формаў." +msgstr[2] "Калі ласка, адпраўце не болей чым %(num)d формаў." +msgstr[3] "Калі ласка, адпраўце не болей чым %(num)d формаў." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Калі ласка, адпраўце не менш чым %(num)d формаў." +msgstr[1] "Калі ласка, адпраўце не менш чым %(num)d формаў." +msgstr[2] "Калі ласка, адпраўце не менш чым %(num)d формаў." +msgstr[3] "Калі ласка, адпраўце не менш чым %(num)d формаў." + +msgid "Order" +msgstr "Парадак" + +msgid "Delete" +msgstr "Выдаліць" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "У полі «%(field)s» выпраўце зьвесткі, якія паўтараюцца." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Выпраўце зьвесткі ў полі «%(field)s»: нельга, каб яны паўтараліся." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Выпраўце зьвесткі ў полі «%(field_name)s»: нельга каб зьвесткі ў " +"«%(date_field)s» для «%(lookup)s» паўтараліся." + +msgid "Please correct the duplicate values below." +msgstr "Выпраўце зьвесткі, якія паўтараюцца (гл. ніжэй)." + +msgid "The inline value did not match the parent instance." +msgstr "Убудаванае значэнне не супадае з бацькоўскім значэннем." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Абярыце дазволенае. Абранага няма ў даступных значэньнях." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” не сапраўднае значэнне." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"У часавым абсягу %(current_timezone)s нельга зразумець дату %(datetime)s: " +"яна можа быць неадназначнаю або яе можа не існаваць." + +msgid "Clear" +msgstr "Ачысьціць" + +msgid "Currently" +msgstr "Зараз" + +msgid "Change" +msgstr "Зьмяніць" + +msgid "Unknown" +msgstr "Невядома" + +msgid "Yes" +msgstr "Так" + +msgid "No" +msgstr "Не" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "так,не,магчыма" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" +msgstr[1] "%(size)d байты" +msgstr[2] "%(size)d байтаў" +msgstr[3] "%(size)d байтаў" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s ҐБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "папаўдні" + +msgid "a.m." +msgstr "папоўначы" + +msgid "PM" +msgstr "папаўдні" + +msgid "AM" +msgstr "папоўначы" + +msgid "midnight" +msgstr "поўнач" + +msgid "noon" +msgstr "поўдзень" + +msgid "Monday" +msgstr "Панядзелак" + +msgid "Tuesday" +msgstr "Аўторак" + +msgid "Wednesday" +msgstr "Серада" + +msgid "Thursday" +msgstr "Чацьвер" + +msgid "Friday" +msgstr "Пятніца" + +msgid "Saturday" +msgstr "Субота" + +msgid "Sunday" +msgstr "Нядзеля" + +msgid "Mon" +msgstr "Пн" + +msgid "Tue" +msgstr "Аў" + +msgid "Wed" +msgstr "Ср" + +msgid "Thu" +msgstr "Чц" + +msgid "Fri" +msgstr "Пт" + +msgid "Sat" +msgstr "Сб" + +msgid "Sun" +msgstr "Нд" + +msgid "January" +msgstr "студзеня" + +msgid "February" +msgstr "лютага" + +msgid "March" +msgstr "сакавік" + +msgid "April" +msgstr "красавіка" + +msgid "May" +msgstr "траўня" + +msgid "June" +msgstr "чэрвеня" + +msgid "July" +msgstr "ліпеня" + +msgid "August" +msgstr "жніўня" + +msgid "September" +msgstr "верасьня" + +msgid "October" +msgstr "кастрычніка" + +msgid "November" +msgstr "лістапада" + +msgid "December" +msgstr "сьнежня" + +msgid "jan" +msgstr "сту" + +msgid "feb" +msgstr "лют" + +msgid "mar" +msgstr "сак" + +msgid "apr" +msgstr "кра" + +msgid "may" +msgstr "тра" + +msgid "jun" +msgstr "чэр" + +msgid "jul" +msgstr "ліп" + +msgid "aug" +msgstr "жні" + +msgid "sep" +msgstr "вер" + +msgid "oct" +msgstr "кас" + +msgid "nov" +msgstr "ліс" + +msgid "dec" +msgstr "сьн" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Сту." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Люты" + +msgctxt "abbrev. month" +msgid "March" +msgstr "сакавік" + +msgctxt "abbrev. month" +msgid "April" +msgstr "красавіка" + +msgctxt "abbrev. month" +msgid "May" +msgstr "траўня" + +msgctxt "abbrev. month" +msgid "June" +msgstr "чэрвеня" + +msgctxt "abbrev. month" +msgid "July" +msgstr "ліпеня" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Жні." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Вер." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Кас." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ліс." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Сьн." + +msgctxt "alt. month" +msgid "January" +msgstr "студзеня" + +msgctxt "alt. month" +msgid "February" +msgstr "лютага" + +msgctxt "alt. month" +msgid "March" +msgstr "сакавік" + +msgctxt "alt. month" +msgid "April" +msgstr "красавіка" + +msgctxt "alt. month" +msgid "May" +msgstr "траўня" + +msgctxt "alt. month" +msgid "June" +msgstr "чэрвеня" + +msgctxt "alt. month" +msgid "July" +msgstr "ліпеня" + +msgctxt "alt. month" +msgid "August" +msgstr "жніўня" + +msgctxt "alt. month" +msgid "September" +msgstr "верасьня" + +msgctxt "alt. month" +msgid "October" +msgstr "кастрычніка" + +msgctxt "alt. month" +msgid "November" +msgstr "лістапада" + +msgctxt "alt. month" +msgid "December" +msgstr "сьнежня" + +msgid "This is not a valid IPv6 address." +msgstr "Гэта ня правільны адрас IPv6." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "або" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d год" +msgstr[1] "%(num)d гадоў" +msgstr[2] "%(num)d гадоў" +msgstr[3] "%(num)d гадоў" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d месяц" +msgstr[1] "%(num)d месяцаў" +msgstr[2] "%(num)d месяцаў" +msgstr[3] "%(num)d месяцаў" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d тыдзень" +msgstr[1] "%(num)d тыдняў" +msgstr[2] "%(num)d тыдняў" +msgstr[3] "%(num)d тыдняў" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d дзень" +msgstr[1] "%(num)d дзён" +msgstr[2] "%(num)d дзён" +msgstr[3] "%(num)d дзён" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d гадзіна" +msgstr[1] "%(num)d гадзін" +msgstr[2] "%(num)d гадзін" +msgstr[3] "%(num)d гадзін" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d хвіліна" +msgstr[1] "%(num)d хвілін" +msgstr[2] "%(num)d хвілін" +msgstr[3] "%(num)d хвілін" + +msgid "Forbidden" +msgstr "Забаронена" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-праверка не атрымалася. Запыт спынены." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Вы бачыце гэта паведамленне, таму што гэты HTTPS-сайт патрабуе каб Referer " +"загаловак быў адасланы вашым аглядальнікам, але гэтага не адбылося. Гэты " +"загаловак неабходны для бяспекі, каб пераканацца, што ваш аглядальнік не " +"ўзаламаны трэцімі асобамі." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Калі вы сканфігуравалі ваш браўзэр так, каб ён не працаваў з “Referer” " +"загалоўкамі, калі ласка дазвольце іх хаця б для гэтага сайту, ці для HTTPS " +"злучэнняў, ці для 'same-origin' запытаў." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Калі вы выкарыстоўваеце тэг " +"ці дадалі загаловак “Referrer-Policy: no-referrer”, калі ласка выдаліце іх. " +"CSRF абароне неабходны “Referer” загаловак для строгай праверкі. Калі Вы " +"турбуецеся аб прыватнасці, выкарыстоўвайце альтэрнатывы, напрыклад , для спасылкі на сайты трэціх асоб." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Вы бачыце гэта паведамленне, таму што гэты сайт патрабуе CSRF кукі для " +"адсылкі формы. Гэтыя кукі неабходныя для бяспекі, каб пераканацца, што ваш " +"браўзэр не ўзламаны трэцімі асобамі." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Калі вы сканфігуравалі ваш браўзэр так, каб ён не працаваў з кукамі, калі " +"ласка дазвольце іх хаця б для гэтага сайту ці для “same-origin” запытаў." + +msgid "More information is available with DEBUG=True." +msgstr "Больш падрабязная інфармацыя даступная з DEBUG=True." + +msgid "No year specified" +msgstr "Не пазначылі год" + +msgid "Date out of range" +msgstr "Дата выходзіць за межы дыяпазону" + +msgid "No month specified" +msgstr "Не пазначылі месяц" + +msgid "No day specified" +msgstr "Не пазначылі дзень" + +msgid "No week specified" +msgstr "Не пазначылі тыдзень" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Няма доступу да %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Няма доступу да %(verbose_name_plural)s, якія будуць, бо «%(class_name)s." +"allow_future» мае значэньне «не сапраўдна»." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Радок даты “%(datestr)s” не адпавядае выгляду “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Па запыце не знайшлі ніводнага %(verbose_name)s" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Нумар бачыны ня мае значэньня “last” і яго нельга ператварыць у цэлы лік." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Няправільная старонка (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" +"Сьпіс парожні, але “%(class_name)s.allow_empty” мае значэньне «не " +"сапраўдна», што забараняе паказваць парожнія сьпісы." + +msgid "Directory indexes are not allowed here." +msgstr "Не дазваляецца глядзець сьпіс файлаў каталёґа." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” не існуе" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Файлы каталёґа «%(directory)s»" + +msgid "The install worked successfully! Congratulations!" +msgstr "Усталяванне прайшло паспяхова! Віншаванні!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Паглядзець заўвагі да выпуску для Джангі " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Вы бачыце гэту старонку таму што DEBUG=True у вашым файле налад і вы не " +"сканфігурыравалі ніякіх URL." + +msgid "Django Documentation" +msgstr "Дакументацыя Джангі" + +msgid "Topics, references, & how-to’s" +msgstr "Тэмы, спасылкі, & як зрабіць" + +msgid "Tutorial: A Polling App" +msgstr "Падручнік: Дадатак для галасавання" + +msgid "Get started with Django" +msgstr "Пачніце з Джангаю" + +msgid "Django Community" +msgstr "Джанга супольнасць" + +msgid "Connect, get help, or contribute" +msgstr "Злучайцеся, атрымлівайце дапамогу, ці спрыяйце" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..f6bd12b04d17d7f6b113067b59921d13858bdc3d GIT binary patch literal 34729 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, 2022-2024 +# Boris Chervenkov , 2012 +# Claude Paroz , 2020 +# Jannis Leidel , 2011 +# Lyuboslav Petrov , 2014 +# Mariusz Felisiak , 2023 +# Todor Lubenov , 2013-2015 +# Venelin Stoykov , 2015-2017 +# vestimir , 2014 +# Alexander Atanasov , 2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: arneatec , 2022-2024\n" +"Language-Team: Bulgarian (http://app.transifex.com/django/django/language/" +"bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "африкаански" + +msgid "Arabic" +msgstr "арабски език" + +msgid "Algerian Arabic" +msgstr "алжирски арабски" + +msgid "Asturian" +msgstr "Астурийски" + +msgid "Azerbaijani" +msgstr "Азербайджански език" + +msgid "Bulgarian" +msgstr "български език" + +msgid "Belarusian" +msgstr "Беларуски" + +msgid "Bengali" +msgstr "бенгалски език" + +msgid "Breton" +msgstr "Бретон" + +msgid "Bosnian" +msgstr "босненски език" + +msgid "Catalan" +msgstr "каталански" + +msgid "Central Kurdish (Sorani)" +msgstr "Кюрдски, централен (Сорани)" + +msgid "Czech" +msgstr "чешки" + +msgid "Welsh" +msgstr "уелски" + +msgid "Danish" +msgstr "датски" + +msgid "German" +msgstr "немски" + +msgid "Lower Sorbian" +msgstr "долносорбски" + +msgid "Greek" +msgstr "гръцки" + +msgid "English" +msgstr "английски" + +msgid "Australian English" +msgstr "австралийски английски" + +msgid "British English" +msgstr "британски английски" + +msgid "Esperanto" +msgstr "есперанто" + +msgid "Spanish" +msgstr "испански" + +msgid "Argentinian Spanish" +msgstr "кастилски" + +msgid "Colombian Spanish" +msgstr "колумбийски испански" + +msgid "Mexican Spanish" +msgstr "мексикански испански" + +msgid "Nicaraguan Spanish" +msgstr "никарагуански испански" + +msgid "Venezuelan Spanish" +msgstr "венецуелски испански" + +msgid "Estonian" +msgstr "естонски" + +msgid "Basque" +msgstr "баски" + +msgid "Persian" +msgstr "персийски" + +msgid "Finnish" +msgstr "финландски" + +msgid "French" +msgstr "френски" + +msgid "Frisian" +msgstr "фризийски" + +msgid "Irish" +msgstr "ирландски" + +msgid "Scottish Gaelic" +msgstr "шотландски галски" + +msgid "Galician" +msgstr "галицейски" + +msgid "Hebrew" +msgstr "иврит" + +msgid "Hindi" +msgstr "хинди" + +msgid "Croatian" +msgstr "хърватски" + +msgid "Upper Sorbian" +msgstr "горносорбски" + +msgid "Hungarian" +msgstr "унгарски" + +msgid "Armenian" +msgstr "арменски" + +msgid "Interlingua" +msgstr "интерлингва" + +msgid "Indonesian" +msgstr "индонезийски" + +msgid "Igbo" +msgstr "игбо" + +msgid "Ido" +msgstr "идо" + +msgid "Icelandic" +msgstr "исландски" + +msgid "Italian" +msgstr "италиански" + +msgid "Japanese" +msgstr "японски" + +msgid "Georgian" +msgstr "грузински" + +msgid "Kabyle" +msgstr "кабилски" + +msgid "Kazakh" +msgstr "казахски" + +msgid "Khmer" +msgstr "кхмерски" + +msgid "Kannada" +msgstr "каннада" + +msgid "Korean" +msgstr "корейски" + +msgid "Kyrgyz" +msgstr "киргизки" + +msgid "Luxembourgish" +msgstr "люксембургски" + +msgid "Lithuanian" +msgstr "литовски" + +msgid "Latvian" +msgstr "латвийски" + +msgid "Macedonian" +msgstr "македонски" + +msgid "Malayalam" +msgstr "малаялам" + +msgid "Mongolian" +msgstr "монголски" + +msgid "Marathi" +msgstr "марати" + +msgid "Malay" +msgstr "малайски" + +msgid "Burmese" +msgstr "бирмански" + +msgid "Norwegian Bokmål" +msgstr "норвежки букмол" + +msgid "Nepali" +msgstr "непалски" + +msgid "Dutch" +msgstr "нидерландски" + +msgid "Norwegian Nynorsk" +msgstr "съвременен норвежки" + +msgid "Ossetic" +msgstr "осетски" + +msgid "Punjabi" +msgstr "панджабски" + +msgid "Polish" +msgstr "полски" + +msgid "Portuguese" +msgstr "португалски" + +msgid "Brazilian Portuguese" +msgstr "бразилски португалски" + +msgid "Romanian" +msgstr "румънски" + +msgid "Russian" +msgstr "руски" + +msgid "Slovak" +msgstr "словашки" + +msgid "Slovenian" +msgstr "словенски" + +msgid "Albanian" +msgstr "албански" + +msgid "Serbian" +msgstr "сръбски" + +msgid "Serbian Latin" +msgstr "сръбски - латиница" + +msgid "Swedish" +msgstr "шведски" + +msgid "Swahili" +msgstr "суахили" + +msgid "Tamil" +msgstr "тамилски" + +msgid "Telugu" +msgstr "телугу" + +msgid "Tajik" +msgstr "таджикски" + +msgid "Thai" +msgstr "тайландски" + +msgid "Turkmen" +msgstr "туркменски" + +msgid "Turkish" +msgstr "турски" + +msgid "Tatar" +msgstr "татарски" + +msgid "Udmurt" +msgstr "удмурт" + +msgid "Uyghur" +msgstr "Уйгурски" + +msgid "Ukrainian" +msgstr "украински" + +msgid "Urdu" +msgstr "урду" + +msgid "Uzbek" +msgstr "узбекски" + +msgid "Vietnamese" +msgstr "виетнамски" + +msgid "Simplified Chinese" +msgstr "китайски" + +msgid "Traditional Chinese" +msgstr "традиционен китайски" + +msgid "Messages" +msgstr "Съобщения" + +msgid "Site Maps" +msgstr "Карти на сайта" + +msgid "Static Files" +msgstr "Статични файлове" + +msgid "Syndication" +msgstr "Синдикация" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Номерът на страницата не е цяло число" + +msgid "That page number is less than 1" +msgstr "Номерът на страницата е по-малък от 1" + +msgid "That page contains no results" +msgstr "В тази страница няма резултати" + +msgid "Enter a valid value." +msgstr "Въведете валидна стойност. " + +msgid "Enter a valid domain name." +msgstr "Въведете валидно име на домейн." + +msgid "Enter a valid URL." +msgstr "Въведете валиден URL адрес." + +msgid "Enter a valid integer." +msgstr "Въведете валидно целочислено число." + +msgid "Enter a valid email address." +msgstr "Въведете валиден имейл адрес." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Въведете валиден 'слъг', състоящ се от букви, цифри, тирета или долни тирета." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Въведете валиден 'слъг', състоящ се от Уникод букви, цифри, тирета или долни " +"тирета." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Въведете валиден %(protocol)s адрес." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 или IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Въведете само еднозначни числа, разделени със запетая. " + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Уверете се, че тази стойност е %(limit_value)s (тя е %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Уверете се, че тази стойност е по-малка или равна на %(limit_value)s ." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Уверете се, че тази стойност е по-голяма или равна на %(limit_value)s ." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Уверете се, че стойността е кратна на стъпката %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Въведете стойност, кратна на стъпката %(limit_value)s, започвайки от " +"%(offset)s, например %(offset)s, %(valid_value1)s, %(valid_value2)s, и т.н." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Уверете се, че тази стойност е най-малко %(limit_value)d знака (тя има " +"%(show_value)d )." +msgstr[1] "" +"Уверете се, че тази стойност е най-малко %(limit_value)d знака (тя има " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Уверете се, тази стойност има най-много %(limit_value)d знака (тя има " +"%(show_value)d)." +msgstr[1] "" +"Уверете се, че тази стойност има най-много %(limit_value)d знака (тя има " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Въведете число." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Уверете се, че има не повече от %(max)s цифри общо." +msgstr[1] "Уверете се, че има не повече от %(max)s цифри общо." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Уверете се, че има не повече от%(max)s знак след десетичната запетая." +msgstr[1] "" +"Уверете се, че има не повече от %(max)s знака след десетичната запетая." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Уверете се, че има не повече от %(max)s цифра преди десетичната запетая." +msgstr[1] "" +"Уверете се, че има не повече от %(max)s цифри преди десетичната запетая." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Не са разрешени файлове с раширение \"%(extension)s\". Позволените " +"разширения са: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Празни знаци не са разрешени." + +msgid "and" +msgstr "и" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s с този %(field_labels)s вече съществува." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Ограничението “%(name)s” е нарушено." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Стойността %(value)r не е валиден избор." + +msgid "This field cannot be null." +msgstr "Това поле не може да има празна стойност." + +msgid "This field cannot be blank." +msgstr "Това поле не може да е празно." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s с този %(field_label)s вече съществува." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s трябва да е уникално за %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Поле от тип: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Стойността на \"%(value)s\" трябва да бъде или True, или False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Стойност \"%(value)s\" трябва да бъде или True, или False или None." + +msgid "Boolean (Either True or False)" +msgstr "Булево (True или False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Символен низ (до %(max_length)s символа)" + +msgid "String (unlimited)" +msgstr "Стринг (неограничен)" + +msgid "Comma-separated integers" +msgstr "Цели числа, разделени с запетая" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Стойността \"%(value)s\" е с невалиден формат за дата. Тя трябва да бъде в " +"ГГГГ-ММ-ДД формат." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Стойността \"%(value)s\" е в правилния формат (ГГГГ-ММ-ДД), но самата дата е " +"невалидна." + +msgid "Date (without time)" +msgstr "Дата (без час)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Стойността '%(value)s' е с невалиден формат. Трябва да бъде във формат ГГГГ-" +"ММ-ДД ЧЧ:ММ[:сс[.uuuuuu]][TZ]" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Стойността '%(value)s' е с правилен формат ( ГГГГ-ММ-ДД ЧЧ:ММ[:сс[.μμμμμμ]]" +"[TZ]), но датата/часът са невалидни" + +msgid "Date (with time)" +msgstr "Дата (и час)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Стойността \"%(value)s\" трябва да е десетично число." + +msgid "Decimal number" +msgstr "Десетична дроб" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Стойността “%(value)s” е с невалиден формат. Трябва да бъде във формат [ДД] " +"[[ЧЧ:]ММ:]сс[.uuuuuu] format." + +msgid "Duration" +msgstr "Продължителност" + +msgid "Email address" +msgstr "Имейл адрес" + +msgid "File path" +msgstr "Път към файл" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Стойността '%(value)s' трябва да е число с плаваща запетая." + +msgid "Floating point number" +msgstr "Число с плаваща запетая" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Стойността \"%(value)s\" трябва да е цяло число." + +msgid "Integer" +msgstr "Цяло число" + +msgid "Big (8 byte) integer" +msgstr "Голямо (8 байта) цяло число" + +msgid "Small integer" +msgstr "2 байта цяло число" + +msgid "IPv4 address" +msgstr "IPv4 адрес" + +msgid "IP address" +msgstr "IP адрес" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Стойността '%(value)s' трябва да бъде None, True или False." + +msgid "Boolean (Either True, False or None)" +msgstr "булев (възможните стойности са True, False или None)" + +msgid "Positive big integer" +msgstr "Положително голямо цяло число." + +msgid "Positive integer" +msgstr "Положително цяло число" + +msgid "Positive small integer" +msgstr "Положително 2 байта цяло число" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Слъг (до %(max_length)s )" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Стойността \"%(value)s\" е с невалиден формат. Тя трябва да бъде в ЧЧ:ММ [:" +"сс[.μμμμμμ]]" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Стойността \"%(value)s\" е в правилния формат (ЧЧ:ММ [:сс[.μμμμμμ]]), но " +"часът е невалиден." + +msgid "Time" +msgstr "Време" + +msgid "URL" +msgstr "URL адрес" + +msgid "Raw binary data" +msgstr "сурови двоични данни" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" не е валиден UUID." + +msgid "Universally unique identifier" +msgstr "Универсално уникален идентификатор" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Изображение" + +msgid "A JSON object" +msgstr "Обект във формат JSON" + +msgid "Value must be valid JSON." +msgstr "Стойността трябва да е валиден JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Инстанция на %(model)s с %(field)s %(value)r не съществува." + +msgid "Foreign Key (type determined by related field)" +msgstr "Външен ключ (тип, определен от свързаното поле)" + +msgid "One-to-one relationship" +msgstr "едно-към-едно релация " + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s релация" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s релации" + +msgid "Many-to-many relationship" +msgstr "Много-към-много релация" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Това поле е задължително." + +msgid "Enter a whole number." +msgstr "Въведете цяло число. " + +msgid "Enter a valid date." +msgstr "Въведете валидна дата." + +msgid "Enter a valid time." +msgstr "Въведете валиден час." + +msgid "Enter a valid date/time." +msgstr "Въведете валидна дата/час. " + +msgid "Enter a valid duration." +msgstr "Въведете валидна продължителност." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Броят на дните трябва да е между {min_days} и {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Няма изпратен файл. Проверете типа кодиране на формата. " + +msgid "No file was submitted." +msgstr "Няма изпратен файл." + +msgid "The submitted file is empty." +msgstr "Изпратеният файл е празен. " + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "Уверете се, това име е най-много %(max)d знака (то има %(length)d)." +msgstr[1] "" +"Уверете се, че това файлово име има най-много %(max)d знаци (има " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Моля, или пратете файл или маркирайте полето за изчистване, но не и двете." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Качете валидно изображение. Файлът, който сте качили или не е изображение, " +"или е повреден. " + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Направете валиден избор. %(value)s не е един от възможните избори." + +msgid "Enter a list of values." +msgstr "Въведете списък от стойности" + +msgid "Enter a complete value." +msgstr "Въведете пълна стойност." + +msgid "Enter a valid UUID." +msgstr "Въведете валиден UUID." + +msgid "Enter a valid JSON." +msgstr "Въведете валиден JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Скрито поле %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm данните липсват или са променяни неправомерно. Липсващи " +"полета: %(field_names)s. Трябва да изпратите уведомление за бъг, ако този " +"проблем продължава." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Моля изпратете не повече от %(num)d формуляр." +msgstr[1] "Моля изпратете не повече от %(num)d формуляра." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Моля изпратете поне %(num)d формуляр." +msgstr[1] "Моля изпратете поне %(num)d формуляра." + +msgid "Order" +msgstr "Ред" + +msgid "Delete" +msgstr "Изтрий" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Моля, коригирайте дублираните данни за %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Моля, коригирайте дублираните данни за %(field)s, които трябва да са " +"уникални." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Моля, коригирайте дублиранитe данни за %(field_name)s , които трябва да са " +"уникални за %(lookup)s в %(date_field)s ." + +msgid "Please correct the duplicate values below." +msgstr "Моля, коригирайте повтарящите се стойности по-долу." + +msgid "The inline value did not match the parent instance." +msgstr "Стойността в реда не отговаря на родителската инстанция." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Направете валиден избор. Този не е един от възможните избори. " + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” не е валидна стойност." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s не може да се интерпретира в часова зона %(current_timezone)s; " +"вероятно стойността е нееднозначна или не съществува изобщо." + +msgid "Clear" +msgstr "Изчисти" + +msgid "Currently" +msgstr "Сега" + +msgid "Change" +msgstr "Промени" + +msgid "Unknown" +msgstr "Неизвестно" + +msgid "Yes" +msgstr "Да" + +msgid "No" +msgstr "Не" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "да,не,може би" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d, байт" +msgstr[1] "%(size)d байта" + +#, python-format +msgid "%s KB" +msgstr "%s KБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s ГБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "след обяд" + +msgid "a.m." +msgstr "преди обяд" + +msgid "PM" +msgstr "след обяд" + +msgid "AM" +msgstr "преди обяд" + +msgid "midnight" +msgstr "полунощ" + +msgid "noon" +msgstr "обяд" + +msgid "Monday" +msgstr "понеделник" + +msgid "Tuesday" +msgstr "вторник" + +msgid "Wednesday" +msgstr "сряда" + +msgid "Thursday" +msgstr "четвъртък" + +msgid "Friday" +msgstr "петък" + +msgid "Saturday" +msgstr "събота" + +msgid "Sunday" +msgstr "неделя" + +msgid "Mon" +msgstr "Пон" + +msgid "Tue" +msgstr "Вт" + +msgid "Wed" +msgstr "Ср" + +msgid "Thu" +msgstr "Чет" + +msgid "Fri" +msgstr "Пет" + +msgid "Sat" +msgstr "Съб" + +msgid "Sun" +msgstr "Нед" + +msgid "January" +msgstr "Януари" + +msgid "February" +msgstr "Февруари" + +msgid "March" +msgstr "Март" + +msgid "April" +msgstr "Април" + +msgid "May" +msgstr "Май" + +msgid "June" +msgstr "Юни" + +msgid "July" +msgstr "Юли" + +msgid "August" +msgstr "Август" + +msgid "September" +msgstr "Септември" + +msgid "October" +msgstr "Октомври" + +msgid "November" +msgstr "Ноември" + +msgid "December" +msgstr "Декември" + +msgid "jan" +msgstr "ян" + +msgid "feb" +msgstr "фев" + +msgid "mar" +msgstr "мар" + +msgid "apr" +msgstr "апр" + +msgid "may" +msgstr "май" + +msgid "jun" +msgstr "юни" + +msgid "jul" +msgstr "юли" + +msgid "aug" +msgstr "авг" + +msgid "sep" +msgstr "сеп" + +msgid "oct" +msgstr "окт" + +msgid "nov" +msgstr "ноем" + +msgid "dec" +msgstr "дек" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ян." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Фев." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Март" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Апр." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Май" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Юни" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Юли" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Септ." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ноем." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дек." + +msgctxt "alt. month" +msgid "January" +msgstr "Януари" + +msgctxt "alt. month" +msgid "February" +msgstr "Февруари" + +msgctxt "alt. month" +msgid "March" +msgstr "Март" + +msgctxt "alt. month" +msgid "April" +msgstr "Април" + +msgctxt "alt. month" +msgid "May" +msgstr "Май" + +msgctxt "alt. month" +msgid "June" +msgstr "Юни" + +msgctxt "alt. month" +msgid "July" +msgstr "Юли" + +msgctxt "alt. month" +msgid "August" +msgstr "Август" + +msgctxt "alt. month" +msgid "September" +msgstr "Септември" + +msgctxt "alt. month" +msgid "October" +msgstr "Октомври" + +msgctxt "alt. month" +msgid "November" +msgstr "Ноември" + +msgctxt "alt. month" +msgid "December" +msgstr "Декември" + +msgid "This is not a valid IPv6 address." +msgstr "Въведете валиден IPv6 адрес." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "или" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d година" +msgstr[1] "%(num)d години" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d месец" +msgstr[1] "%(num)d месеца" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d седмица" +msgstr[1] "%(num)d седмици" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d ден" +msgstr[1] "%(num)d дни" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d час" +msgstr[1] "%(num)d часа" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d минута" +msgstr[1] "%(num)d минути" + +msgid "Forbidden" +msgstr "Забранен" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF проверката се провали. Заявката прекратена." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Вие виждате това съобщение, защото този HTTPS сайт изисква да бъде изпратен " +"'Referer header' от вашият уеб браузър, но такъв не бе изпратен. Този " +"header е задължителен от съображения за сигурност, за да се гарантира, че " +"вашият браузър не е компрометиран от трети страни." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ако сте настроили вашия браузър да деактивира 'Referer' headers, моля да ги " +"активирате отново, поне за този сайт, или за HTTPS връзки, или за 'same-" +"origin' заявки." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Ако използвате таг или " +"включвате “Referrer-Policy: no-referrer” header, моля премахнете ги. CSRF " +"защитата изисква “Referer” header, за да извърши стриктна проверка на " +"изпращача. Ако сте притеснени за поверителността, използвайте алтернативи " +"като за връзки към сайтове на трети страни." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Вие виждате това съобщение, защото този сайт изисква CSRF бисквитка, когато " +"се подават формуляри. Тази бисквитка е задължителна от съображения за " +"сигурност, за да се гарантира, че вашият браузър не е компрометиран от трети " +"страни." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ако сте конфигурирали браузъра си да забрани бисквитките, моля да ги " +"активирате отново, поне за този сайт, или за \"same-origin\" заявки." + +msgid "More information is available with DEBUG=True." +msgstr "Повече информация е на разположение с DEBUG=True." + +msgid "No year specified" +msgstr "Не е посочена година" + +msgid "Date out of range" +msgstr "Датата е в невалиден диапазон" + +msgid "No month specified" +msgstr "Не е посочен месец" + +msgid "No day specified" +msgstr "Не е посочен ден" + +msgid "No week specified" +msgstr "Не е посочена седмица" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Няма достъпни %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Бъдещo %(verbose_name_plural)s е недостъпно, тъй като %(class_name)s." +"allow_future е False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Невалидна текстова стойност на датата “%(datestr)s” при зададен формат " +"“%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Няма %(verbose_name)s, съвпадащи със заявката" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Страницата не е \"последна\", нито може да се преобразува в цяло число." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Невалидна страница (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Празен списък и \"%(class_name)s.allow_empty\" e False." + +msgid "Directory indexes are not allowed here." +msgstr "Тук не е позволено индексиране на директория." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" не съществува" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Индекс %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Инсталацията Ви заработи успешно! Поздравления!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Разгледайте release notes за Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Вие виждате тази страница, защото DEBUG=True е във вашия файл с настройки и не сте " +"конфигурирали никакви URL-и." + +msgid "Django Documentation" +msgstr "Django документация" + +msgid "Topics, references, & how-to’s" +msgstr "Теми, наръчници, & друга документация" + +msgid "Tutorial: A Polling App" +msgstr "Урок: Приложение за анкета" + +msgid "Get started with Django" +msgstr "Започнете с Django" + +msgid "Django Community" +msgstr "Django общност" + +msgid "Connect, get help, or contribute" +msgstr "Свържете се, получете помощ или допринесете" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bg/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/bg/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/bg/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..546dd07d2185e3190c58a6a84f645057eed5c1db GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFCtMlKr1fqjR3ggu{}W5){vG_eleGbnU*@tbzZpdW>j z7c$!LtQ3(Yk}Bt`QbsA4B^7Z&tL$GsUd$r7DEZZzCihfzMQlk|sW20 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bg/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/bg/formats.py new file mode 100644 index 0000000..ee90c5b --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/bg/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "d F Y" +TIME_FORMAT = "H:i" +# DATETIME_FORMAT = +# YEAR_MONTH_FORMAT = +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d.m.Y" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = " " # Non-breaking space +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..ef52f360610ae3430814fb9f455d19d42add9ce6 GIT binary patch literal 16660 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 Zc-6zMRdX$C3fpOx1_0f7%l{e~{2x*1K literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po new file mode 100644 index 0000000..b554f7a --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po @@ -0,0 +1,1218 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel , 2011 +# M Nasimul Haque , 2013 +# Tahmid Rafi , 2012-2013 +# Tahmid Rafi , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Bengali (http://www.transifex.com/django/django/language/" +"bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "আফ্রিকার অন্যতম সরকারি ভাষা" + +msgid "Arabic" +msgstr "আরবী" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "আজারবাইজানি" + +msgid "Bulgarian" +msgstr "বুলগেরিয়ান" + +msgid "Belarusian" +msgstr "বেলারুশীয়" + +msgid "Bengali" +msgstr "বাংলা" + +msgid "Breton" +msgstr "ব্রেটন" + +msgid "Bosnian" +msgstr "বসনিয়ান" + +msgid "Catalan" +msgstr "ক্যাটালান" + +msgid "Czech" +msgstr "চেক" + +msgid "Welsh" +msgstr "ওয়েল্স" + +msgid "Danish" +msgstr "ড্যানিশ" + +msgid "German" +msgstr "জার্মান" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "গ্রিক" + +msgid "English" +msgstr "ইংলিশ" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "বৃটিশ ইংলিশ" + +msgid "Esperanto" +msgstr "আন্তর্জাতিক ভাষা" + +msgid "Spanish" +msgstr "স্প্যানিশ" + +msgid "Argentinian Spanish" +msgstr "আর্জেন্টিনিয়ান স্প্যানিশ" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "মেক্সিকান স্প্যানিশ" + +msgid "Nicaraguan Spanish" +msgstr "নিকারাগুয়ান স্প্যানিশ" + +msgid "Venezuelan Spanish" +msgstr "ভেনেজুয়েলার স্প্যানিশ" + +msgid "Estonian" +msgstr "এস্তোনিয়ান" + +msgid "Basque" +msgstr "বাস্ক" + +msgid "Persian" +msgstr "ফারসি" + +msgid "Finnish" +msgstr "ফিনিশ" + +msgid "French" +msgstr "ফ্রেঞ্চ" + +msgid "Frisian" +msgstr "ফ্রিজ্ল্যানডের ভাষা" + +msgid "Irish" +msgstr "আইরিশ" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "গ্যালিসিয়ান" + +msgid "Hebrew" +msgstr "হিব্রু" + +msgid "Hindi" +msgstr "হিন্দী" + +msgid "Croatian" +msgstr "ক্রোয়েশিয়ান" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "হাঙ্গেরিয়ান" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "ইন্দোনেশিয়ান" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "আইসল্যান্ডিক" + +msgid "Italian" +msgstr "ইটালিয়ান" + +msgid "Japanese" +msgstr "জাপানিজ" + +msgid "Georgian" +msgstr "জর্জিয়ান" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "কাজাখ" + +msgid "Khmer" +msgstr "খমার" + +msgid "Kannada" +msgstr "কান্নাড়া" + +msgid "Korean" +msgstr "কোরিয়ান" + +msgid "Luxembourgish" +msgstr "লুক্সেমবার্গীয়" + +msgid "Lithuanian" +msgstr "লিথুয়ানিয়ান" + +msgid "Latvian" +msgstr "লাটভিয়ান" + +msgid "Macedonian" +msgstr "ম্যাসাডোনিয়ান" + +msgid "Malayalam" +msgstr "মালায়ালম" + +msgid "Mongolian" +msgstr "মঙ্গোলিয়ান" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "বার্মিজ" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "নেপালি" + +msgid "Dutch" +msgstr "ডাচ" + +msgid "Norwegian Nynorsk" +msgstr "নরওয়েজীয়ান নিনর্স্ক" + +msgid "Ossetic" +msgstr "অসেটিক" + +msgid "Punjabi" +msgstr "পাঞ্জাবী" + +msgid "Polish" +msgstr "পোলিশ" + +msgid "Portuguese" +msgstr "পর্তুগীজ" + +msgid "Brazilian Portuguese" +msgstr "ব্রাজিলিয়ান পর্তুগীজ" + +msgid "Romanian" +msgstr "রোমানিয়ান" + +msgid "Russian" +msgstr "রাশান" + +msgid "Slovak" +msgstr "স্লোভাক" + +msgid "Slovenian" +msgstr "স্লোভেনিয়ান" + +msgid "Albanian" +msgstr "আলবেনীয়ান" + +msgid "Serbian" +msgstr "সার্বিয়ান" + +msgid "Serbian Latin" +msgstr "সার্বিয়ান ল্যাটিন" + +msgid "Swedish" +msgstr "সুইডিশ" + +msgid "Swahili" +msgstr "সোয়াহিলি" + +msgid "Tamil" +msgstr "তামিল" + +msgid "Telugu" +msgstr "তেলেগু" + +msgid "Thai" +msgstr "থাই" + +msgid "Turkish" +msgstr "তুর্কি" + +msgid "Tatar" +msgstr "তাতারদেশীয়" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "ইউক্রেনিয়ান" + +msgid "Urdu" +msgstr "উর্দু" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "ভিয়েতনামিজ" + +msgid "Simplified Chinese" +msgstr "সরলীকৃত চাইনীজ" + +msgid "Traditional Chinese" +msgstr "প্রচলিত চাইনীজ" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "একটি বৈধ মান দিন।" + +msgid "Enter a valid URL." +msgstr "বৈধ URL দিন" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "একটি বৈধ ইমেইল ঠিকানা লিখুন." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "একটি বৈধ IPv4 ঠিকানা দিন।" + +msgid "Enter a valid IPv6 address." +msgstr "একটি বৈধ IPv6 ঠিকানা টাইপ করুন।" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "একটি বৈধ IPv4 অথবা IPv6 ঠিকানা টাইপ করুন।" + +msgid "Enter only digits separated by commas." +msgstr "শুধুমাত্র কমা দিয়ে সংখ্যা দিন।" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "সংখ্যাটির মান %(limit_value)s হতে হবে (এটা এখন %(show_value)s আছে)।" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "সংখ্যাটির মান %(limit_value)s এর চেয়ে ছোট বা সমান হতে হবে।" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "সংখ্যাটির মান %(limit_value)s এর চেয়ে বড় বা সমান হতে হবে।" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "একটি সংখ্যা প্রবেশ করান।" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "এবং" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "এর মান null হতে পারবে না।" + +msgid "This field cannot be blank." +msgstr "এই ফিল্ডের মান ফাঁকা হতে পারে না" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(field_label)s সহ %(model_name)s আরেকটি রয়েছে।" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "ফিল্ডের ধরণ: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "বুলিয়ান (হয় True অথবা False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "স্ট্রিং (সর্বোচ্চ %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "কমা দিয়ে আলাদা করা ইন্টিজার" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "তারিখ (সময় বাদে)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "তারিখ (সময় সহ)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "দশমিক সংখ্যা" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "ইমেইল ঠিকানা" + +msgid "File path" +msgstr "ফাইল পথ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "ফ্লোটিং পয়েন্ট সংখ্যা" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "ইন্টিজার" + +msgid "Big (8 byte) integer" +msgstr "বিগ (৮ বাইট) ইন্টিজার" + +msgid "IPv4 address" +msgstr "IPv4 ঠিকানা" + +msgid "IP address" +msgstr "আইপি ঠিকানা" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "বুলিয়ান (হয় True, False অথবা None)" + +msgid "Positive integer" +msgstr "পজিটিভ ইন্টিজার" + +msgid "Positive small integer" +msgstr "পজিটিভ স্মল ইন্টিজার" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "স্লাগ (সর্বোচ্চ %(max_length)s)" + +msgid "Small integer" +msgstr "স্মল ইন্টিজার" + +msgid "Text" +msgstr "টেক্সট" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "সময়" + +msgid "URL" +msgstr "ইউআরএল (URL)" + +msgid "Raw binary data" +msgstr "র বাইনারি ডাটা" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "ফাইল" + +msgid "Image" +msgstr "ইমেজ" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "ফরেন কি (টাইপ রিলেটেড ফিল্ড দ্বারা নির্ণীত হবে)" + +msgid "One-to-one relationship" +msgstr "ওয়ান-টু-ওয়ান রিলেশানশিপ" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "ম্যানি-টু-ম্যানি রিলেশানশিপ" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "এটি আবশ্যক।" + +msgid "Enter a whole number." +msgstr "একটি পূর্ণসংখ্যা দিন" + +msgid "Enter a valid date." +msgstr "বৈধ তারিখ দিন।" + +msgid "Enter a valid time." +msgstr "বৈধ সময় দিন।" + +msgid "Enter a valid date/time." +msgstr "বৈধ তারিখ/সময় দিন।" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "কোন ফাইল দেয়া হয়নি। ফর্মের এনকোডিং ঠিক আছে কিনা দেখুন।" + +msgid "No file was submitted." +msgstr "কোন ফাইল দেয়া হয়নি।" + +msgid "The submitted file is empty." +msgstr "ফাইলটি খালি।" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"একটি ফাইল সাবমিট করুন অথবা ক্লিয়ার চেকবক্সটি চেক করে দিন, যে কোন একটি করুন।" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"সঠিক ছবি আপলোড করুন। যে ফাইলটি আপলোড করা হয়েছে তা হয় ছবি নয় অথবা নষ্ট হয়ে " +"যাওয়া ছবি।" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "%(value)s বৈধ নয়। অনুগ্রহ করে আরেকটি সিলেক্ট করুন।" + +msgid "Enter a list of values." +msgstr "কয়েকটি মানের তালিকা দিন।" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "ক্রম" + +msgid "Delete" +msgstr "মুছুন" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "এটি বৈধ নয়। অনুগ্রহ করে আরেকটি সিলেক্ট করুন।" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "পরিষ্কার করুন" + +msgid "Currently" +msgstr "এই মুহুর্তে" + +msgid "Change" +msgstr "পরিবর্তন" + +msgid "Unknown" +msgstr "অজানা" + +msgid "Yes" +msgstr "হ্যাঁ" + +msgid "No" +msgstr "না" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "হ্যাঁ,না,হয়তো" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d বাইট" +msgstr[1] "%(size)d বাইট" + +#, python-format +msgid "%s KB" +msgstr "%s কিলোবাইট" + +#, python-format +msgid "%s MB" +msgstr "%s মেগাবাইট" + +#, python-format +msgid "%s GB" +msgstr "%s গিগাবাইট" + +#, python-format +msgid "%s TB" +msgstr "%s টেরাবাইট" + +#, python-format +msgid "%s PB" +msgstr "%s পেটাবাইট" + +msgid "p.m." +msgstr "অপরাহ্ন" + +msgid "a.m." +msgstr "পূর্বাহ্ন" + +msgid "PM" +msgstr "অপরাহ্ন" + +msgid "AM" +msgstr "পূর্বাহ্ন" + +msgid "midnight" +msgstr "মধ্যরাত" + +msgid "noon" +msgstr "দুপুর" + +msgid "Monday" +msgstr "সোমবার" + +msgid "Tuesday" +msgstr "মঙ্গলবার" + +msgid "Wednesday" +msgstr "বুধবার" + +msgid "Thursday" +msgstr "বৃহস্পতিবার" + +msgid "Friday" +msgstr "শুক্রবার" + +msgid "Saturday" +msgstr "শনিবার" + +msgid "Sunday" +msgstr "রবিবার" + +msgid "Mon" +msgstr "সোম" + +msgid "Tue" +msgstr "মঙ্গল" + +msgid "Wed" +msgstr "বুধ" + +msgid "Thu" +msgstr "বৃহঃ" + +msgid "Fri" +msgstr "শুক্র" + +msgid "Sat" +msgstr "শনি" + +msgid "Sun" +msgstr "রবি" + +msgid "January" +msgstr "জানুয়ারি" + +msgid "February" +msgstr "ফেব্রুয়ারি" + +msgid "March" +msgstr "মার্চ" + +msgid "April" +msgstr "এপ্রিল" + +msgid "May" +msgstr "মে" + +msgid "June" +msgstr "জুন" + +msgid "July" +msgstr "জুলাই" + +msgid "August" +msgstr "আগস্ট" + +msgid "September" +msgstr "সেপ্টেম্বর" + +msgid "October" +msgstr "অক্টোবর" + +msgid "November" +msgstr "নভেম্বর" + +msgid "December" +msgstr "ডিসেম্বর" + +msgid "jan" +msgstr "জান." + +msgid "feb" +msgstr "ফেব." + +msgid "mar" +msgstr "মার্চ" + +msgid "apr" +msgstr "এপ্রি." + +msgid "may" +msgstr "মে" + +msgid "jun" +msgstr "জুন" + +msgid "jul" +msgstr "জুল." + +msgid "aug" +msgstr "আগ." + +msgid "sep" +msgstr "সেপ্টে." + +msgid "oct" +msgstr "অক্টো." + +msgid "nov" +msgstr "নভে." + +msgid "dec" +msgstr "ডিসে." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "জানু." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ফেব্রু." + +msgctxt "abbrev. month" +msgid "March" +msgstr "মার্চ" + +msgctxt "abbrev. month" +msgid "April" +msgstr "এপ্রিল" + +msgctxt "abbrev. month" +msgid "May" +msgstr "মে" + +msgctxt "abbrev. month" +msgid "June" +msgstr "জুন" + +msgctxt "abbrev. month" +msgid "July" +msgstr "জুলাই" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "আগ." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "সেপ্ট." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "অক্টো." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "নভে." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ডিসে." + +msgctxt "alt. month" +msgid "January" +msgstr "জানুয়ারি" + +msgctxt "alt. month" +msgid "February" +msgstr "ফেব্রুয়ারি" + +msgctxt "alt. month" +msgid "March" +msgstr "মার্চ" + +msgctxt "alt. month" +msgid "April" +msgstr "এপ্রিল" + +msgctxt "alt. month" +msgid "May" +msgstr "মে" + +msgctxt "alt. month" +msgid "June" +msgstr "জুন" + +msgctxt "alt. month" +msgid "July" +msgstr "জুলাই" + +msgctxt "alt. month" +msgid "August" +msgstr "আগস্ট" + +msgctxt "alt. month" +msgid "September" +msgstr "সেপ্টেম্বর" + +msgctxt "alt. month" +msgid "October" +msgstr "অক্টোবর" + +msgctxt "alt. month" +msgid "November" +msgstr "নভেম্বর" + +msgctxt "alt. month" +msgid "December" +msgstr "ডিসেম্বর" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "অথবা" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "0 minutes" +msgstr "0 মিনিট" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "কোন বছর উল্লেখ করা হয়নি" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "কোন মাস উল্লেখ করা হয়নি" + +msgid "No day specified" +msgstr "কোন দিন উল্লেখ করা হয়নি" + +msgid "No week specified" +msgstr "কোন সপ্তাহ উল্লেখ করা হয়নি" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "কোন %(verbose_name_plural)s নেই" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "কুয়েরি ম্যাচ করে এমন কোন %(verbose_name)s পাওয়া যায় নি" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "ডিরেক্টরি ইনডেক্স অনুমোদিত নয়" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s এর ইনডেক্স" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bn/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/bn/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/bn/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3aa43382cf2f76905850db89032121ff55c4cafa GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF;LGl=yj+4gVDp7>^5lw73kIbJ+D3qgxFxv6ZrV~cac3vg7CX3-VTu$U->Lgxqv_g zKoo&UMUbcjm|~EroC(nRg=h!5pkyNL!U6R7sz9F}zz5ocfhUX(>(0&4IvxhKoK2QP zQcD*15@$_d^Waa1-!a0qqJgdzx)$u*UE{`DF@9#PYuI$6*%QsH<<`~ewsE*i4)@U` zI(b6J^HHDn4dR=T<+wKSY2TmOyFv|2;zqVJ_ov(Z<8x(@U`teQ>bQRN_7K&Yxn6^U z$g!eJ)BHw{+I%*@SoklE9zAOB+Gn4deeZD9FwbT-IgdQ^g1E$YT;4u)79N=!uk2n} zWBzijJSAt7a8ah~GW?O|6$=fPY>ISMm0^~aRm`Gwyvg_c`SL0(msL8xjg#*&-xb15 zyvmrKu+_Dmvn0+_{c5FOvvm*yQOK)O?N4TrkE6i+plbu-Fw5{wKkd<{=Y91^&szb%235Y_vpnyq@Hoc> zjwd_zIGzUgquwgV7r}!_55NQA5L7$c;M3p*@CZ2S$|qd@W$>BgUk(q3*Sh@c;e65` zhN$e_3Q^JfJbXU<0Xz{t?8=XRc2RyjRDY*J4RIBeUPDmroa?w9s$K<3&j=n4Gx!|% zdZ=-{7wY{FLDjnj>b+axGvMc-#`SHe`ag$D2;`sl1^#GVe+*H@dlaht zu%nClIsr0;-U_%7ZiE_d4mF-j9j}1TBmGvmKfDR5-p8TF@mZ*LzU=bvf!(CJW1-SM)O(BIOW_iz{@&ntHB`OppyvJkE`5Vbe-x_!PeR$r=i$@g*IoYIQ2p(O zdjEc?@jnPve;$*l{ttz+yJthydx6XEa9j$d*9xd{_c^Y0%9EN)Tr7rz)S6+eY zFNRw8mP=m&rT^8CDe~S8rO&6J+W8!m{$GOX|7%d||6P~A8>-*?q1t)Kr5}N^gU6uu z=iw~=Vt6Ffe(8g<+cBv5n1CzcRZ#EU0ksc);`m#~r?B|a;|M4{kAXnYKfok^(NY~!=kR|ZG45iO~ z5EJ$uhnoLmjxYLO1~o6ILbZ1m)IMMB%3lJd*9DGcmtTj{qX{)n6R!MK@I2C2LbZ1v z)O`I4YJL6!HSVXqpm=XS)cB5s%0C9`z2`&eaRSu)r#Y^7ywI`f_!`HzL%nwcls$gN z<$ud@w=4e>l${)OLQ(G+sP`5-z6h${5vcuBah!m9?{X-A{SK)2J_uF+cBu2_PB;(V z=lDy%OJQJ=X|I-WEb8!Df#X4+q-0FC~W8heUPoaJTYW-uV^&f`^z{{Z4^9rc)tDyY* zHShp`aY5i=foi`Os+~Tl_lBX?<3e~K zya=jZ3#$B8@BsKmcp$tQYTd4bbm83uRel%Ly#3UrAB58LVW{=}ZzwxBth31Xq4Zb? z)z1oe3ham4$Kz1-Uk%m%)o=v93--a^IW9Y?*q<4ce}5Cyd)Gtl>rX-Hd6!E+4mIB6 zPA=X%1!})E8FC&f5p!eE3|PzVurN4}#rL{jPu-|4X3O z^JP%;nnAUDF+32y8LoiuaOK~D^GM(A()T#t2e*;`091c{T}6L`Q0)x6^aW7mV^IA^ zt~`TJC;bYjefS2K|4yj>-sjTSL+N`H)OfxG)!w(@!SF7qao^|4e*-nHN1^IH?$QS^ zNz&_3sQja#^f}IPfh#{5>iy*|y%HWmdNox4TO2Qdn*TAV_AZ5b?{X;puY%I=ZBX|4 z9+!W!<0qi>xee<5FF>us9j^RdI7oUoWQx7TON#U0JSh7ZhXe3!F8xC&JNX0j;o(aQ zyITh3R|cT=?OG_kH@I{eO7GC6n=YNh^U1#iVxr#N@Re|0PjO#-HI$v)0HyzKsC9S% z%0B-Db)FrvtQhCXj>{caLCw=zsQ%Z(v*C;3T6itg{QS(7KL9oE-@`-UA*U4k_*kfV zJ&wKb1kwZW2v~tyw~OIn@O2QA@UDUCf0yG|pxXI5ls?~w8qbfR#&})A4Gkb^0V!|383w|3@x;FMI~+-7ft{D19Dre9YxP z^@W9g2SMp`BvifU!7@D2rLTlXkbVo)JbVDE-;Y4OcZ=igPrrPrN~--CMZ zZdZPf%fHX@SB?)k{sF4~BT()B#pOTdIPcVAJ`aTI=TMhE0!q)Lq4YSx@gyjHdtAB~ zs{KBw_SZnQb2e1HA(y`ms@{2y7di$|>uFrN<`_GsjuVa-L+N#?G5ut|2`;tz22oi0d@ZV8u=lj-x_4Ked2t9uW`@6hu0xB9^|#i)ySF1%%AM9{kxKf3FN!Tmys7B`h5iHw@;q;uTX2F`5r*-L@q;c zZFX+I0=p6Yb|SyEPsJbY@z1+-CmeLoUw1qUhRDAotB_j|?N|LigJ^GFtc3fW==d}E z4kST(kxLN$Mv+h3C(a=FJ>(^beE$uIe)1#weGoYZS&v+R==U!L?B9F%`yAw#$cvDh zkT)X#fwX`7@gTo?FY*Y|M6N=9fav#1qz`$Y67F{-EW77V!H3-Qq~kxqcOg4mx{XEd zVF;e&o}cD;sH1R#d%hl?i)=*x1k-D1U;}v&IU5;AK7edO-id5SeB?*S zmylDDUm+Wi!;v>5-hz%sTsHOXQP41*sXq~BRX?kSslT9OEHw4<_IgkZKqGgUIV^CSl#{OM+533MwYbLKXPKO)8{SuP@E=#MaC!d762B{7Hhks;r4Bbz7xn zl2Q=v;03QgNH5Bb*Kg`UlBasF-$WJad;MX>?^t1V@AShcGZm9~{c&73G}W<&Sulw| zlH|sZ6Mt<`Pfh1uix(G#syzF<%ZygN)x|unrn=uzEOyAkli$vW^UTkRJTqznU&3VZh z+;~uDx~=8a!$z2Gw;5PoN0=4aX*Hf`=XQ3}$X;HqV5J#rmoal%6?0LJ=2?tA&uVoa zuh-G;NxiE+0)I4aG&LE%)m3d4`B-A+$74k{o28v!%;0pI*TS+txOseedusMt#yF^R z>J!x2XW7;*=ge)g%mnQ%Z;6(DZh@J(ZgUIW#+jSFw|3@C&_tE3<_xO+dK}d!{c>0d zv(%rq>C&WTxe;g<)22y+D2sVwAIZMgno^Pn$)vYd&Pr3BO*T#Ml=o7qGo`d{>>s}w zWL2Ib>rU3zwN0Xm-;5bb+rHPvNhvIs4XwwC2`iDm!A$xcYRWIO*hwRdux=Dfa4gz) z)>C$RYuRd;`r0IvlmoO%LhE+c=J+jxR^vFQI5pPYZg19eoEH{uH_bR3Bq%W}B{Lf2 zscMhbgEV!nx!dll?PEntY!mC1y1jLn(5R+jor#l5@sKo>PK>E}XEQ-&!aJKi8hU5v zct7iC1~<2j$(w0?-ry)hqUxwOSdP8HMu7Jj)b`fYF6bz?_dIh-HXhFoZ_qhVF{v}5 zdEgB)^r|~)XI)7B8QEkTv&-^c7nLu{<9j4@2vp9t6@c?mCx`E~Cj+aIW! z(VFcOyNt_L0U2=|+03yxY1nrgam1-VtCtCEXLimcN6@UCWWvbY{Ed@QoTN3B7%z^C zO`HlkHa0~@tALRd8>PJno076h)6`_x+2$c{vq`KOZRVK6?nh(JtWi!OCaat`F>f7C zc&&ixOqk*W>Fhk(!Bx!L60?)E#kS8z?ie<8tyZAJ zj>BxU8i%8%TU$W~x@MqoaIypWXQpS$!d-2A`#xG3sRo&=^kmyO zSM3|>a7H(yz78DP%Mxw6eKnAy4(>s7I1yC2EkaY)VhvBq2h$QxXe4NGDIUT66K}+z zP!4ux9#a$QPsW*6(XNTIAdEEEY_~M8XX%X6;^LtxoW9}oP;RE(NMTgeFpXw5*-atO z)@FVDqK+u`Sc%i2wvVzXuh(Z4@qWVni!%csHBv?IYM!JT?+7;yZzKuI*kK%TL2IwY z2-kI_sFWu)O$JvOZ)>@cCz-dkmM})G>ei?h#S^f}8D5^UKJKX%j86lzdt@@seOw4t zIHu(_-A=M6ZsgnQx+dx>mn1p1!!6pj;cZRIxwp+krj_eVocadY7Me_7OIXgixMTz? z(xA>Yb+kQ?bq~66tU-yBcf8xT-gW=t(`HUyUYT2stM=S1t~hhEI8FD+(s??&d3(Cf z&MMBmxp{M6#FNi$9-lrpYuGfESI_1QaYjb*kv5|W!z(uDjJ&BU+>E^Tbzx?f9pH51 z#ptHfZfG+z7}s=i>Uf%w*FLFcWNB1R#i;BB&BP1xidQzH-k2$QJFvVRc^!$o2K%wW zvNytV6jrL47sc$>C?5CX(aehzuPH0wBI`|>ba50frgF)6yDz)m+nmHZ@R?nM<*scy z`{JnAFVl707PWU$%5vPgf8B zR`|<$dV5Ykc`3j7=LBii#m0(KZl-b4%Qq~~;TRXVes=H~XHrAgvx?~&F+ro(FFr~A zj%t=QdzUPkn3(A1i@JEFn~V37La#R12=?tIrDRFx{Gq|2HPa*L>0Ua2058P%X4i(LwPL!S`WiDy*BW<2>GfBX!fZ;*UcZ#g-)!&6UEIbS zX|Ep@*XDH93s?HZHR13@I zwlF8-v^nY1NuTBSOt)}~f5|1j^jWoP`Sj!IGn+lbM_XHqho%0Re$SlZ(_C>;dfJ@Q z(`S{QPU%_xGAW=DFVzHa=TOV~X;zl1#wmWUzr1thd}1K2MZRhICQtp*Mb$WHRqb=G zyVa~{P=${zzUs-g=Ri9a#Kn3S|Is!T0g7w5&HrEWiQ`4y5H}SL?>-wcicF;l8NoI9 z*dk&?f-|@h@m*Q*`w|9*@?jJdF(Xxt2^b9raf|o;J`y%?X~&A} zlR`y2^y#aHYg{Se{2*v#hpTW%#`E~+|<+ekABE~tzi1J$@;%lLRtGn#g@Ci6ylLPOTZV}|TARpW79 zwyj{yvjRbW2Yz*Gug89cvs?t-*DRkjSo^_h>fgVmqQsl$PwhY^J`&a_{l79pRLH@1X~6 z@9~P8sXg*%HB}5oD~@s3OyqN#+O0Ha3u*r_=hIOtZ6k%LWUGs+6J|W&t9KYZWJTC0 z8v>8qcC9W@wZ-6rQlT{&WK)- zoZk9_n`b4)mwSU;e5`*^{A##naycGsjOOq)dy8O63+LjAY0U^=P2j@{hwP$QR9t5w z22MCjVJwm{!5l;Lt*RL(U}$4mS>V+a%bFF+qOyWnLYNUa(nDTLxoRquMQSLhDUxNM z+JUUqxZg&T&nLegnzSp z6fNz`V(i;EOr4&5PfT|!D@X&`EbhW~GNZ5-aF;Chg)M5osKaEBGQaJ6QL5MvCaT3{ z?di7fFLu~oI&bXR_mpD%2UrzntP#vmZK}A$XXiMU;VQ%ltIu)Yj+d>@v2ToLdXe)e zh>Atl6Ca=~?Iy;_Dy{1tB9gI4S)i!^Srqs!8&PiA z!4mam7qj1I91?yRBlqJjb=m#o+kVnj+wro%=c-@BpxUZPBkO_7R(<}r#_CWkNuB?c zw6-=CN1Gc&v$LQ!8FB}|Uw8Fm)2W74; zlH@FN2ZObMR;l77;K2G!0DAr zBTcb&KXL*^XiW_fW0N=LL9sRV4v}WQJ7&bzSW*qIyK`?dJMFMAR+dyfr3BshzmBNz z_V)6q2Aq<6?SuFo-|>>v#@?imZmB?rO)V&M>9(OavS_{tzQs9Cjqn>6PR3*-aD~s{ zG7#fwea@I>u!BN(W9@TSF9J*@o6p%VoAt3zYbeEA6;`E(LlKWzk9Bs+sI9?TXD08a z+j4RE&N#kxi?e=~g?bWIwip6xYQD}=g>Lh-?*iT4c|k16`5NM;!nYHPT9p~_-!yd& zxm+TrG(u#KX;ENqQ(kUxg2_h}!8smQW8J|xHwQLBRk!Bi^THm*ZNu(syJ8(4hMKgi zuMzGw#?DFL$BOrxI`S==hl z3y9s=?@GQRxwplHp*Qf=GN2n2i(&AGtcWgvE&b6G2W{cEDN?24`_q0}7N0!!WqZ|g zR|Q&_bwzMfINefl;j(+J8mK{OGOdX8kQ&lLN?0BAZEKP!Zh19sx>#e_a(a19<5d)R W(oJqMSj>D8cw&88#_R6x_WlaFsDy<8 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po new file mode 100644 index 0000000..3b1a759 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/br/LC_MESSAGES/django.po @@ -0,0 +1,1297 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Claude Paroz , 2020 +# Ewen , 2021 +# Fulup , 2012,2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-18 21:19+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Breton (http://www.transifex.com/django/django/language/br/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: br\n" +"Plural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !" +"=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n" +"%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > " +"19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 " +"&& n % 1000000 == 0) ? 3 : 4);\n" + +msgid "Afrikaans" +msgstr "Afrikaneg" + +msgid "Arabic" +msgstr "Arabeg" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Astureg" + +msgid "Azerbaijani" +msgstr "Azeri" + +msgid "Bulgarian" +msgstr "Bulgareg" + +msgid "Belarusian" +msgstr "Belaruseg" + +msgid "Bengali" +msgstr "Bengaleg" + +msgid "Breton" +msgstr "Brezhoneg" + +msgid "Bosnian" +msgstr "Bosneg" + +msgid "Catalan" +msgstr "Katalaneg" + +msgid "Czech" +msgstr "Tchekeg" + +msgid "Welsh" +msgstr "Kembraeg" + +msgid "Danish" +msgstr "Daneg" + +msgid "German" +msgstr "Alamaneg" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Gresianeg" + +msgid "English" +msgstr "Saozneg" + +msgid "Australian English" +msgstr "Saozneg Aostralia" + +msgid "British English" +msgstr "Saozneg Breizh-Veur" + +msgid "Esperanto" +msgstr "Esperanteg" + +msgid "Spanish" +msgstr "Spagnoleg" + +msgid "Argentinian Spanish" +msgstr "Spagnoleg Arc'hantina" + +msgid "Colombian Spanish" +msgstr "Spagnoleg Kolombia" + +msgid "Mexican Spanish" +msgstr "Spagnoleg Mec'hiko" + +msgid "Nicaraguan Spanish" +msgstr "Spagnoleg Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Spagnoleg Venezuela" + +msgid "Estonian" +msgstr "Estoneg" + +msgid "Basque" +msgstr "Euskareg" + +msgid "Persian" +msgstr "Perseg" + +msgid "Finnish" +msgstr "Finneg" + +msgid "French" +msgstr "Galleg" + +msgid "Frisian" +msgstr "Frizeg" + +msgid "Irish" +msgstr "Iwerzhoneg" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Galizeg" + +msgid "Hebrew" +msgstr "Hebraeg" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroateg" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Hungareg" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonezeg" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandeg" + +msgid "Italian" +msgstr "Italianeg" + +msgid "Japanese" +msgstr "Japaneg" + +msgid "Georgian" +msgstr "Jorjianeg" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "kazak" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannata" + +msgid "Korean" +msgstr "Koreaneg" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Luksembourgeg" + +msgid "Lithuanian" +msgstr "Lituaneg" + +msgid "Latvian" +msgstr "Latveg" + +msgid "Macedonian" +msgstr "Makedoneg" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongoleg" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Burmeg" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "nepaleg" + +msgid "Dutch" +msgstr "Nederlandeg" + +msgid "Norwegian Nynorsk" +msgstr "Norvegeg Nynorsk" + +msgid "Ossetic" +msgstr "Oseteg" + +msgid "Punjabi" +msgstr "Punjabeg" + +msgid "Polish" +msgstr "Poloneg" + +msgid "Portuguese" +msgstr "Portugaleg" + +msgid "Brazilian Portuguese" +msgstr "Portugaleg Brazil" + +msgid "Romanian" +msgstr "Roumaneg" + +msgid "Russian" +msgstr "Rusianeg" + +msgid "Slovak" +msgstr "Slovakeg" + +msgid "Slovenian" +msgstr "Sloveneg" + +msgid "Albanian" +msgstr "Albaneg" + +msgid "Serbian" +msgstr "Serbeg" + +msgid "Serbian Latin" +msgstr "Serbeg e lizherennoù latin" + +msgid "Swedish" +msgstr "Svedeg" + +msgid "Swahili" +msgstr "swahileg" + +msgid "Tamil" +msgstr "Tamileg" + +msgid "Telugu" +msgstr "Telougou" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turkeg" + +msgid "Tatar" +msgstr "tatar" + +msgid "Udmurt" +msgstr "Oudmourteg" + +msgid "Ukrainian" +msgstr "Ukraineg" + +msgid "Urdu" +msgstr "Ourdou" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnameg" + +msgid "Simplified Chinese" +msgstr "Sinaeg eeunaet" + +msgid "Traditional Chinese" +msgstr "Sinaeg hengounel" + +msgid "Messages" +msgstr "Kemennadenn" + +msgid "Site Maps" +msgstr "Tresoù al lec'hienn" + +msgid "Static Files" +msgstr "Restroù statek" + +msgid "Syndication" +msgstr "Sindikadur" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "An niver a bajenn mañ a zo bihanoc'h eget 1." + +msgid "That page contains no results" +msgstr "N'eus disoc'h er pajenn-mañ." + +msgid "Enter a valid value." +msgstr "Merkit un talvoud reizh" + +msgid "Enter a valid URL." +msgstr "Merkit un URL reizh" + +msgid "Enter a valid integer." +msgstr "Merkit un niver anterin reizh." + +msgid "Enter a valid email address." +msgstr "Merkit ur chomlec'h postel reizh" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Merkit ur chomlec'h IPv4 reizh." + +msgid "Enter a valid IPv6 address." +msgstr "Merkit ur chomlec'h IPv6 reizh." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Merkit ur chomlec'h IPv4 pe IPv6 reizh." + +msgid "Enter only digits separated by commas." +msgstr "Merkañ hepken sifroù dispartiet dre skejoù." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Bezit sur ez eo an talvoud-mañ %(limit_value)s (evit ar mare ez eo " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Gwiriit mat emañ an talvoud-mañ a-is pe par da %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Gwiriit mat emañ an talvoud-mañ a-us pe par da %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +msgid "Enter a number." +msgstr "Merkit un niver." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "ha" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "N'hall ket ar vaezienn chom goullo" + +msgid "This field cannot be blank." +msgstr "N'hall ket ar vaezienn chom goullo" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Bez' ez eus c'hoazh eus ur %(model_name)s gant ar %(field_label)s-mañ." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Seurt maezienn : %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boulean (gwir pe gaou)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "neudennad arouezennoù (betek %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Niveroù anterin dispartiet dre ur skej" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Deizad (hep eur)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Deizad (gant an eur)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Niver dekvedennel" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Chomlec'h postel" + +msgid "File path" +msgstr "Treug war-du ar restr" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Niver gant skej nij" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Anterin" + +msgid "Big (8 byte) integer" +msgstr "Anterin bras (8 okted)" + +msgid "Small integer" +msgstr "Niver anterin bihan" + +msgid "IPv4 address" +msgstr "Chomlec'h IPv4" + +msgid "IP address" +msgstr "Chomlec'h IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boulean (gwir pe gaou pe netra)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Niver anterin pozitivel" + +msgid "Positive small integer" +msgstr "Niver anterin bihan pozitivel" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (betek %(max_length)s arouez.)" + +msgid "Text" +msgstr "Testenn" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Eur" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Restr" + +msgid "Image" +msgstr "Skeudenn" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Alc'hwez estren (seurt termenet dre ar vaezienn liammet)" + +msgid "One-to-one relationship" +msgstr "Darempred unan-ouzh-unan" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Darempred lies-ouzh-lies" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Rekis eo leuniañ ar vaezienn." + +msgid "Enter a whole number." +msgstr "Merkit un niver anterin." + +msgid "Enter a valid date." +msgstr "Merkit un deiziad reizh" + +msgid "Enter a valid time." +msgstr "Merkit un eur reizh" + +msgid "Enter a valid date/time." +msgstr "Merkit un eur/deiziad reizh" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "N'eus ket kaset restr ebet. Gwiriit ar seurt enkodañ evit ar restr" + +msgid "No file was submitted." +msgstr "N'eus bet kaset restr ebet." + +msgid "The submitted file is empty." +msgstr "Goullo eo ar restr kaset." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Kasit ur restr pe askit al log riñsañ; an eil pe egile" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Enpozhiit ur skeudenn reizh. Ar seurt bet enporzhiet ganeoc'h a oa foeltret " +"pe ne oa ket ur skeudenn" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Dizuit un dibab reizh. %(value)s n'emañ ket e-touez an dibaboù posupl." + +msgid "Enter a list of values." +msgstr "Merkit ur roll talvoudoù" + +msgid "Enter a complete value." +msgstr "Merkañ un talvoud klok" + +msgid "Enter a valid UUID." +msgstr "" + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +msgid "Order" +msgstr "Urzh" + +msgid "Delete" +msgstr "Diverkañ" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Reizhit ar roadennoù e doubl e %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Reizhit ar roadennoù e doubl e %(field)s, na zle bezañ enni nemet talvoudoù " +"dzho o-unan." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Reizhit ar roadennoù e doubl e %(field_name)s a rank bezañ ennañ talvodoù en " +"o-unan evit lodenn %(lookup)s %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Reizhañ ar roadennoù e doubl zo a-is" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Diuzit un dibab reizh. N'emañ ket an dibab-mañ e-touez ar re bosupl." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Riñsañ" + +msgid "Currently" +msgstr "Evit ar mare" + +msgid "Change" +msgstr "Kemmañ" + +msgid "Unknown" +msgstr "Dianav" + +msgid "Yes" +msgstr "Ya" + +msgid "No" +msgstr "Ket" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ya,ket,marteze" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d okted" +msgstr[1] "%(size)d okted" +msgstr[2] "%(size)d okted" +msgstr[3] "%(size)d okted" +msgstr[4] "%(size)d okted" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "g.m." + +msgid "a.m." +msgstr "mintin" + +msgid "PM" +msgstr "G.M." + +msgid "AM" +msgstr "Mintin" + +msgid "midnight" +msgstr "hanternoz" + +msgid "noon" +msgstr "kreisteiz" + +msgid "Monday" +msgstr "Lun" + +msgid "Tuesday" +msgstr "Meurzh" + +msgid "Wednesday" +msgstr "Merc'her" + +msgid "Thursday" +msgstr "Yaou" + +msgid "Friday" +msgstr "Gwener" + +msgid "Saturday" +msgstr "Sadorn" + +msgid "Sunday" +msgstr "Sul" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Meu" + +msgid "Wed" +msgstr "Mer" + +msgid "Thu" +msgstr "Yao" + +msgid "Fri" +msgstr "Gwe" + +msgid "Sat" +msgstr "Sad" + +msgid "Sun" +msgstr "Sul" + +msgid "January" +msgstr "Genver" + +msgid "February" +msgstr "C'hwevrer" + +msgid "March" +msgstr "Meurzh" + +msgid "April" +msgstr "Ebrel" + +msgid "May" +msgstr "Mae" + +msgid "June" +msgstr "Mezheven" + +msgid "July" +msgstr "Gouere" + +msgid "August" +msgstr "Eost" + +msgid "September" +msgstr "Gwengolo" + +msgid "October" +msgstr "Here" + +msgid "November" +msgstr "Du" + +msgid "December" +msgstr "Kerzu" + +msgid "jan" +msgstr "Gen" + +msgid "feb" +msgstr "C'hwe" + +msgid "mar" +msgstr "Meu" + +msgid "apr" +msgstr "Ebr" + +msgid "may" +msgstr "Mae" + +msgid "jun" +msgstr "Mez" + +msgid "jul" +msgstr "Gou" + +msgid "aug" +msgstr "Eos" + +msgid "sep" +msgstr "Gwe" + +msgid "oct" +msgstr "Her" + +msgid "nov" +msgstr "Du" + +msgid "dec" +msgstr "Kzu" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Gen." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "C'hwe." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Meu." + +msgctxt "abbrev. month" +msgid "April" +msgstr "Ebr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mae" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Mez." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Gou." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Eos." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Gwe." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Her." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Du" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Kzu" + +msgctxt "alt. month" +msgid "January" +msgstr "Genver" + +msgctxt "alt. month" +msgid "February" +msgstr "C'hwevrer" + +msgctxt "alt. month" +msgid "March" +msgstr "Meurzh" + +msgctxt "alt. month" +msgid "April" +msgstr "Ebrel" + +msgctxt "alt. month" +msgid "May" +msgstr "Mae" + +msgctxt "alt. month" +msgid "June" +msgstr "Mezheven" + +msgctxt "alt. month" +msgid "July" +msgstr "Gouere" + +msgctxt "alt. month" +msgid "August" +msgstr "Eost" + +msgctxt "alt. month" +msgid "September" +msgstr "Gwengolo" + +msgctxt "alt. month" +msgid "October" +msgstr "Here" + +msgctxt "alt. month" +msgid "November" +msgstr "Du" + +msgctxt "alt. month" +msgid "December" +msgstr "Kerzu" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "pe" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" + +msgid "Forbidden" +msgstr "Difennet" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "N'eus bet resisaet bloavezh ebet" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "N'eus bet resisaet miz ebet" + +msgid "No day specified" +msgstr "N'eus bet resisaet deiz ebet" + +msgid "No week specified" +msgstr "N'eus bet resisaet sizhun ebet" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "N'eus %(verbose_name_plural)s ebet da gaout." + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"En dazont ne vo ket a %(verbose_name_plural)s rak faos eo %(class_name)s." +"allow_future." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" +"N'eus bet kavet traezenn %(verbose_name)s ebet o klotaén gant ar goulenn" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "N'haller ket diskwel endalc'had ar c'havlec'h-mañ." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Meneger %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..064cc5d8e1e13fe22f215d03fbb7f564f47ff18c GIT binary patch literal 10824 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, 2011 +# Jannis Leidel , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Bosnian (http://www.transifex.com/django/django/language/" +"bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "arapski" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Azerbejdžanski" + +msgid "Bulgarian" +msgstr "bugarski" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "bengalski" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "bosanski" + +msgid "Catalan" +msgstr "katalonski" + +msgid "Czech" +msgstr "češki" + +msgid "Welsh" +msgstr "velški" + +msgid "Danish" +msgstr "danski" + +msgid "German" +msgstr "njemački" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "grčki" + +msgid "English" +msgstr "engleski" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "Britanski engleski" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "španski" + +msgid "Argentinian Spanish" +msgstr "Argentinski španski" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Meksički španski" + +msgid "Nicaraguan Spanish" +msgstr "Nikuaraganski španski" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "estonski" + +msgid "Basque" +msgstr "baskijski" + +msgid "Persian" +msgstr "persijski" + +msgid "Finnish" +msgstr "finski" + +msgid "French" +msgstr "francuski" + +msgid "Frisian" +msgstr "frišanski" + +msgid "Irish" +msgstr "irski" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "galski" + +msgid "Hebrew" +msgstr "hebrejski" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "hrvatski" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "mađarski" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "Indonežanski" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "islandski" + +msgid "Italian" +msgstr "italijanski" + +msgid "Japanese" +msgstr "japanski" + +msgid "Georgian" +msgstr "gruzijski" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "kambođanski" + +msgid "Kannada" +msgstr "kanada" + +msgid "Korean" +msgstr "korejski" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "litvanski" + +msgid "Latvian" +msgstr "latvijski" + +msgid "Macedonian" +msgstr "makedonski" + +msgid "Malayalam" +msgstr "Malajalamski" + +msgid "Mongolian" +msgstr "Mongolski" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "holandski" + +msgid "Norwegian Nynorsk" +msgstr "Norveški novi" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "Pandžabi" + +msgid "Polish" +msgstr "poljski" + +msgid "Portuguese" +msgstr "portugalski" + +msgid "Brazilian Portuguese" +msgstr "brazilski portugalski" + +msgid "Romanian" +msgstr "rumunski" + +msgid "Russian" +msgstr "ruski" + +msgid "Slovak" +msgstr "slovački" + +msgid "Slovenian" +msgstr "slovenački" + +msgid "Albanian" +msgstr "albanski" + +msgid "Serbian" +msgstr "srpski" + +msgid "Serbian Latin" +msgstr "srpski latinski" + +msgid "Swedish" +msgstr "švedski" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "tamilski" + +msgid "Telugu" +msgstr "telugu" + +msgid "Thai" +msgstr "tajlandski" + +msgid "Turkish" +msgstr "turski" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "ukrajinski" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "vijetnamežanski" + +msgid "Simplified Chinese" +msgstr "novokineski" + +msgid "Traditional Chinese" +msgstr "starokineski" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Unesite ispravnu vrijednost." + +msgid "Enter a valid URL." +msgstr "Unesite ispravan URL." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Unesite ispravnu IPv4 adresu." + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "Unesite samo brojke razdvojene zapetama." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Pobrinite se da je ova vrijednost %(limit_value)s (trenutno je " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Ova vrijednost mora da bude manja ili jednaka %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Ova vrijednost mora biti veća ili jednaka %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +msgid "Enter a number." +msgstr "Unesite broj." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "i" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Ovo polje ne može ostati prazno." + +msgid "This field cannot be blank." +msgstr "Ovo polje ne može biti prazno." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s sa ovom vrijednošću %(field_label)s već postoji." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Polje tipa: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Bulova vrijednost (True ili False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (najviše %(max_length)s znakova)" + +msgid "Comma-separated integers" +msgstr "Cijeli brojevi razdvojeni zapetama" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Datum (bez vremena)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Datum (sa vremenom)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Decimalni broj" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Email adresa" + +msgid "File path" +msgstr "Putanja fajla" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Broj sa pokrenom zapetom" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Cijeo broj" + +msgid "Big (8 byte) integer" +msgstr "Big (8 bajtni) integer" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "IP adresa" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Bulova vrijednost (True, False ili None)" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Vrijeme" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Strani ključ (tip određen povezanim poljem)" + +msgid "One-to-one relationship" +msgstr "Jedan-na-jedan odnos" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Više-na-više odsnos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Ovo polje se mora popuniti." + +msgid "Enter a whole number." +msgstr "Unesite cijeo broj." + +msgid "Enter a valid date." +msgstr "Unesite ispravan datum." + +msgid "Enter a valid time." +msgstr "Unesite ispravno vrijeme" + +msgid "Enter a valid date/time." +msgstr "Unesite ispravan datum/vrijeme." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Fajl nije prebačen. Provjerite tip enkodiranja formulara." + +msgid "No file was submitted." +msgstr "Fajl nije prebačen." + +msgid "The submitted file is empty." +msgstr "Prebačen fajl je prazan." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Prebacite ispravan fajl. Fajl koji je prebačen ili nije slika, ili je " +"oštećen." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"%(value)s nije među ponuđenim vrijednostima. Odaberite jednu od ponuđenih." + +msgid "Enter a list of values." +msgstr "Unesite listu vrijednosti." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +msgid "Order" +msgstr "Redoslijed" + +msgid "Delete" +msgstr "Obriši" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ispravite dupli sadržaj za polja: %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Ispravite dupli sadržaj za polja: %(field)s, koji mora da bude jedinstven." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Ispravite dupli sadržaj za polja: %(field_name)s, koji mora da bude " +"jedinstven za %(lookup)s u %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Ispravite duple vrijednosti dole." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Odabrana vrijednost nije među ponuđenima. Odaberite jednu od ponuđenih." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Očisti" + +msgid "Currently" +msgstr "Trenutno" + +msgid "Change" +msgstr "Izmjeni" + +msgid "Unknown" +msgstr "Nepoznato" + +msgid "Yes" +msgstr "Da" + +msgid "No" +msgstr "Ne" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "da,ne,možda" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "po p." + +msgid "a.m." +msgstr "prije p." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "ponoć" + +msgid "noon" +msgstr "podne" + +msgid "Monday" +msgstr "ponedjeljak" + +msgid "Tuesday" +msgstr "utorak" + +msgid "Wednesday" +msgstr "srijeda" + +msgid "Thursday" +msgstr "četvrtak" + +msgid "Friday" +msgstr "petak" + +msgid "Saturday" +msgstr "subota" + +msgid "Sunday" +msgstr "nedjelja" + +msgid "Mon" +msgstr "pon." + +msgid "Tue" +msgstr "uto." + +msgid "Wed" +msgstr "sri." + +msgid "Thu" +msgstr "čet." + +msgid "Fri" +msgstr "pet." + +msgid "Sat" +msgstr "sub." + +msgid "Sun" +msgstr "ned." + +msgid "January" +msgstr "januar" + +msgid "February" +msgstr "februar" + +msgid "March" +msgstr "mart" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "maj" + +msgid "June" +msgstr "juni" + +msgid "July" +msgstr "juli" + +msgid "August" +msgstr "august" + +msgid "September" +msgstr "septembar" + +msgid "October" +msgstr "oktobar" + +msgid "November" +msgstr "novembar" + +msgid "December" +msgstr "decembar" + +msgid "jan" +msgstr "jan." + +msgid "feb" +msgstr "feb." + +msgid "mar" +msgstr "mar." + +msgid "apr" +msgstr "apr." + +msgid "may" +msgstr "maj." + +msgid "jun" +msgstr "jun." + +msgid "jul" +msgstr "jul." + +msgid "aug" +msgstr "aug." + +msgid "sep" +msgstr "sep." + +msgid "oct" +msgstr "okt." + +msgid "nov" +msgstr "nov." + +msgid "dec" +msgstr "dec." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mart" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Juni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "juli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "august" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "septembar" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "oktobar" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "novembar" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "decembar" + +msgctxt "alt. month" +msgid "January" +msgstr "januar" + +msgctxt "alt. month" +msgid "February" +msgstr "februar" + +msgctxt "alt. month" +msgid "March" +msgstr "mart" + +msgctxt "alt. month" +msgid "April" +msgstr "april" + +msgctxt "alt. month" +msgid "May" +msgstr "maj" + +msgctxt "alt. month" +msgid "June" +msgstr "juni" + +msgctxt "alt. month" +msgid "July" +msgstr "juli" + +msgctxt "alt. month" +msgid "August" +msgstr "august" + +msgctxt "alt. month" +msgid "September" +msgstr "septembar" + +msgctxt "alt. month" +msgid "October" +msgstr "oktobar" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembar" + +msgctxt "alt. month" +msgid "December" +msgstr "decembar" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "ili" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "Godina nije naznačena" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Mjesec nije naznačen" + +msgid "No day specified" +msgstr "Dan nije naznačen" + +msgid "No week specified" +msgstr "Sedmica nije naznačena" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bs/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/bs/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/bs/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3d7c90a47f71d92e2045df8268f817dce86f324 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFl&mAfJ&CX2WB3}} z`VxjKI}M1ZIe+^7=bR=ztkt@ZM7(`X<{uSF`Yho*fPhDl{6+|sh(rMav_dLWCNhNt z(kiLa8mZAbsZ+(1x{ac~)KpvbwL*UCEsD#MG=Zuh6&G+&mY{G4Mb%d=b$I}{d!X4} zg)|L>&2Zqj7Q&>7N7f0h%F4OX@lE80mSf}LaiIN62J(+i#~V5>4$oih7-oNDp>gP$ z&&WmCamh6vIuj4s#-H~tWwQA2j~wEDFPQKo;XS*?Oj@ERNDdpK^W1vQ?CGZS%TU?pKU%)8wJtIByGq K5Q5WbDBv47)^Y0q literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/bs/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/bs/formats.py new file mode 100644 index 0000000..a15e709 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/bs/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. N Y." +TIME_FORMAT = "G:i" +DATETIME_FORMAT = "j. N. Y. G:i T" +YEAR_MONTH_FORMAT = "F Y." +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "Y M j" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..208f4a4e00552da13602bc4474dcc8fa068b8cdc GIT binary patch literal 27707 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≧Zu#LyP}g#zkl@v*K~WP^CZUXLOe)Q5$eF?y)VjS9GUp{u z6)@rU$@fXWbRZeKfM=W=jdC}ObE7=fs>~@aX=Z?keRnXj8AL7T-KfQ~q82~F;bz<` z8sA3g5+&So(Uk@g6zPQ8f)qVVx^X4};!d6SMzwTxkIQMi8%Me4u_(xwB@qf%1>@LgL|&t4=xzv~D;USDt#p_ji$Vf_5N{PT zPq?8sl~}!?M&*o|2;Jp}f@qEyl69^@Hr7;OJsl(N<#Bdw%nkPKrpu#F=b1bnbGh7Q zvO$CuG@{AdwOD>&JZtiXRTxPv!LJf7K`-P_mR){8joNnfs=~cUF(`0)sVX#!QG6~~ zA?zwp2*eBP!9C1O8pfwe&?8dAx{_rRlQDuI>P1v`bK;I$+=%ninp8D&Y&148F%cE* zW5(7DqmbUs@6Bu{=~8ZIuelQ|6^AL}-W*Q5*vT+&## zNgNF^F%so3;}6QdC!StlQjGr9-|jr$ZO0QoW z+<8)34ZU#!SYF-YMp=;?r6#n^{L%2L#H8A=sv?^XGgoXSjt@*P4OjYZJ6n0&_!&B* zL*Zff!WHdyW;ta5YA@7uvTUADjiy59XNk3j<11*US8%PhU9d-QZWo_0;uvlVyI>Kr zqZZa-*V@@G?1sP%C&ALO!5NTS+n23pru59JIMX*BlFk_up#y)_yl26$IEPHG6rFuW zGKna|8ekggG2R1pnLD_5tjmtmpqF|DV&SS1M@*9AG@ZP|d1C5}avQl48;eON_LN#D z!ki8m%;M&1o29Eks|b528Ae?5M3{j&dhOXKhK(;~5tW`*WHU)_Hpd2UmQy$E$_tgn z{Ay~7@f&fMBgLJjdsE}Sm2*bx*}K!|xV5@NwM;>)XPY2bhk{1nly zy+jCoLT=2fB~O?P8yPXdNg^rsT1k$uGz2R{fgKfVf8;D;(bzYI$$RO?N>RGbxt4P? zvyh8#8-i^WSN5=oIjXZonO0`!c8=%0Yi8ymQ<|w_PBq6u)8uPUGJbyt6RsL}&$>&R z5J6F9%iX%W*5%_o-lopez%QelR0_va{@eWr5aef zy=Ofu#>V0}j!0eBf+w9=VykO4JL0kvuI1{DogVr*nf$Her!D~ub-@>{ zm;qnVp zZiX^4-DdJ$*3m3=(CQ6Z&nLm;M+_%g>wG`+MzNVRx3##1aya55>h+0TRJdP2Vdn~+ z7sJ+BS`-poJR1z7xd60=;~*^CzJ^TN)r>OA| zH9Qp(L^IcQm+{Y&TwyPg#D*m*%WmTpAX8R8%**D1zR9+dygE3^y`)i^$HRy!vWsf{ zI?5~&)frPqV0XN@qw^hYD(+gdkm;MMKWZ~ge#FdnLvw8PG3Bt1w7wO28_30CSPY)5 z{4Ul~og$gp0itd;sZo~WnmDYH19XLDG<$u(Qi9fxa5h`VL{r9sWt>{M0Ao_5z^E`P zp;hFW7U?8=F)z*TiNK6fAK2SenIUkhFoKQ!$(@lrP?NHOy4?Fd$aWJ$`v}ouq7r;y z`Uu%+Z3Aq|zS+XFusGRruE?Uf?{xit>vswt(Jd!;2aZ#-?4%h7Q+qxbQqqN)m`7Fa zrp*j8&Ku9u-eIh&y~UW#Ako7(kgk?Rgx@IY4;n|m(HZ-tGa7GCO|s+5}5BdN_Y*yb=5(j#<#{h>!KHNj_av_#M- zM@6Z0)NGU+{$x&-bTpm3TV9pc@y6@Wk2mF1*87PMEJP?yWqbk0K}%y{uG>$RuHZ1v6H zO8DGV-0Y}7LmP6f%z2%S5wuKV`>bS^Cfol`F(4ySG-t$mSJK9Ha;|LiuAF5gYN1)) zD4*OB&*E0e2A}*`b7hSiS9asWc4>^Dbq!`~VE1#5!vk2kLT%ZXUvp-L}C= Thcz4novyp&L6Y;Zb$kB}Jy~|{ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po new file mode 100644 index 0000000..01e4dda --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po @@ -0,0 +1,1340 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Antoni Aloy , 2012,2015-2017,2021-2022 +# Carles Barrobés , 2011-2012,2014,2020 +# duub qnnp, 2015 +# Emilio Carrion, 2022 +# Gil Obradors Via , 2019 +# Gil Obradors Via , 2019 +# Jannis Leidel , 2011 +# Manel Clos , 2020 +# Manuel Miranda , 2015 +# Mariusz Felisiak , 2021 +# Roger Pons , 2015 +# Santiago Lamora , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-17 05:23-0500\n" +"PO-Revision-Date: 2022-07-25 06:49+0000\n" +"Last-Translator: Emilio Carrion\n" +"Language-Team: Catalan (http://www.transifex.com/django/django/language/" +"ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikans" + +msgid "Arabic" +msgstr "àrab" + +msgid "Algerian Arabic" +msgstr "àrab argelià" + +msgid "Asturian" +msgstr "Asturià" + +msgid "Azerbaijani" +msgstr "azerbaijanès" + +msgid "Bulgarian" +msgstr "búlgar" + +msgid "Belarusian" +msgstr "Bielorús" + +msgid "Bengali" +msgstr "bengalí" + +msgid "Breton" +msgstr "Bretó" + +msgid "Bosnian" +msgstr "bosnià" + +msgid "Catalan" +msgstr "català" + +msgid "Czech" +msgstr "txec" + +msgid "Welsh" +msgstr "gal·lès" + +msgid "Danish" +msgstr "danès" + +msgid "German" +msgstr "alemany" + +msgid "Lower Sorbian" +msgstr "baix serbi" + +msgid "Greek" +msgstr "grec" + +msgid "English" +msgstr "anglès" + +msgid "Australian English" +msgstr "Anglès d'Austràlia" + +msgid "British English" +msgstr "anglès britànic" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "castellà" + +msgid "Argentinian Spanish" +msgstr "castellà d'Argentina" + +msgid "Colombian Spanish" +msgstr "castellà de Colombia" + +msgid "Mexican Spanish" +msgstr "castellà de Mèxic" + +msgid "Nicaraguan Spanish" +msgstr "castellà de Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "castellà de Veneçuela" + +msgid "Estonian" +msgstr "estonià" + +msgid "Basque" +msgstr "èuscar" + +msgid "Persian" +msgstr "persa" + +msgid "Finnish" +msgstr "finlandès" + +msgid "French" +msgstr "francès" + +msgid "Frisian" +msgstr "frisi" + +msgid "Irish" +msgstr "irlandès" + +msgid "Scottish Gaelic" +msgstr "Gaèlic escocès" + +msgid "Galician" +msgstr "gallec" + +msgid "Hebrew" +msgstr "hebreu" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "croat" + +msgid "Upper Sorbian" +msgstr "alt serbi" + +msgid "Hungarian" +msgstr "hongarès" + +msgid "Armenian" +msgstr "Armeni" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "indonesi" + +msgid "Igbo" +msgstr "lgbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "islandès" + +msgid "Italian" +msgstr "italià" + +msgid "Japanese" +msgstr "japonès" + +msgid "Georgian" +msgstr "georgià" + +msgid "Kabyle" +msgstr "Cabilenc" + +msgid "Kazakh" +msgstr "Kazakh" + +msgid "Khmer" +msgstr "khmer" + +msgid "Kannada" +msgstr "kannarès" + +msgid "Korean" +msgstr "coreà" + +msgid "Kyrgyz" +msgstr "Kyrgyz" + +msgid "Luxembourgish" +msgstr "Luxemburguès" + +msgid "Lithuanian" +msgstr "lituà" + +msgid "Latvian" +msgstr "letó" + +msgid "Macedonian" +msgstr "macedoni" + +msgid "Malayalam" +msgstr "malaiàlam " + +msgid "Mongolian" +msgstr "mongol" + +msgid "Marathi" +msgstr "Maratí" + +msgid "Malay" +msgstr "Malai" + +msgid "Burmese" +msgstr "Burmès" + +msgid "Norwegian Bokmål" +msgstr "Bokmål noruec" + +msgid "Nepali" +msgstr "nepalès" + +msgid "Dutch" +msgstr "holandès" + +msgid "Norwegian Nynorsk" +msgstr "noruec nynorsk" + +msgid "Ossetic" +msgstr "ossètic" + +msgid "Punjabi" +msgstr "panjabi" + +msgid "Polish" +msgstr "polonès" + +msgid "Portuguese" +msgstr "portuguès" + +msgid "Brazilian Portuguese" +msgstr "portuguès de brasil" + +msgid "Romanian" +msgstr "romanès" + +msgid "Russian" +msgstr "rus" + +msgid "Slovak" +msgstr "eslovac" + +msgid "Slovenian" +msgstr "eslovè" + +msgid "Albanian" +msgstr "albanès" + +msgid "Serbian" +msgstr "serbi" + +msgid "Serbian Latin" +msgstr "serbi llatí" + +msgid "Swedish" +msgstr "suec" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "tàmil" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "Tajik" + +msgid "Thai" +msgstr "tailandès" + +msgid "Turkmen" +msgstr "Turkmen" + +msgid "Turkish" +msgstr "turc" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "ucraïnès" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "Uzbek" + +msgid "Vietnamese" +msgstr "vietnamita" + +msgid "Simplified Chinese" +msgstr "xinès simplificat" + +msgid "Traditional Chinese" +msgstr "xinès tradicional" + +msgid "Messages" +msgstr "Missatges" + +msgid "Site Maps" +msgstr "Mapes del lloc" + +msgid "Static Files" +msgstr "Arxius estàtics" + +msgid "Syndication" +msgstr "Sindicació" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Aquest número de plana no és un enter" + +msgid "That page number is less than 1" +msgstr "El nombre de plana és inferior a 1" + +msgid "That page contains no results" +msgstr "La plana no conté cap resultat" + +msgid "Enter a valid value." +msgstr "Introduïu un valor vàlid." + +msgid "Enter a valid URL." +msgstr "Introduïu una URL vàlida." + +msgid "Enter a valid integer." +msgstr "Introduïu un enter vàlid." + +msgid "Enter a valid email address." +msgstr "Introdueix una adreça de correu electrònic vàlida" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Introduïu un 'slug' vàlid, consistent en lletres, números, guions o guions " +"baixos." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Introduïu un 'slug' vàlid format per lletres Unicode, números, guions o " +"guions baixos." + +msgid "Enter a valid IPv4 address." +msgstr "Introduïu una adreça IPv4 vàlida." + +msgid "Enter a valid IPv6 address." +msgstr "Entreu una adreça IPv6 vàlida." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Entreu una adreça IPv4 o IPv6 vàlida." + +msgid "Enter only digits separated by commas." +msgstr "Introduïu només dígits separats per comes." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Assegureu-vos que aquest valor sigui %(limit_value)s (és %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Assegureu-vos que aquest valor sigui menor o igual que %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Assegureu-vos que aquest valor sigui més gran o igual que %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +" \n" +"Asseguri's que aquest valor sigui un múltiple de %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assegureu-vos que aquest valor té almenys %(limit_value)d caràcter (en té " +"%(show_value)d)." +msgstr[1] "" +"Assegureu-vos que el valor tingui almenys %(limit_value)d caràcters (en té " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assegureu-vos que aquest valor té com a molt %(limit_value)d caràcter (en té " +"%(show_value)d)." +msgstr[1] "" +"Assegureu-vos que aquest valor tingui com a molt %(limit_value)d caràcters " +"(en té %(show_value)d)." + +msgid "Enter a number." +msgstr "Introduïu un número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Assegureu-vos que no hi ha més de %(max)s dígit en total." +msgstr[1] "Assegureu-vos que no hi hagi més de %(max)s dígits en total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Assegureu-vos que no hi ha més de %(max)s decimal." +msgstr[1] "Assegureu-vos que no hi hagi més de %(max)s decimals." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Assegureu-vos que no hi ha més de %(max)s dígit abans de la coma decimal." +msgstr[1] "" +"Assegureu-vos que no hi hagi més de %(max)s dígits abans de la coma decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"L'extensió d'arxiu “%(extension)s” no està permesa. Les extensions permeses " +"són: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "No es permeten caràcters nuls." + +msgid "and" +msgstr "i" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Ja existeix %(model_name)s amb aquest %(field_labels)s." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "La restricció %(name)s no es compleix." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "El valor %(value)r no és una opció vàlida." + +msgid "This field cannot be null." +msgstr "Aquest camp no pot ser nul." + +msgid "This field cannot be blank." +msgstr "Aquest camp no pot estar en blanc." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Ja existeix %(model_name)s amb aquest %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s ha de ser únic per a %(date_field_label)s i %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Camp del tipus: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "El valor '%(value)s' ha de ser \"True\" o \"False\"." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "El valor '%(value)s' ha de ser cert, fals o buid." + +msgid "Boolean (Either True or False)" +msgstr "Booleà (Cert o Fals)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadena (de fins a %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Enters separats per comes" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"El valor '%(value)s' no té un format de data vàlid. Ha de tenir el format " +"YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"El valor '%(value)s' té el format correcte (YYYY-MM-DD) però no és una data " +"vàlida." + +msgid "Date (without time)" +msgstr "Data (sense hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"El valor '%(value)s' no té un format vàlid. Ha de tenir el format YYYY-MM-DD " +"HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"El valor '%(value)s' té el format correcte (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) però no és una data/hora vàlida." + +msgid "Date (with time)" +msgstr "Data (amb hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "El valor '%(value)s' ha de ser un nombre decimal." + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"'El valor %(value)s' té un format invàlid. Ha d'estar en el format [DD] [HH:" +"[MM:]]ss[.uuuuuu] ." + +msgid "Duration" +msgstr "Durada" + +msgid "Email address" +msgstr "Adreça de correu electrònic" + +msgid "File path" +msgstr "Ruta del fitxer" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "El valor '%(value)s' ha de ser un número decimal." + +msgid "Floating point number" +msgstr "Número de coma flotant" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "El valor '%(value)s' ha de ser un nombre enter." + +msgid "Integer" +msgstr "Enter" + +msgid "Big (8 byte) integer" +msgstr "Enter gran (8 bytes)" + +msgid "Small integer" +msgstr "Enter petit" + +msgid "IPv4 address" +msgstr "Adreça IPv4" + +msgid "IP address" +msgstr "Adreça IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "El valor '%(value)s' ha de ser None, True o False." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleà (Cert, Fals o Cap ('None'))" + +msgid "Positive big integer" +msgstr "Enter gran positiu" + +msgid "Positive integer" +msgstr "Enter positiu" + +msgid "Positive small integer" +msgstr "Enter petit positiu" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (fins a %(max_length)s)" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"El valor '%(value)s' no té un format vàlid. Ha de tenir el format HH:MM[:ss[." +"uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"El valor '%(value)s' té el format correcte (HH:MM[:ss[.uuuuuu]]) però no és " +"una hora vàlida." + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Dades binàries" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "'%(value)s' no és un UUID vàlid." + +msgid "Universally unique identifier" +msgstr "Identificador únic universal" + +msgid "File" +msgstr "Arxiu" + +msgid "Image" +msgstr "Imatge" + +msgid "A JSON object" +msgstr "Un objecte JSON" + +msgid "Value must be valid JSON." +msgstr "El valor ha de ser JSON vàlid." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "La instància de %(model)s amb %(field)s %(value)r no existeix." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clau forana (tipus determinat pel camp relacionat)" + +msgid "One-to-one relationship" +msgstr "Relació un-a-un" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "relació %(from)s-%(to)s " + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "relacions %(from)s-%(to)s " + +msgid "Many-to-many relationship" +msgstr "Relació molts-a-molts" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Aquest camp és obligatori." + +msgid "Enter a whole number." +msgstr "Introduïu un número enter." + +msgid "Enter a valid date." +msgstr "Introduïu una data vàlida." + +msgid "Enter a valid time." +msgstr "Introduïu una hora vàlida." + +msgid "Enter a valid date/time." +msgstr "Introduïu una data/hora vàlides." + +msgid "Enter a valid duration." +msgstr "Introduïu una durada vàlida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "El número de dies ha de ser entre {min_days} i {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"No s'ha enviat cap fitxer. Comproveu el tipus de codificació del formulari." + +msgid "No file was submitted." +msgstr "No s'ha enviat cap fitxer." + +msgid "The submitted file is empty." +msgstr "El fitxer enviat està buit." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Aquest nom d'arxiu hauria de tenir com a molt %(max)d caràcter (en té " +"%(length)d)." +msgstr[1] "" +"Aquest nom d'arxiu hauria de tenir com a molt %(max)d caràcters (en té " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Si us plau, envieu un fitxer o marqueu la casella de selecció \"netejar\", " +"no ambdós." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Carregueu una imatge vàlida. El fitxer que heu carregat no era una imatge o " +"estava corrupte." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Esculliu una opció vàlida. %(value)s no és una de les opcions vàlides." + +msgid "Enter a list of values." +msgstr "Introduïu una llista de valors." + +msgid "Enter a complete value." +msgstr "Introduïu un valor complet." + +msgid "Enter a valid UUID." +msgstr "Intruduïu un UUID vàlid." + +msgid "Enter a valid JSON." +msgstr "Introduïu un JSON vàlid." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Camp ocult %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Les dades de ManagementForm no hi són o han estat modificades. Camps que " +"falten: %(field_names)s. . Necessitaràs omplir una incidència si el problema " +"persisteix." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Enviau com a màxim %(num)d formulari, si us plau." +msgstr[1] "Enviau com a màxim %(num)d formularis, si us plau." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Enviau com a mínim %(num)d formulari, si us plau." +msgstr[1] "Enviau com a mínim %(num)d formularis, si us plau." + +msgid "Order" +msgstr "Ordre" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Si us plau, corregiu la dada duplicada per a %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Si us plau, corregiu la dada duplicada per a %(field)s, la qual ha de ser " +"única." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Si us plau, corregiu la dada duplicada per a %(field_name)s, la qual ha de " +"ser única per a %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Si us plau, corregiu els valors duplicats a sota." + +msgid "The inline value did not match the parent instance." +msgstr "El valor en línia no coincideix amb la instància mare ." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Esculliu una opció vàlida. La opció triada no és una de les opcions " +"disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" no és un valor vàlid" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"No s'ha pogut interpretar %(datetime)s a la zona horària " +"%(current_timezone)s; potser és ambigua o no existeix." + +msgid "Clear" +msgstr "Netejar" + +msgid "Currently" +msgstr "Actualment" + +msgid "Change" +msgstr "Modificar" + +msgid "Unknown" +msgstr "Desconegut" + +msgid "Yes" +msgstr "Sí" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "sí,no,potser" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "mitjanit" + +msgid "noon" +msgstr "migdia" + +msgid "Monday" +msgstr "Dilluns" + +msgid "Tuesday" +msgstr "Dimarts" + +msgid "Wednesday" +msgstr "Dimecres" + +msgid "Thursday" +msgstr "Dijous" + +msgid "Friday" +msgstr "Divendres" + +msgid "Saturday" +msgstr "Dissabte" + +msgid "Sunday" +msgstr "Diumenge" + +msgid "Mon" +msgstr "dl." + +msgid "Tue" +msgstr "dt." + +msgid "Wed" +msgstr "dc." + +msgid "Thu" +msgstr "dj." + +msgid "Fri" +msgstr "dv." + +msgid "Sat" +msgstr "ds." + +msgid "Sun" +msgstr "dg." + +msgid "January" +msgstr "gener" + +msgid "February" +msgstr "febrer" + +msgid "March" +msgstr "març" + +msgid "April" +msgstr "abril" + +msgid "May" +msgstr "maig" + +msgid "June" +msgstr "juny" + +msgid "July" +msgstr "juliol" + +msgid "August" +msgstr "agost" + +msgid "September" +msgstr "setembre" + +msgid "October" +msgstr "octubre" + +msgid "November" +msgstr "novembre" + +msgid "December" +msgstr "desembre" + +msgid "jan" +msgstr "gen." + +msgid "feb" +msgstr "feb." + +msgid "mar" +msgstr "març" + +msgid "apr" +msgstr "abr." + +msgid "may" +msgstr "maig" + +msgid "jun" +msgstr "juny" + +msgid "jul" +msgstr "jul." + +msgid "aug" +msgstr "ago." + +msgid "sep" +msgstr "set." + +msgid "oct" +msgstr "oct." + +msgid "nov" +msgstr "nov." + +msgid "dec" +msgstr "des." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Gen." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Març" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maig" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Juny" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Jul." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Set." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Des." + +msgctxt "alt. month" +msgid "January" +msgstr "gener" + +msgctxt "alt. month" +msgid "February" +msgstr "febrer" + +msgctxt "alt. month" +msgid "March" +msgstr "març" + +msgctxt "alt. month" +msgid "April" +msgstr "abril" + +msgctxt "alt. month" +msgid "May" +msgstr "maig" + +msgctxt "alt. month" +msgid "June" +msgstr "juny" + +msgctxt "alt. month" +msgid "July" +msgstr "juliol" + +msgctxt "alt. month" +msgid "August" +msgstr "agost" + +msgctxt "alt. month" +msgid "September" +msgstr "setembre" + +msgctxt "alt. month" +msgid "October" +msgstr "octubre" + +msgctxt "alt. month" +msgid "November" +msgstr "novembre" + +msgctxt "alt. month" +msgid "December" +msgstr "desembre" + +msgid "This is not a valid IPv6 address." +msgstr "Aquesta no és una adreça IPv6 vàlida." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d any" +msgstr[1] "%(num)d anys" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mes" +msgstr[1] "%(num)d mesos" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d setmana" +msgstr[1] "%(num)d setmanes" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dia" +msgstr[1] "%(num)d dies" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hora" +msgstr[1] "%(num)d hores" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minut" +msgstr[1] "%(num)d minuts" + +msgid "Forbidden" +msgstr "Prohibit" + +msgid "CSRF verification failed. Request aborted." +msgstr "La verificació de CSRF ha fallat. Petició abortada." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Esteu veient aquest missatge perquè aquest lloc HTTPS requereix que el " +"vostre navegador enviï una capçalera “Referer\", i no n'ha arribada cap. " +"Aquesta capçalera es requereix per motius de seguretat, per garantir que el " +"vostre navegador no està sent segrestat per tercers." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Si heu configurat el vostre navegador per deshabilitar capçaleres “Referer" +"\", sisplau torneu-les a habilitar, com a mínim per a aquest lloc, o per a " +"connexions HTTPs, o per a peticions amb el mateix orígen." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Si utilitzeu l'etiqueta o " +"incloeu la capçalera “Referer-Policy: no-referrer\" , si us plau elimineu-" +"la. La protecció CSRF requereix la capçalera “Referer\" per a fer una " +"comprovació estricta. Si esteu preocupats quant a la privacitat, utilitzeu " +"alternatives com per enllaços a aplicacions de " +"tercers." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Estàs veient aquest missatge perquè aquest lloc requereix una galeta CSRF " +"quan s'envien formularis. Aquesta galeta es requereix per motius de " +"seguretat, per garantir que el teu navegador no està sent infiltrat per " +"tercers." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Si has configurat el teu navegador per deshabilitar galetes, sisplau torna-" +"les a habilitar, com a mínim per a aquest lloc, o per a peticions amb el " +"mateix orígen." + +msgid "More information is available with DEBUG=True." +msgstr "Més informació disponible amb DEBUG=True." + +msgid "No year specified" +msgstr "No s'ha especificat any" + +msgid "Date out of range" +msgstr "Data fora de rang" + +msgid "No month specified" +msgstr "No s'ha especificat mes" + +msgid "No day specified" +msgstr "No s'ha especificat dia" + +msgid "No week specified" +msgstr "No s'ha especificat setmana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Cap %(verbose_name_plural)s disponible" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Futurs %(verbose_name_plural)s no disponibles perquè %(class_name)s." +"allow_future és Fals." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Cadena invàlida de data '%(datestr)s' donat el format '%(format)s'" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No s'ha trobat cap %(verbose_name)s que coincideixi amb la petició" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "La pàgina no és 'last', ni es pot convertir en un enter" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Pàgina invàlida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Llista buida i '%(class_name)s.allow_empty' és Fals." + +msgid "Directory indexes are not allowed here." +msgstr "Aquí no es permeten índex de directori." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" no existeix" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índex de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "La instal·lació ha estat un èxit! Enhorabona!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Visualitza notes de llançament per Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Esteu veient aquesta pàgina perquè el paràmetre DEBUG=Trueconsta al fitxer de configuració i no teniu cap " +"URL configurada." + +msgid "Django Documentation" +msgstr "Documentació de Django" + +msgid "Topics, references, & how-to’s" +msgstr "Temes, referències, & Com es fa" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: Una aplicació enquesta" + +msgid "Get started with Django" +msgstr "Primers passos amb Django" + +msgid "Django Community" +msgstr "Comunitat Django" + +msgid "Connect, get help, or contribute" +msgstr "Connecta, obté ajuda, o col·labora" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ca/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ca/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ca/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3e797a96d832cb4ce64979ace70eba7cd9ca0d9e GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF)?PU*q8eQG?Srty(Jpf`7DbYDFpWej_`tH_S(PfSaf9o%&^ z{gCwQohBG~s%-hXX*jdJ;o1L8k-a?`*fY~|{ASe`M|4tdqFHvW^n7#Te^%8`_;P2{ zjJfMP*0b@;!!b_zKvAzWUB32hbuL@7V_NvqnVGIF8%l%q4OjoDTK?2B-MMB=e^P6< zy813WgjZwY=FvJQ-=d_*h?0eyG+GroiKDy-GJhRxl9ToI@(anAMfCPI2)_oEioi{< ziZdz9RtqV~!XSyHFpw76It_|^bi2Ld-lZ9AlIVT?3-Z@hU>F89JI&IF`O7g3#~=>< E1H1ObYybcN literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ca/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ca/formats.py new file mode 100644 index 0000000..e616299 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ca/formats.py @@ -0,0 +1,30 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = r"j E \d\e Y" +TIME_FORMAT = "G:i" +DATETIME_FORMAT = r"j E \d\e Y \a \l\e\s G:i" +YEAR_MONTH_FORMAT = r"F \d\e\l Y" +MONTH_DAY_FORMAT = r"j E" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y G:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '31/12/2009' + "%d/%m/%y", # '31/12/09' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", + "%d/%m/%Y %H:%M:%S.%f", + "%d/%m/%Y %H:%M", + "%d/%m/%y %H:%M:%S", + "%d/%m/%y %H:%M:%S.%f", + "%d/%m/%y %H:%M", +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..39b9108995e92abf37d8b675a427e782be82ee05 GIT binary patch literal 34015 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.po new file mode 100644 index 0000000..1caebbc --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ckb/LC_MESSAGES/django.po @@ -0,0 +1,1332 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Bawar Jalal, 2021 +# Bawar Jalal, 2020-2021 +# Bawar Jalal, 2020 +# Kosar Tofiq Saeed , 2020-2021 +# Swara , 2022-2024 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Swara , 2022-2024\n" +"Language-Team: Central Kurdish (http://app.transifex.com/django/django/" +"language/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "ئەفریقی" + +msgid "Arabic" +msgstr "عەرەبی" + +msgid "Algerian Arabic" +msgstr "عەرەبیی جەزائیری" + +msgid "Asturian" +msgstr "ئاستوری" + +msgid "Azerbaijani" +msgstr "ئازەربایجانی" + +msgid "Bulgarian" +msgstr "بولگاری" + +msgid "Belarusian" +msgstr "بیلاڕوسی" + +msgid "Bengali" +msgstr "بەنگالی" + +msgid "Breton" +msgstr "بریتۆنی" + +msgid "Bosnian" +msgstr "بۆسنێیی" + +msgid "Catalan" +msgstr "کاتالانی" + +msgid "Central Kurdish (Sorani)" +msgstr "کوردی" + +msgid "Czech" +msgstr "چیکی" + +msgid "Welsh" +msgstr "وێڵزی" + +msgid "Danish" +msgstr "دانیمارکی" + +msgid "German" +msgstr "ئەڵمانی" + +msgid "Lower Sorbian" +msgstr "سۆربیانی خواروو" + +msgid "Greek" +msgstr "یۆنانی" + +msgid "English" +msgstr "ئینگلیزی" + +msgid "Australian English" +msgstr "ئینگلیزی ئوستورالی" + +msgid "British English" +msgstr "ئینگلیزی بەریتانی" + +msgid "Esperanto" +msgstr "ئێسپەرانتەویی" + +msgid "Spanish" +msgstr "ئیسپانی" + +msgid "Argentinian Spanish" +msgstr "ئیسپانیی ئەرجەنتینی" + +msgid "Colombian Spanish" +msgstr "ئیسپانیی کۆڵۆمبی" + +msgid "Mexican Spanish" +msgstr "ئیسپانیی مەکسیکی" + +msgid "Nicaraguan Spanish" +msgstr "ئیسپانیی نیکاراگوایی" + +msgid "Venezuelan Spanish" +msgstr "ئیسپانیی فەنزوێلایی" + +msgid "Estonian" +msgstr "ئیستۆنی" + +msgid "Basque" +msgstr "باسکۆیی" + +msgid "Persian" +msgstr "فارسی" + +msgid "Finnish" +msgstr "فینلەندی" + +msgid "French" +msgstr "فەڕەنسی" + +msgid "Frisian" +msgstr "فریسی" + +msgid "Irish" +msgstr "ئیرلەندی" + +msgid "Scottish Gaelic" +msgstr "گالیکی سکۆتلەندی" + +msgid "Galician" +msgstr "گالیسیایی" + +msgid "Hebrew" +msgstr "ئیسرائیلی" + +msgid "Hindi" +msgstr "هیندی" + +msgid "Croatian" +msgstr "کڕواتی" + +msgid "Upper Sorbian" +msgstr "سڕبی سەروو" + +msgid "Hungarian" +msgstr "هەنگاری" + +msgid "Armenian" +msgstr "ئەرمەنی" + +msgid "Interlingua" +msgstr "ئینتەرلینگوایی" + +msgid "Indonesian" +msgstr "ئیندۆنیزی" + +msgid "Igbo" +msgstr "ئیگبۆیی" + +msgid "Ido" +msgstr "ئیدۆیی" + +msgid "Icelandic" +msgstr "ئایسلەندی" + +msgid "Italian" +msgstr "ئیتاڵی" + +msgid "Japanese" +msgstr "یابانی" + +msgid "Georgian" +msgstr "جۆرجی" + +msgid "Kabyle" +msgstr "کابایلی" + +msgid "Kazakh" +msgstr "کازاخی" + +msgid "Khmer" +msgstr "خەمیری" + +msgid "Kannada" +msgstr "کانێدایی" + +msgid "Korean" +msgstr "کۆری" + +msgid "Kyrgyz" +msgstr "کیرگزستانی" + +msgid "Luxembourgish" +msgstr "لۆکسەمبۆرگی" + +msgid "Lithuanian" +msgstr "لیتوانی" + +msgid "Latvian" +msgstr "لاتیڤی" + +msgid "Macedonian" +msgstr "مەسەدۆنی" + +msgid "Malayalam" +msgstr "مەلایالامی" + +msgid "Mongolian" +msgstr "مەنگۆلی" + +msgid "Marathi" +msgstr "ماراسی" + +msgid "Malay" +msgstr "مالایی" + +msgid "Burmese" +msgstr "بورمایی" + +msgid "Norwegian Bokmål" +msgstr "بۆکامۆلی نەرویجی" + +msgid "Nepali" +msgstr "نیپاڵی" + +msgid "Dutch" +msgstr "هۆڵەندی" + +msgid "Norwegian Nynorsk" +msgstr "نینۆرسکی نەرویجی" + +msgid "Ossetic" +msgstr "ئۆسیتی" + +msgid "Punjabi" +msgstr "پونجابی" + +msgid "Polish" +msgstr "پۆڵۆنی" + +msgid "Portuguese" +msgstr "پورتوگالی" + +msgid "Brazilian Portuguese" +msgstr "پورتوگالیی بەڕازیلی" + +msgid "Romanian" +msgstr "ڕۆمانیایی" + +msgid "Russian" +msgstr "ڕووسی" + +msgid "Slovak" +msgstr "سلۆڤاکی" + +msgid "Slovenian" +msgstr "سلۆڤینیایی" + +msgid "Albanian" +msgstr "ئەلبانی" + +msgid "Serbian" +msgstr "سڕبی" + +msgid "Serbian Latin" +msgstr "سڕبیی لاتین" + +msgid "Swedish" +msgstr "سویدی" + +msgid "Swahili" +msgstr "سواهیلی" + +msgid "Tamil" +msgstr "تامیلی" + +msgid "Telugu" +msgstr "تێلوگویی" + +msgid "Tajik" +msgstr "تاجیکی" + +msgid "Thai" +msgstr "تایلاندی" + +msgid "Turkmen" +msgstr "تورکمانی" + +msgid "Turkish" +msgstr "تورکی" + +msgid "Tatar" +msgstr "تاتاری" + +msgid "Udmurt" +msgstr "ئودمورتی" + +msgid "Uyghur" +msgstr "ئۆیغور" + +msgid "Ukrainian" +msgstr "ئۆکرانی" + +msgid "Urdu" +msgstr "ئوردویی" + +msgid "Uzbek" +msgstr "ئۆزبەکی" + +msgid "Vietnamese" +msgstr "ڤێتنامی" + +msgid "Simplified Chinese" +msgstr "چینی سادەکراو" + +msgid "Traditional Chinese" +msgstr "چینی کلاسیکی" + +msgid "Messages" +msgstr "پەیامەکان" + +msgid "Site Maps" +msgstr "نەخشەکانی پێگە" + +msgid "Static Files" +msgstr "فایلە نەگۆڕەکان" + +msgid "Syndication" +msgstr "هاوبەشکردن" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "ئەو ژمارەی پەڕەیە ژمارەی تەواو نییە" + +msgid "That page number is less than 1" +msgstr "ئەو ژمارەی پەڕەیە لە 1 کەمترە" + +msgid "That page contains no results" +msgstr "ئەو پەڕەیە هیچ ئەنجامێکی تێدا نییە" + +msgid "Enter a valid value." +msgstr "نرخێکی دروست لەناودابنێ." + +msgid "Enter a valid domain name." +msgstr "پاوەن/دۆمەینی دروست بنوسە." + +msgid "Enter a valid URL." +msgstr "URL ی دروست لەناودابنێ." + +msgid "Enter a valid integer." +msgstr "ژمارەیەکی تەواو لەناودابنێ" + +msgid "Enter a valid email address." +msgstr "ناونیشانێکی ئیمەیڵی دروست لەناودابنێ" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "\"سلەگ\"ێکی دروست بنوسە کە پێکهاتووە لە پیت، ژمارە، ژێرهێڵ یان هێڵ." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"\"سلەگ\"ێکی دروست بنوسە کە پێکهاتووە لە پیتی یونیکۆد، ژمارە، هێڵی ژێرەوە، " +"یان هێما." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "ناونیشانی %(protocol)s دروست بنوسە." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 یان IPv6" + +msgid "Enter only digits separated by commas." +msgstr "تەنها ژمارە لەناودابنێ بە فاریزە جیاکرابێتەوە." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "دڵنیاببە ئەم نرخە %(limit_value)sە (ئەوە %(show_value)sە). " + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "دڵنیاببە ئەم نرخە کەمترە یاخود یەکسانە بە %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "دڵنیاببە ئەم نرخە گەورەترە یاخود یەکسانە بە %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "دڵنیابە کە ئەم بەهایە چەندانێکە لە قەبارەی هەنگاوی%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"دڵنیابە ئەم بەهایە چەند هێندەیەکی قەبارەی هەنگاوەکانە %(limit_value)s, " +"دەستپێدەکات لە %(offset)s، بۆ نموونە %(offset)s، %(valid_value1)s، " +"%(valid_value2)s، هتد." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"دڵنیابە ئەم بەهایە لانیکەم %(limit_value)d نوسەی هەیە (%(show_value)d هەیە)." +msgstr[1] "" +"دڵنیابە ئەم بەهایە لانیکەم %(limit_value)d نوسەی هەیە (%(show_value)d هەیە)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"دڵنیابە ئەم بەهایە لانی زۆر %(limit_value)d نوسەی هەیە (%(show_value)d هەیە)." +msgstr[1] "" +"دڵنیابە ئەم بەهایە لانی زۆر %(limit_value)d نوسەی هەیە (%(show_value)d هەیە)." + +msgid "Enter a number." +msgstr "ژمارەیەک بنوسە." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "دڵنیابە لەوەی بەگشتی زیاتر لە %(max)s ژمارە نیە." +msgstr[1] "دڵنیابە لەوەی بەگشتی زیاتر لە %(max)s ژمارە نیە." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "دڵنیابە لەوەی بەگشتی زیاتر لە %(max)s ژمارەی دەیی نیە." +msgstr[1] "دڵنیابە لەوەی بەگشتی زیاتر لە %(max)s ژمارەی دەیی نیە." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "دڵنیابە لەوەی زیاتر نیە لە %(max)s ژمارە پێش خاڵی ژمارەی دەیی." +msgstr[1] "دڵنیابە لەوەی زیاتر نیە لە %(max)s ژمارە پێش خاڵی ژمارەی دەیی." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"پەڕگەپاشبەندی “%(extension)s” ڕێگەپێنەدراوە. پاشبنەدە ڕێگەپێدراوەکان: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "نوسەی بەتاڵ ڕێگەپێنەدراوە." + +msgid "and" +msgstr "و" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s لەگەڵ %(field_labels)s پێشتر تۆمارکراوە." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "سنوردارکردنی “%(name)s” پێشێلکراوە." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "بەهای %(value)r هەڵبژاردەیەکی دروست نیە." + +msgid "This field cannot be null." +msgstr "ئەم خانەیە نابێت پووچ بێت." + +msgid "This field cannot be blank." +msgstr "ئەم خانەیە نابێت بەتاڵ بێت." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s لەگەڵ %(field_label)s پێشتر تۆمارکراوە." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s دەبێت بێهاوتا بێت بۆ %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "خانە لە جۆری: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "بەهای “%(value)s” دەبێت دروست یان چەوت بێت." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "بەهای “%(value)s” دەبێت یان دروست، یان چەوت یان هیچ بێت." + +msgid "Boolean (Either True or False)" +msgstr "بولی (یان دروست یان چەوت)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "ڕیزبەند (تا %(max_length)s)" + +msgid "String (unlimited)" +msgstr "ڕیز(بێسنوور)" + +msgid "Comma-separated integers" +msgstr "ژمارە تەواوەکان بە کۆما جیاکراونەتەوە" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"بەهای “%(value)s” شێوازی بەروارێکی نادروستی هەیە. دەبێت بەشێوازی YYYY-MM-DD " +"بێت." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"بەهای “%(value)s” شێوازێکی تەواوی هەیە (YYYY-MM-DD) بەڵام بەروارێکی هەڵەیە." + +msgid "Date (without time)" +msgstr "بەروار (بەبێ کات)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"بەهای “%(value)s” شێوازێکی نادروستی هەیە. دەبێت بەشێوەی YYYY-MM-DD HH:MM[:" +"ss[.uuuuuu]][TZ] بێت." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"بەهای “%(value)s” شێوازێکی دروستی هەیە (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) " +"بەروار/کاتێکی نادروستە." + +msgid "Date (with time)" +msgstr "بەروار (لەگەڵ کات)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "بەهای “%(value)s” دەبێت ژمارەیەکی دەیی بێت." + +msgid "Decimal number" +msgstr "ژمارەی دەیی" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"بەهای “%(value)s” شێوازێکی هەڵەی هەیە. دەبێت بەشێوەی [DD] [[HH:]MM:]ss[." +"uuuuuu] format بێت." + +msgid "Duration" +msgstr "ماوە" + +msgid "Email address" +msgstr "ناونیشانی ئیمەیڵ" + +msgid "File path" +msgstr "ڕێڕەوی پەڕگە" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "بەهای “%(value)s” دەبێت ژمارەی کەرتی بێت." + +msgid "Floating point number" +msgstr "خاڵی ژمارەی کەرتی" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "بەهای “%(value)s” دەبێت ژمارەی تەواو بێت." + +msgid "Integer" +msgstr "ژمارەی تەواو" + +msgid "Big (8 byte) integer" +msgstr "(8بایت) ژمارەی تەواوی گەورە" + +msgid "Small integer" +msgstr "ژمارەی تەواوی بچوک" + +msgid "IPv4 address" +msgstr "ناونیشانی IPv4" + +msgid "IP address" +msgstr "ناونیشانی ئای پی" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "بەهای “%(value)s” دەبێت یان هیچ، یان دروست یان چەوت بێت." + +msgid "Boolean (Either True, False or None)" +msgstr "بولی (یان دروست یان چەوت یان هیچ)" + +msgid "Positive big integer" +msgstr "ژمارەی تەواوی گەورەی ئەرێنی" + +msgid "Positive integer" +msgstr "ژمارەی تەواوی ئەرێنی" + +msgid "Positive small integer" +msgstr "ژمارەی تەواوی بچوکی ئەرێنی" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "سلەگ (تا %(max_length)s)" + +msgid "Text" +msgstr "نوسین" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"بەهای “%(value)s” شێوازێکی هەڵەی هەیە. دەبێت بەشێوەی HH:MM[:ss[.uuuuuu]] بێت." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” بەهاکە شێوازێکی دروستی هەیە (HH:MM[:ss[.uuuuuu]]) بەڵام کاتێکی " +"نادروستە." + +msgid "Time" +msgstr "کات" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "داتای دووانەیی خاو" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s ” UUIDێکی دروستی نیە." + +msgid "Universally unique identifier" +msgstr "ناسێنەرێکی بێهاوتای گشتگیر" + +msgid "File" +msgstr "پەڕگە" + +msgid "Image" +msgstr "وێنە" + +msgid "A JSON object" +msgstr "ئۆبجێکتێکی JSON" + +msgid "Value must be valid JSON." +msgstr "بەها پێویستە JSONی دروست بێت." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s هاوشێوەیە لەگەڵ %(field)s %(value)r نیە." + +msgid "Foreign Key (type determined by related field)" +msgstr "کلیلی دەرەکی(جۆر بەپێی خانەی پەیوەندیدار دیاری دەکرێت)" + +msgid "One-to-one relationship" +msgstr "پەیوەندیی یەک-بۆ-یەک" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s پەیوەندی" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s پەیوەندییەکان" + +msgid "Many-to-many relationship" +msgstr "پەیوەندیی گشت-بۆ-گشت" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":؟.!" + +msgid "This field is required." +msgstr "ئەم خانەیە داواکراوە." + +msgid "Enter a whole number." +msgstr "ژمارەیەکی تەواو بنوسە." + +msgid "Enter a valid date." +msgstr "بەرواری دروست بنوسە." + +msgid "Enter a valid time." +msgstr "تکایە کاتێکی ڕاست بنووسە." + +msgid "Enter a valid date/time." +msgstr "بەروار/کاتی دروست بنوسە." + +msgid "Enter a valid duration." +msgstr "بەهای دروستی ماوە بنوسە." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "ژمارەی ڕۆژەکان دەبێت لەنێوان {min_days} و {max_days} بێت." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "هیچ پەڕگەیەک نەنێردراوە. جۆری کۆدکردنی پەڕگەکە لەسەر فۆرمەکە بپشکنە." + +msgid "No file was submitted." +msgstr "هیچ پەڕگەیەک نەنێردراوە." + +msgid "The submitted file is empty." +msgstr "پەڕگەی نێردراو بەتاڵە." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "دڵنیابە کە ناوی پەڕگە زیاتر لە %(max)d نوسەی نیە (%(length)d هەیە)." +msgstr[1] "دڵنیابە کە ناوی پەڕگە زیاتر لە %(max)d نوسەی نیە (%(length)d هەیە)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"تکایە یان پەڕگەیەک بنێرە یان چوارچێوەی پشکنین هەڵبژێرە، نەک هەردووکیان." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"وێنەی دروست هەڵبژێرە. ئەو پەڕگەی بەرزتکردۆوە یان وێنە نیە یان وێنەیەکی خراپ " +"بووە." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"هەڵبژاردەیەکی دروست دیاری بکە. %(value)s یەکێک نیە لە هەڵبژاردە بەردەستەکان." + +msgid "Enter a list of values." +msgstr "لیستی بەهاکان بنوسە." + +msgid "Enter a complete value." +msgstr "تەواوی بەهایەک بنوسە." + +msgid "Enter a valid UUID." +msgstr "بەهای دروستی UUID بنوسە." + +msgid "Enter a valid JSON." +msgstr "JSONی دروست بنوسە." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(خانەی شاراوە %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"داتاکانی فۆڕمی بەڕێوەبردن نەماوە یان دەستکاری کراون. خانە وونبووەکان: " +"%(field_names)s. لەوانەیە پێویستت بە تۆمارکردنی ڕاپۆرتی هەڵە بێت ئەگەر " +"کێشەکە بەردەوام بوو." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "تکایە لانی زۆر %(num)d فۆرم بنێرە." +msgstr[1] "تکایە لانی زۆر %(num)d فۆرم بنێرە." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "تکایە لانی کەم %(num)d فۆرم بنێرە." +msgstr[1] "تکایە لانی کەم %(num)d فۆرم بنێرە." + +msgid "Order" +msgstr "ڕیز" + +msgid "Delete" +msgstr "سڕینەوە" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "تکایە داتا دووبارەکراوەکان چاکبکەرەوە بۆ %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"تکایە ئەو داتا دووبارەکراوەکانە چاکبکەرەوە بۆ %(field)s، کە دەبێت بێهاوتابن." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"تکایە ئەو داتا دووبارەکراوەکان چاکبکەرەوە بۆ %(field_name)s کە دەبێت بێهاوتا " +"بن بۆ %(lookup)s لە%(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "تکایە بەها دووبارەکانی خوارەوە ڕاست بکەرەوە." + +msgid "The inline value did not match the parent instance." +msgstr "بەهای ناوهێڵ هاوشێوەی نمونەی باوانەکەی نیە." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "هەڵبژاردەی دروست دیاری بکە. هەڵبژاردە لە هەڵبژاردە بەردەستەکان نیە." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” بەهایەکی دروست نیە." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s نەتوانرا لە ناوچەی کاتدا لێکبدرێتەوە %(current_timezone)s؛ " +"لەوانەیە ناڕوون بێت یان لەوانەیە بوونی نەبێت." + +msgid "Clear" +msgstr "پاککردنەوە" + +msgid "Currently" +msgstr "ئێستا" + +msgid "Change" +msgstr "گۆڕین" + +msgid "Unknown" +msgstr "نەزانراو" + +msgid "Yes" +msgstr "بەڵێ" + +msgid "No" +msgstr "نەخێر" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "بەڵێ،نەخێر،لەوانەیە" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)dبایت" +msgstr[1] "%(size)d بایت" + +#, python-format +msgid "%s KB" +msgstr "%s کب" + +#, python-format +msgid "%s MB" +msgstr "%s مب" + +#, python-format +msgid "%s GB" +msgstr "%s گب" + +#, python-format +msgid "%s TB" +msgstr "%s تب" + +#, python-format +msgid "%s PB" +msgstr "%s پب" + +msgid "p.m." +msgstr "پ.ن" + +msgid "a.m." +msgstr "پ.ن" + +msgid "PM" +msgstr "د.ن" + +msgid "AM" +msgstr "پ.ن" + +msgid "midnight" +msgstr "نیوەشەو" + +msgid "noon" +msgstr "نیوەڕۆ" + +msgid "Monday" +msgstr "دووشەممە" + +msgid "Tuesday" +msgstr "سێشەممە" + +msgid "Wednesday" +msgstr "چوارشەممە" + +msgid "Thursday" +msgstr "پێنجشەممە" + +msgid "Friday" +msgstr "هەینی" + +msgid "Saturday" +msgstr "شەممە" + +msgid "Sunday" +msgstr "یەکشەممە" + +msgid "Mon" +msgstr "دوو" + +msgid "Tue" +msgstr "سێ" + +msgid "Wed" +msgstr "چوار" + +msgid "Thu" +msgstr "پێنج" + +msgid "Fri" +msgstr "هەین" + +msgid "Sat" +msgstr "شەم" + +msgid "Sun" +msgstr "یەک" + +msgid "January" +msgstr "ڕێبەندان" + +msgid "February" +msgstr "ڕەشەمە" + +msgid "March" +msgstr "نەورۆز" + +msgid "April" +msgstr "گوڵان" + +msgid "May" +msgstr "جۆزەردان" + +msgid "June" +msgstr "پوشپەڕ" + +msgid "July" +msgstr "گەلاوێژ" + +msgid "August" +msgstr "خەرمانان" + +msgid "September" +msgstr "ڕەزبەر" + +msgid "October" +msgstr "گەڵاڕێزان" + +msgid "November" +msgstr "سەرماوەرز" + +msgid "December" +msgstr "بەفرانبار" + +msgid "jan" +msgstr "‎ڕێبەندان" + +msgid "feb" +msgstr "ڕەشەمە" + +msgid "mar" +msgstr "نەورۆز" + +msgid "apr" +msgstr "گوڵان" + +msgid "may" +msgstr "‎جۆزەردان" + +msgid "jun" +msgstr "پوشپەڕ" + +msgid "jul" +msgstr "‎گەلاوێژ" + +msgid "aug" +msgstr "خەرمانان" + +msgid "sep" +msgstr "‎ڕەزبەر" + +msgid "oct" +msgstr "‎گەڵاڕێزان" + +msgid "nov" +msgstr "‎سەرماوەرز" + +msgid "dec" +msgstr "‎بەفرانبار" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "‎ڕێبەندان" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ڕەشەمە" + +msgctxt "abbrev. month" +msgid "March" +msgstr "نەورۆز" + +msgctxt "abbrev. month" +msgid "April" +msgstr "گوڵان" + +msgctxt "abbrev. month" +msgid "May" +msgstr "جۆزەردان" + +msgctxt "abbrev. month" +msgid "June" +msgstr "پوشپەڕ" + +msgctxt "abbrev. month" +msgid "July" +msgstr "گەلاوێژ" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "خەرمانان" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "ڕەزبەر" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "‎گەڵاڕێزان" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "‎سەرماوەرز" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "‎بەفرانبار" + +msgctxt "alt. month" +msgid "January" +msgstr "ڕێبەندان" + +msgctxt "alt. month" +msgid "February" +msgstr "ڕەشەمە" + +msgctxt "alt. month" +msgid "March" +msgstr "نەورۆز" + +msgctxt "alt. month" +msgid "April" +msgstr "گوڵان" + +msgctxt "alt. month" +msgid "May" +msgstr "جۆزەردان" + +msgctxt "alt. month" +msgid "June" +msgstr "پوشپەڕ" + +msgctxt "alt. month" +msgid "July" +msgstr "گەلاوێژ" + +msgctxt "alt. month" +msgid "August" +msgstr "خەرمانان" + +msgctxt "alt. month" +msgid "September" +msgstr "ڕەزبەر" + +msgctxt "alt. month" +msgid "October" +msgstr "گەڵاڕێزان" + +msgctxt "alt. month" +msgid "November" +msgstr "سەرماوەرز" + +msgctxt "alt. month" +msgid "December" +msgstr "بەفرانبار" + +msgid "This is not a valid IPv6 address." +msgstr "ئەمە ناونیشانی IPv6 دروست نیە." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s..." + +msgid "or" +msgstr "یان" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "، " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "‫%(num)d ساڵ" +msgstr[1] "‫%(num)d ساڵ" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "‫%(num)d مانگ" +msgstr[1] "‫%(num)d مانگ" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "‫%(num)d هەفتە" +msgstr[1] "‫%(num)d هەفتە" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "‫%(num)d ڕۆژ" +msgstr[1] "‫%(num)d ڕۆژ" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "‫%(num)d کاتژمێر" +msgstr[1] "‫%(num)d کاتژمێر" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "‫%(num)d خولەک" +msgstr[1] "‫%(num)d خولەک" + +msgid "Forbidden" +msgstr "ڕێپێنەدراو" + +msgid "CSRF verification failed. Request aborted." +msgstr "پشتڕاستکردنەوەی CSRF شکستی هێنا. داواکاری هەڵوەشاوەتەوە." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"تۆ ئەم پەیامە دەبینیت چونکە ئەم ماڵپەڕە HTTPS پێویستی بە \"سەردێڕی " +"ئاماژەدەر\" هەیە کە لەلایەن وێبگەڕەکەتەوە بنێردرێت، بەڵام هیچیان نەنێردراوە. " +"ئەم سەردێڕە بۆ هۆکاری ئاسایش پێویستە، بۆ دڵنیابوون لەوەی کە وێبگەڕەکەت " +"لەلایەن لایەنی سێیەمەوە دەستی بەسەردا ناگیرێت." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"ئەگەر ڕێکخستنی شەکرۆکەی ئەم وێبگەڕەت بۆ “Referer” ناچالاککردووە، تکایە " +"چالاکی بکەرەوە، لانیکەم بۆ ئەم ماڵپەڕە، یان بۆ پەیوەندییەکانی HTTPS، یاخود " +"بۆ داواکانی \"Same-origin\"." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"ئەگەر تۆ تاگی بەکاردەهێنێت " +"یان سەرپەڕەی “Referrer-Policy: no-referrer” لەخۆدەگرێت، تکایە بیانسڕەوە. " +"پاراستنی CSRFەکە پێویستی بە سەرپەڕەی “Referer”هەیە بۆ ئەنجامدانی پشکنینی " +"گەڕاندنەوەی توندوتۆڵ. ئەگەر خەمی تایبەتمەندیت هەیە، بەدیلەکانی وەکو بۆ بەستنەوەی ماڵپەڕەکانی لایەنی سێیەم." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"تۆ ئەم پەیامە دەبینیت چونکە ئەم ماڵپەڕە پێویستی بە شەکرۆکەی CSRF هەیە لە " +"کاتی ناردنی فۆڕمەکاندا. ئەم شەکرۆکەیە بۆ هۆکاری ئاسایش پێویستە، بۆ دڵنیابوون " +"لەوەی کە وێبگەڕەکەت لەلایەن لایەنی سێیەمەوە دەستی بەسەردا ناگیرێت." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"ئەگەر ڕێکخستنی شەکرۆکەی ئەم وێبگەڕەت ناچالاککردووە، تکایە چالاکی بکەرەوە، " +"لانیکەم بۆ ئەم ماڵپەڕە، یان بۆ داواکانی \"Same-origin\"" + +msgid "More information is available with DEBUG=True." +msgstr "زانیاریی زیاتر بەردەستە لەگەڵ DEBUG=True." + +msgid "No year specified" +msgstr "هیچ ساڵێک دیاری نەکراوە" + +msgid "Date out of range" +msgstr "بەروار لە دەرەوەی بواردایە" + +msgid "No month specified" +msgstr "هیچ مانگێک دیاری نەکراوە" + +msgid "No day specified" +msgstr "هیچ ڕۆژێک دیاری نەکراوە" + +msgid "No week specified" +msgstr "هیچ حەفتەیەک دیاری نەکراوە" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "هیچ %(verbose_name_plural)s بەردەست نییە" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"لەداهاتوودا %(verbose_name_plural)s بەردەست نیە چونکە %(class_name)s." +"allow_future چەوتە." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "ڕیزبەندی بەروار نادروستە “%(datestr)s” شێوازی “%(format)s” پێ بدە" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "هیچ %(verbose_name)s هاوتای داواکارییەکە نیە" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "لاپەڕە “کۆتا” نییە، هەروەها ناتوانرێت بگۆڕدرێت بۆ ژمارەی تەواو." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "لاپەڕەی نادروستە (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "لیستی بەتاڵ و “%(class_name)s.allow_empty” چەوتە." + +msgid "Directory indexes are not allowed here." +msgstr "لێرەدا نوانەی بوخچەکان ڕێگەپێدراو نیە." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” بوونی نیە" + +#, python-format +msgid "Index of %(directory)s" +msgstr "نوانەی %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "دامەزراندن بەسەرکەوتوویی کاریکرد! پیرۆزە!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"سەیری تێبینیەکانی بڵاوکردنەوە بکە بۆ جانگۆی " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"ئەم لاپەڕەیە دەبینیت چونکە DEBUG=True لەناو پەڕگەی ڕێکخستنەکانتە و بۆ هیچ URLێک " +"ڕێکنەخراوە." + +msgid "Django Documentation" +msgstr "بەڵگەنامەکردنی جانگۆ" + +msgid "Topics, references, & how-to’s" +msgstr "بابەتەکان, سەرچاوەکان, & چۆنێتی" + +msgid "Tutorial: A Polling App" +msgstr "فێرکاریی: ئاپێکی ڕاپرسی" + +msgid "Get started with Django" +msgstr "دەستپێبکە لەگەڵ جانگۆ" + +msgid "Django Community" +msgstr "کۆمەڵگەی جانگۆ" + +msgid "Connect, get help, or contribute" +msgstr "پەیوەندی بکە، یارمەتی وەربگرە، یان بەشداری بکە" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ckb/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ckb/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ckb/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ckb/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2144e098fa44c7aca5b618b2219ce51c77a30651 GIT binary patch literal 194 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_&vsFxJacWU< zOnGWfNq&q=esXDUYFPO2Tq`eG&^!NLFl0a7&6 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ckb/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ckb/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0855fd3e1647d965118660284b2819aeb0673422 GIT binary patch literal 518 zcmY+BO;5r=5QbY?zJrR^5Tu?m49IH z=D(?U)06+eaB_=5U^Y9M_nl`Z*(@p)as-aqPq!Z>2;wUi+d*P+fv;D=2@-&SBp_h| zBp?MSNCO%sK@z4w3Z_9CW}{M z@Gth`&bCohc~;T|v7#YJGvqI&7o$nhE*p>~(2`55p9oV(Cqu_v%EP*?HkL7>XQs6~J2Txw_w>rM z9N>2x8I#NzjDTYaCRrG;kK+vT0lWKrcjRQ!VL0=Sd>rZCnRLAGuc~@xb~Q@Iy!Ym# z+Fw_7Rdt1b{pa{DBtsr2OkUSdp`Im z@LcdDa1d0!6%H>4^?nFE5!?YXR9+oadJCKj-T)p2z5+ZMya`ml-vgcv-UI6WPeHx^ zHK_8(&>7PnQ0??V5LCJ6gKGbaz!Sh%xc6@Xec~Sh&jr5*sz3h? zs{W(;Y`GIa)pIKNSn!FU`o92FeXBr~+YUYkd={wub@0hx6I8i3gX+&-Q29Rvs$HK3 zH4k3|MHk-z)vwdfqAWNMycxV190La#q}PD&1m6i>bPluteiOVDd>);719%s>4BSd1 zmV>VWMTegUPX&+dw|Ew)aa{`X32y_a{>7l?@r5pav%~j+8sED?(dXAd)%QzKbU$~% z^BxC28B{&XLG^npcnvrVZUH|DY6+dlPK=tLAmG2jz+VdMwbUbIF#S=lL`=H97531jbz?;CO;OXG!LDlmk zQ2BlVYFz#cR6BnM9uLl0WYbRu)y~sE)%PTjA@K%W`ZGY$?N0FFU;;9*Wr&I4nABf@;@`K_7fIsP=yl6rFq&R6oAp((eV;j{CqR z;J>=`$6w%iYl)u?(nYTd#^9U5^T6XS^t_eeQ^3o?ac~_t4XXc-xyaEQcrtMxRKG3) z)vvXn+I1bM@e4t>j^D6K}@Jdkc z%b?m7xp)SiN&E$%^6vrFp7(;sfgb`@{%%m~`-`BN2T<)g|0%Y<1)$1Z>~J|KdS44_ zoVPlBhQnupYDXCqeODbeKz%0z+2XvLz&`K}kRkW(1t9@%?j@FQUJ8nzjf3jP8$j{9 zJHS)H&w*?e-uFSZ_h^{6#`ic--#rBsy`2G`1U?N^z9CTkx!U1Qhr^)ijX~vm38;R& z0@V1v4pjT!466KH;5Fc%;tSt* z?|ggq=%IfVJQLguLPA~(ya2odgcQ6VfR6zCR(sym!zcs(74e^}@w{h)jkR_?e9_@g z!S$pcbs2jacqMo(_%=}M>i3}PEx^R|y$VQ`-aA0aEk6X6?;I*o{Ay72_j-qKa`-lf zw>rEHoJYP7gAWJ40@7UXYoOZy4N&v{ZEz0wGf@2FSKu+=A3?3VV_>rS-aPOq@X4Uo z{{m3!>k3fwvIA7UVemAt4vLOm3?2>M0?q~B?r<-tb@x$l5d0Dd%Rtbw`JW1&L3Aak z_FM;^0uHPV==(Oy-$G}r{98_pG8;O{qS;7{R+Ud!NlPkz%z+|9Mrgf9ef=4Gf@3_KE1)vq6cYR50#``?4d5ufvHn|^}BGePA)$6*1~cb@{P{2Ea2H-nm|XMk!?0;-+Q z2UYLOK$W{0{5$ZSpy>XYfo)&paLnQJ9ljV8{k#ekAA2{b@4nCBo#1-ncf0t}MN6M2 zg37-Tdv|Z}IvEGm-&cT|kJp15 z-#b9{=VR{uXF-j_y`bj(esBo<0Vq0JTDEfQN>J^31(<>#0nY``3z3b$E5T2IuXVU} zmo0zNu&w_L@bSDq7u0%N1*#v{fEw=%R6kw_s@;1)(ZxH#hlB3})txDfZqm1 zACDNdd}t|nA@K^R`F$%Wezy-49exYcc>fwa8$6+E`O3wh+Oq`IcUOVRw+__2gy18< z=Ynd_3mm=#6n}U%Xubz3-#+jd@RQ(N@YA5i>0X!q2T=5MRL#!AwV>uF1CIs&0@Qb2 z3J!p;0VU_$1*%;?237A-bQ_rLW% zw*CFvhQ+%a{)59QQ1tdsF8+BJ|BAzJI{dD~?}Hk@pMvVoFC0GL-v80zBcEg2cPyxU zCxiOVnV`mP9;kkt@9+YLOWpfbF22#>c98CQ*MaKqPKPCj!=Tz#b@7IaHyySdKHuRB zK{NgiUjwS%H-c*Cn?cq0c8BkF>9>KRhYy2V$Dahnr@jr&2mb)B1J6rX6JQEH3!DV6 z0{dVhuyU^jj)C6*uLid?tsMIva3S%30SCcHXIB1P3X1N>T>Sl@+WUP_<3e`tw}cN6 zK0`Q5iTvJY!Tc59xPtID!aE5I$@5qOB;!pG^55A!oK5=2z<(g@Av~I(-;+qsfB(gU z`tn`EHwgMIcJChpYW$7|e`Ma+KMyDVF6AR^;aN2N6+(-k-x|`^gX_WLz)6C}`55Bj zlaD3n_d|llX%S&9?=ApuA>2;TPh+azBX}2p=Y!q9B9S){o=bQ-@3i*1f3lnZfCRRC z^SjuUzp|^IFYxBwgf|j2*ZSR0cp`bW63*fo@y6^Ee*xyd<-F^6k^gYm@9Nds^Af z&#QP};CZO4+^dM6NDv+B*C2@ZK8!r`z#+mjc%I|RNd6V=p9>yMSkCjA;9Efbo=EtF z9{7ot-%R*V!g+*~$)}(8gh%mw3E}lTKNWmAcp2e&gk^+9F7GdS-o*1dF#oX}y=Rg( zKemvnK!sP`0{+giu=S76q5jGK|?>w2H z{Ve}|+dW)G`rCP)CP+_;z%#&4f`1_B_eu-i^T7(?{VskH_$9(N^1l~+fN%}ZH-RO> zjfBS#UPf3z`f-FO5OxvQ@6kLb_R(9$^YJ`?lW?a?`#W$I;R@cpz@?3XZy*ek_I230-(4OliY_EoTta31ON36FI7wu4JZA0)hx zFhIDCpx=`S*YbV?;b%PmBjH~N`R^Q8#{~{Q$ctAK3dG+E{+{r3LjF63hdT(L%M%tPB3#J(kAUAN{0(6r;qM9GA^Z=*=LvfWPbF+8R0+Qze2B1uvia}v zJlsmyOxgzUT*CPT{a#DhMi^6s-|2+agj31;RVAF$Uk;jKvr-QSQoj^uwQ_X-4YxG? zV(3?*W|%aRuo;$l_LavUkE75(r@xdXNfc>f* z9K}sPyuOk)3w&}{C9IWq)`DVKN-$fzYs+}|Qozq{7<7(E}*=#lV zqNyl}>jUZFIsMI;ijuGvG%InGj#L`@$^l=dysgJ&^Yu!UHiM`X`nxO55k73bNoD8s zj|H_X97z0f9H#z^_M5UhqreQBDc2mSsL0F)2el*&$}QV()84}=nDX)cOGa6JpzN1} z7ENzIs~{nAFeUdK^$r1Ms>&dc2)ibDPkMLMrqVbJ-aB6^ip z#zUG}Y?%*s#dw+em#x&_4d(Ag^LLB+yKSY{zphd)hmmgv(C3S0YzKG>lO#?CQg6Nw z16lI4!aQ$_E3#n-6G)p$P*dJD(QwV=9S@UYP#LA9w=zf} zT5lz!mt?8Rtqh}K@_Q>Q!+!rIW-JEGTB1eX$~dltRMo!*Y6}y8TLQ&H@N0uw8V>Y) zJ>R}mu1#8MWJ*m-S0=%D#WZY7oHS`|n9>l|YfK}ON|UCxo4his4F{%MD>HgZ##KXG z*ZN}&(ymI$tQvn;P^pFGg1Vc2Gg(+B=8zBlV-?Zq-2dE=5W4095(%tu-2HbUY4N2 zq*4^ol0lwb1gVTFYBC9+pPD)pl}Mlg;n9 z3sszs^gJQXnufEvG)3cGKHZ`}tHV-QFEVR9RO)n`wPvF=m?AcTgvQ57iw>2;>qC}p z5*kJk)N1i=I?4=(1#dNkG93FF1z23Ol_#u@OBqDhG^6jW&KMk+7Y|KZzNXG>_(8dx zglS5w(QNq;AF~pb?O2p*L7F-yR4`xM87i9_9YawCFQ?fxQJT@Z=14$))h^dqzaHD< zh_zM^u7~-QU2hw;phWW@Y)Kg2krb^Avw;*txW8H%c3KfL`$t|?`ViJ-cE6Z4@L-yu zopV-MXm=M&O+3yY2_PGG&X}pS6HxX`BP^5>o3G!`m?#HZA6%t5GEg4qYQtgIlODPv zv)SdXVI7<1)GGB#bEn-0dp9c`iFfB2W;N|dYV2;{;a2H}?4fJp!7DtXCNeWjS=Z>< z(k8j9e`(JlBUgY>RBKimH8zJ`e%cHhzBbd@mCol?kg$^t`x16|9q-zehRuO=z8@Bb z3o{aoKvOB(*;=G5Gg1~SMa(6Q{WzLQWp*kLzg-6?J&ZUcs)h+gV)X1YFx6%}yITh+ zUV{@JR#|-`U>m73e(-tIdev#u4HsopO|oH9Hr+D!PCnjO$~3K!#Lc)AOHy_0cy=C% zBeT=CZ@pr_r0wfh&rXx@-79T@BhP7k}ck=ZZZK0G_Q*QaNV zp&c8xq}3P+qpn#v zM9l}Sv1f(5N07K&1M;56QLW{dwd16IM=U9}L^Jh3tw|dpGC(ut32{oI#oDl#WI@vM z)=GI%FQtYofk3R#Z)_gEZJZR1XzlS7R)!;gL)h~B)mpY#W(R!$ zNrk=}?TJUzodItx3LbLE+N7c&#RD(`?%E6qS-c48u^6YJkwJDgYLK87iRsoD(o0aJ ziN&xKWU0{^_m@|8*_vQ1PFlH)HCNJTUlzv6uzg7CCf>BXjs_Yz&I(oDWr;MDb<9n; z+gpbmR`J$l$lpfPUB4w?vEKSEV;7n~Gg3q_yt!C!_)|iNr-qWZz8rh&cloV2Gg10 zm~^TVi!H~DUs5SG$xgfBkfo8ZRHa!3-*y$XpIK!gm%>COf%uOwjNUXBlv=D@niA9? zm4_l>rGvH|lx2<22#cR@ownxno9#vw&yIX0`hmvVgqlm$kY;CYD7FGtFq^F$>VCU-sF& zZP(GD8Gb+8B)HS^`GIsmj0-h0B~i_RbBuWFk)XAtFApNaNG}i2y`_p?o}sW^o<*Uz zAt<)spBsWG3d#XE9#luX4I_1wunmwHr8l&a;nui!MbI2mWmlj_XJ~nPMCVF;bW$mw z-WA#PC~uI{u)e(!RfZwai;d{AE&G?JI!_U;lp?m4u3}0IAz4A6nslQ)i<2-PvavvIN|oxoMP$X)Z?XFc!k6q8W<<(agDps0z>qxy z#Ee=209Lenq*5B0WuB$FBdg{J3$(4OJ-+RjyHSITB^Y``9_}_4OEfxY1C1c7<&1@< zoi((^I7?tGP(yMW*fu?t=(LL$Y`zcWMpH|3u1N>W)MSR1s?(rq^W_+!C`N!q0sy^P&pb-+1p5_e)6YNS&R0Su~0j)!Q2ErhJ4D zY{edWi355*>O$E$@@SLGi+%z`G%YqOh^M=Bj$S#oLg<@42i7S|w#6gUm zovF0ct+gQOng!ct3@$faJ3uYlWY@A)9&SC2rd_K;NU^5z7JYV>3SFt7JsKVaS3yK( zn;Jr*@HYmH)ElbBV?ot`H5w102KoJ2L(9%sadtX;O*-HW%^1tv-aI6;U&)skPkl&c zY{C6mWNZdunNoRD?>g;UzJ|FsOCpx4wx=YEWXqMXincI^V-cGYmUk*a8~3f=P)6@y z(wd^(!3Y*)FqA>p8)`}XHC)Ks7K~P^{HMJM!LThupxd-HGA2-jAri#FvRQg&e=#J2P|40s zE_;eopjwq71_AGmlPbJ0%}OOU$z3qz);#R6(J*^x=D6)VQ^GY7x?@~AM^eSG$;J@* z&qYhxsW;CvCX(l3D78`hJ-cGXb`9sCqs9`empmJODkg2121^hvqk4dM5pA6Dit8vJFI10)Rl=qb14EC;-O`grn1N+|Bh6+bU9w<7IWDDz zvN;(*mD5R90pr7hFj`XYYZt(G>Z@J4U z(g@Q_7X(%Vb4L$dReDz=RT1E5B9W`Z8q<0WJV>&t&M(q1w1OMM;3W9A5^oeMtFuVG z$|)21Ml#7(r&wD3RZ158iR0i@3lsx`(d~AJ#azFek06YlLj2x{cVyFq^IcnmCL*VO zv-PJT=gu6UkQ$^$S>glOSlS00<_o#@=%%q~x--IQT}ixvcF>EY4Bx_VDoymTJ3hP1 zMh~}&spY?p4QTkZS)%}$-ncCP?|NfcbZ&@w(3H4q0m7&@mvq5d8>p8W6G|ywzaY=E!VrdlS~IYmD}ER;;w7m3G}NIZ7V!oX}N0Cm84!-VT-Buf=1#6 zID&J|=x$)59Wf%LE8H@I=*;Of#ln! zs_klIk1t%iZO23Mm1|e8zRth)TE1}I#*Is^>*~Z|^g*gYuEpB1@%wwUb-?T|D8@{= z(S_{<+2f4^&tpf-=r&#+Xy}brrqU+hQfH!S&_At7H_3qb0tT!RBr?_PD`~ z>2ReyxH20~2e-vb{JC2;4{i;|IQNL7!PU&=5`Xc+MHdV%yl`;wMgGEzmt6SN^B3}) zdjAU?)N8+ee8V{>aFCpS2S-nsiUp`+IEuO!4;o=J^ zEUWBrIJhkg>Pvj%y5jdsQbbS;8jS)jFq|aq3a>XZqHXa42S}Z!@PbmhU|{aX^&8i8 z`nIUBa4zZ&=TJ1xoK{H=|4uDTnh5d-jtqyKpJ?c^v~S>yP|p%lt+Dx##*AXm}vDaKL|>ztCUe z^K$tzf3bae=`#Pq{j)7Hxm0i-1$~uVOvwwD&h^&CWn_fRnSHdH2N2l98pq?ZV;GM` z)bpl4=1<*-oH#c5UVnV@j%aERMS3|d)~9cuz8ke{av#!YIEri>k4M4OjnU);@nXy$ z7S!Zk>&K_6jfF)jgHi3e9T~}G>Os$`PEIr<;>hD{eq^5Ey~x2z%t;;g;BNC(UR42Y zW4svnT;B17P?+^MfemSZND?oPPtyuc3$H~*(qwGouVc>GjAt0 zwFhD<&5n0@Xxa?Zx6jVfmC~Ht*WF!3yLxP*oeE8~t8fx`oH}{#G@D4){wPQ7Jm)@~ z!RV}*N_D+7)z69_+~aeonzWj%O{Q6kK-w|~M?B5)_?+i$#?!Nk!CEvejoT~74TNNQ zeNIk9DIExE#rD(m-IIGU#v64uC{9nHvc#EJ&Wex+hZseZ-+6$VY||5*Lrv|e0O$Z*&+-;ht})Q$EdlN0g`otzjg(+JzLVvtrVC7M{|3o$OD zdc>D&a)Rn zS!`(&=Wf<-^bol_8C^jPkNw&e2L?PH;F}>V8gEk5C!I`X_^{@^M&-f@!n7Rqd;e}1 zvzoRN^^CF0OJS)U3FuQiHnnH^me8<5&7jog0#>8xyE)<;exGT`l~Pwl~}(%X?_(-UAduHmFv8SOcex8Q*u)t-hRk`}|Sm zRa3$!E_j%Z61EGC%!+C=W6q&7Z|cTSDP`A5#EPs=ugq>0){P^o5{lutNy_pR>aJJn z7+B-+G#K&NKsca8hgyws8v2VmbmVO=i$XOn=76|`fe^FoLrrL2%f zJjUvaS_Mv5jdNZ~E11g}WYdO#6I)1Hj~KxNxwD!vjS#P(6;?nLSYHtjv4>LyzOa3i z3a9qCInz#VI7$@8MTUvZ%pZf@s>|$1#yHOwQtpgdomp-&S$|qR6TYb@_*3iIrxQ1| z=+9b_-DB}&Ip`qSk?|W^gzXW7YT#C8wcth+PTk0|!HseM(K~`~1pgPl@&EBBX45Nv zNLAKg53;rU1TIp&2K>mYLC)KM-j2MQhpLus=qapl?V@A2p=R7az<&bH0U;XEd~9+b zoYgJjvX7KrMVV-6gHW~^UeXVyG92R`!rHQjv^E&`0UL+P>BMFnhr7m0a*R=Xx?Pcb zja!#bvOLT=?>piOXN}!MP~)uedkAWrJ%)!{Wt;9Es&PC>g%5HZ4^rcwq1T6~a-C5& z<-{(v*(k*Oxx?Fq#_o(7(YZt*kN6#&Jlh=|zdoJUbWoh0Lla3}|PT2u8A-D*8~=ZvQE#RE5NRu>A+ ztTAKE5S*LS6O5n{_oc4y*Y%#|5YrA>YzGIal58jMYSd%}u)B4p(YG(s5cXPk>78V! zsdN%BCN-@Y0fDsRC@(L7{WBqzW(dNt^|ms%e|3<;nNfprBl+-9JOPBId%7g&jh%>BT<9-9dk;$Jg32kp0){Mr|M6qK3MA1Ub zit9Dh4}9dLi8(iYj7_RZYL4cT`X0Iub^3gup)gI)M2DQ%l18E=2OA>_B zg#ziOMk`|GjFQxBH8BMr$Ps@P?LlkGEBAKcd_pUyUdarg{if7A(kj-_vOBJf&%JSF@jCqXgv1)EMf8@&0;J|86py<>2MVFW^(U{ zH75>uC}&u1vvIYeF*%{Y2&3iOb4yMoq>CHmox&ru(qFN+TXe=#MpxP<6=ae+j+!l&oZ-!r6I_JDPbSwn`LUo(V4$~EK;(6(r<&ml z5NBE=D5)$0WBX;{ACa%W`O5g@#7HebZ1?+&F9crpy?p%pIF;Z4U4EMA!3BSFX@n_r zHd}iwwE&ed1ow5RU`>%ezNR|60~4%*JnRM;uj^^b!#mSuVPO{E{Bh8LNJT1T4)-H!^l1ae#4 z=Aw)(Z~=Q?z-(8t25BjG-y2|c#jqi*Fxkr5hDpzythn0))?ft_W!r`Maa%wvG%mwH z4HcRbT$U0;jp^Q;gp);_&TKCeqFZQ{Q;I`e8>kqYVg-Ak8pPdnY_FpMtXxqzVS+^n z`-Xac2YH$3Gy0Mn_}I&hR6haqFPO9>KCS zlg()s(yh#*I(pK6fr$<^PR_QC%-GT}F5;)x!lrDQKSW;Zx{KDnfZ*6$5*L}wx-o$m zd4{zl?<-vZ!_S1pETxefKDzJY@@jET;PR9oMb)EtgbNA!OMmSpgd!A#3Dm1fQU!O& zrZ>iT=q7^3Yqn{<5qnIZ%&u4oad6>Mg2wMEwTw+V;7xnE`1Bjj({Um)4TeSGs_OP5 zYawyB8Q8fBUKFz3nL0UuGglURTY@)*qQ|%#Oy7ca5^FC^j3F9tT81O`U}uU2GV_MR z0XNXD?b5Z6Psq0IZZlM61dXtxMc(v2n3}#}*`B7Id~6D-EZ+quxy(-XcU1L1BS4PE zBu($Qjh6U*GwwR{nbnt34|7xK*#a!)<^ZZ!>)g3guU9%XD%z_LIBB(yM9j?xlvZ~K zV!+e=+L)>IxCCJjUoq3@4$Lfzvt}G_=T16x>>3Q3zi{B`TLLWY9%mCMK=y0}{vzJo zJ~fa$XZc7*-F3*-Dw>Ruu0Ytq)+W}?$Ji~R3fZ-Z_2~{pU%}I@8)$HIg98_qgS`?_ zG21E(4nH9+uJ!?^Zb?@;WrjC)X}6u@Uaoc=ZbgTk)t$W_{KK=)nK5!3OJ4W!vTjG% zqk-v{&g!bw|ClDTBXa{usylhcS{w}Fkq4vCI#RAk6Pcn_hqrRjKDiH0#EnHfIpbms zOVVe;X_RDYfTK`Vy|Yi}XSCWHETJA@cIf(us-M37At?X_TZVIZ9XLq#o*g(y{@xup zL;+@Bbe$jO89r-I8zrbo*_g33ybT9UWh>jSL?f7fsX6I1XR1cel6c2KKIa2kVp=~Q z4lkM6vF+h!8hhAk_#ZJmj_B-RVl}L_m-$t=^GPr^vI0AZ*_{wI=S!HdjtXs!t!pb_ zmpVYff^V#ucFoTyfh;E;#Q#}o+Hb+{M@Zq`Du)^f7AP%@o8Lcfyh6(6TyJX60Qc@1 zElHV~hmMC7qQTXZ)&17Pb45YsE!|W=e9-?LlD5Cs`(g<9FA+C%BHC55G9z~abm(f(QNWX>Spjv>s*&hFO846!u9+hgj+7`cvtWOcBY z=>NA_Z!U|_FC+U*?LmdZDwZ~;_DoM8cJZGRncE_0WA$(zI}qY#(>I6GT^j&1P?>Q{ zgh=O(2;53)XJ^AVN|`(U)UJjJgFURv4=Fz!eQ(dV?v@D3xaILwr;~DyV9`Zt9Q$Iz z*Gp&EaALQS`kk67g}4BLHxmmqdOZ;{0x@fO5Uj$sRGW4WdBbm81BEmsMMawly>MBlq zxF%VW^veq5v|CmOXn8j8lb^yj(5@jBQP_ z7)s+r6;lVo7-#qgPyz5sP=mLRa(CTyHSn@=noC-40nd4soU6nUa}_9OYaO!fBBneO z@{O^Ux;e9#O{DYavPn+|hcSEYM6KFE*ZKd!nt%SQCkW#je)wb+`m<&Tdjlmm=;TfW zR+zSTTRi@6wbb}`1m0MP-lj(5kqZY7{MU9+E zd&SloB2V@zCK?L`CKk*KoRrW=yeh2Zj`!S1EUSj$Hf{Td{7v}IICi~=|2V^}<|gC< z1)wLo135b;h`su67&W=ZK-6PkP^KzIo4{Gc8ihKdmfB+)ZX6@rev;*Om&v=z!Km@j zK~mQBorCnt+NRVPb6$fQW&1_S7z%eNgJhS9r>lQH>$!?QV_7an5*80J

p$L{ZVK z7YGAm?1T76S}V{#Z75^$D3h@d0~mW#{lSy{pM1|n&0_LoK(#H;+a2V}<%B)lFm7zC zGj5^`B~oq@yig|JB*&pE^uO9oy)xw93V)M=x6){H8_=_PSwW1Sek0lw)^*7+1$npO z$B1_te;IWAg4m{weLRregj8oFA=x~UVw88#DDPmdw`HEu%t*-vq(JqncGYdFRi&!P z7+)e&m8r*TU{{Rdk|))JJ7%iXR_BSedPa#e)#ASs&&Mm=FhZ=<){KsfXK!)HqLh1& zdP?Q?M%z&D_A{%pusZga408_Zvbf_8bBQD8%m*rzpCQocTF7 z>+QqBKkc&zs=oIubnX1eC~SAK6tzvShb)tX2v$<(>>(Q5qZf&HedGXgbN9@3Mdh)|tRhz(VWIs0JvC)JcR2nJcc7J_ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po new file mode 100644 index 0000000..14f5ef9 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po @@ -0,0 +1,1388 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Claude Paroz , 2020 +# Jannis Leidel , 2011 +# Jan Papež , 2012,2024 +# Jiří Podhorecký , 2024 +# Jiří Podhorecký , 2022 +# Jirka Vejrazka , 2011 +# Jiří Podhorecký , 2020 +# Tomáš Ehrlich , 2015 +# Vláďa Macek , 2012-2014 +# Vláďa Macek , 2015-2022 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Jan Papež , 2012,2024\n" +"Language-Team: Czech (http://app.transifex.com/django/django/language/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n " +"<= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +msgid "Afrikaans" +msgstr "afrikánsky" + +msgid "Arabic" +msgstr "arabsky" + +msgid "Algerian Arabic" +msgstr "alžírskou arabštinou" + +msgid "Asturian" +msgstr "asturštinou" + +msgid "Azerbaijani" +msgstr "ázerbájdžánsky" + +msgid "Bulgarian" +msgstr "bulharsky" + +msgid "Belarusian" +msgstr "bělorusky" + +msgid "Bengali" +msgstr "bengálsky" + +msgid "Breton" +msgstr "bretonsky" + +msgid "Bosnian" +msgstr "bosensky" + +msgid "Catalan" +msgstr "katalánsky" + +msgid "Central Kurdish (Sorani)" +msgstr "Střední kurdština (soranština)" + +msgid "Czech" +msgstr "česky" + +msgid "Welsh" +msgstr "velšsky" + +msgid "Danish" +msgstr "dánsky" + +msgid "German" +msgstr "německy" + +msgid "Lower Sorbian" +msgstr "dolnolužickou srbštinou" + +msgid "Greek" +msgstr "řecky" + +msgid "English" +msgstr "anglicky" + +msgid "Australian English" +msgstr "australskou angličtinou" + +msgid "British English" +msgstr "britskou angličtinou" + +msgid "Esperanto" +msgstr "esperantsky" + +msgid "Spanish" +msgstr "španělsky" + +msgid "Argentinian Spanish" +msgstr "argentinskou španělštinou" + +msgid "Colombian Spanish" +msgstr "kolumbijskou španělštinou" + +msgid "Mexican Spanish" +msgstr "mexickou španělštinou" + +msgid "Nicaraguan Spanish" +msgstr "nikaragujskou španělštinou" + +msgid "Venezuelan Spanish" +msgstr "venezuelskou španělštinou" + +msgid "Estonian" +msgstr "estonsky" + +msgid "Basque" +msgstr "baskicky" + +msgid "Persian" +msgstr "persky" + +msgid "Finnish" +msgstr "finsky" + +msgid "French" +msgstr "francouzsky" + +msgid "Frisian" +msgstr "frísky" + +msgid "Irish" +msgstr "irsky" + +msgid "Scottish Gaelic" +msgstr "skotskou keltštinou" + +msgid "Galician" +msgstr "galicijsky" + +msgid "Hebrew" +msgstr "hebrejsky" + +msgid "Hindi" +msgstr "hindsky" + +msgid "Croatian" +msgstr "chorvatsky" + +msgid "Upper Sorbian" +msgstr "hornolužickou srbštinou" + +msgid "Hungarian" +msgstr "maďarsky" + +msgid "Armenian" +msgstr "arménštinou" + +msgid "Interlingua" +msgstr "interlingua" + +msgid "Indonesian" +msgstr "indonésky" + +msgid "Igbo" +msgstr "igboštinou" + +msgid "Ido" +msgstr "idem" + +msgid "Icelandic" +msgstr "islandsky" + +msgid "Italian" +msgstr "italsky" + +msgid "Japanese" +msgstr "japonsky" + +msgid "Georgian" +msgstr "gruzínštinou" + +msgid "Kabyle" +msgstr "kabylštinou" + +msgid "Kazakh" +msgstr "kazašsky" + +msgid "Khmer" +msgstr "khmersky" + +msgid "Kannada" +msgstr "kannadsky" + +msgid "Korean" +msgstr "korejsky" + +msgid "Kyrgyz" +msgstr "kyrgyzštinou" + +msgid "Luxembourgish" +msgstr "lucembursky" + +msgid "Lithuanian" +msgstr "litevsky" + +msgid "Latvian" +msgstr "lotyšsky" + +msgid "Macedonian" +msgstr "makedonsky" + +msgid "Malayalam" +msgstr "malajálamsky" + +msgid "Mongolian" +msgstr "mongolsky" + +msgid "Marathi" +msgstr "marathi" + +msgid "Malay" +msgstr "malajštinou" + +msgid "Burmese" +msgstr "barmštinou" + +msgid "Norwegian Bokmål" +msgstr "bokmål norštinou" + +msgid "Nepali" +msgstr "nepálsky" + +msgid "Dutch" +msgstr "nizozemsky" + +msgid "Norwegian Nynorsk" +msgstr "norsky (Nynorsk)" + +msgid "Ossetic" +msgstr "osetštinou" + +msgid "Punjabi" +msgstr "paňdžábsky" + +msgid "Polish" +msgstr "polsky" + +msgid "Portuguese" +msgstr "portugalsky" + +msgid "Brazilian Portuguese" +msgstr "brazilskou portugalštinou" + +msgid "Romanian" +msgstr "rumunsky" + +msgid "Russian" +msgstr "rusky" + +msgid "Slovak" +msgstr "slovensky" + +msgid "Slovenian" +msgstr "slovinsky" + +msgid "Albanian" +msgstr "albánsky" + +msgid "Serbian" +msgstr "srbsky" + +msgid "Serbian Latin" +msgstr "srbsky (latinkou)" + +msgid "Swedish" +msgstr "švédsky" + +msgid "Swahili" +msgstr "svahilsky" + +msgid "Tamil" +msgstr "tamilsky" + +msgid "Telugu" +msgstr "telužsky" + +msgid "Tajik" +msgstr "Tádžik" + +msgid "Thai" +msgstr "thajsky" + +msgid "Turkmen" +msgstr "turkmenštinou" + +msgid "Turkish" +msgstr "turecky" + +msgid "Tatar" +msgstr "tatarsky" + +msgid "Udmurt" +msgstr "udmurtsky" + +msgid "Uyghur" +msgstr "Ujgurština" + +msgid "Ukrainian" +msgstr "ukrajinsky" + +msgid "Urdu" +msgstr "urdsky" + +msgid "Uzbek" +msgstr "uzbecky" + +msgid "Vietnamese" +msgstr "vietnamsky" + +msgid "Simplified Chinese" +msgstr "čínsky (zjednodušeně)" + +msgid "Traditional Chinese" +msgstr "čínsky (tradičně)" + +msgid "Messages" +msgstr "Zprávy" + +msgid "Site Maps" +msgstr "Mapy webu" + +msgid "Static Files" +msgstr "Statické soubory" + +msgid "Syndication" +msgstr "Syndikace" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Číslo stránky není celé číslo." + +msgid "That page number is less than 1" +msgstr "Číslo stránky je menší než 1" + +msgid "That page contains no results" +msgstr "Stránka je bez výsledků" + +msgid "Enter a valid value." +msgstr "Zadejte platnou hodnotu." + +msgid "Enter a valid domain name." +msgstr "Zadejte platný název domény." + +msgid "Enter a valid URL." +msgstr "Zadejte platnou adresu URL." + +msgid "Enter a valid integer." +msgstr "Zadejte platné celé číslo." + +msgid "Enter a valid email address." +msgstr "Zadejte platnou e-mailovou adresu." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Vložte platný identifikátor složený pouze z písmen, čísel, podtržítek a " +"pomlček." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Zadejte platný identifikátor složený pouze z písmen, čísel, podtržítek a " +"pomlček typu Unicode." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Zadejte platnou %(protocol)s adresu." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 nebo IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Zadejte pouze číslice oddělené čárkami." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Hodnota musí být %(limit_value)s (nyní je %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Hodnota musí být menší nebo rovna %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Hodnota musí být větší nebo rovna %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Ujistěte se, že tato hodnota je násobkem velikosti kroku %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Zajistěte, aby tato hodnota byla %(limit_value)s násobkem velikosti kroku , " +"počínaje %(offset)s, např. %(offset)s, %(valid_value1)s, %(valid_value2)s, a " +"tak dále." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Tato hodnota má mít nejméně %(limit_value)d znak (nyní má %(show_value)d)." +msgstr[1] "" +"Tato hodnota má mít nejméně %(limit_value)d znaky (nyní má %(show_value)d)." +msgstr[2] "" +"Tato hodnota má mít nejméně %(limit_value)d znaku (nyní má %(show_value)d)." +msgstr[3] "" +"Tato hodnota má mít nejméně %(limit_value)d znaků (nyní má %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Tato hodnota má mít nejvýše %(limit_value)d znak (nyní má %(show_value)d)." +msgstr[1] "" +"Tato hodnota má mít nejvýše %(limit_value)d znaky (nyní má %(show_value)d)." +msgstr[2] "" +"Tato hodnota má mít nejvýše %(limit_value)d znaků (nyní má %(show_value)d)." +msgstr[3] "" +"Tato hodnota má mít nejvýše %(limit_value)d znaků (nyní má %(show_value)d)." + +msgid "Enter a number." +msgstr "Zadejte číslo." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Ujistěte se, že pole neobsahuje celkem více než %(max)s číslici." +msgstr[1] "Ujistěte se, že pole neobsahuje celkem více než %(max)s číslice." +msgstr[2] "Ujistěte se, že pole neobsahuje celkem více než %(max)s číslic." +msgstr[3] "Ujistěte se, že pole neobsahuje celkem více než %(max)s číslic." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Ujistěte se, že pole neobsahuje více než %(max)s desetinné místo." +msgstr[1] "Ujistěte se, že pole neobsahuje více než %(max)s desetinná místa." +msgstr[2] "Ujistěte se, že pole neobsahuje více než %(max)s desetinných míst." +msgstr[3] "Ujistěte se, že pole neobsahuje více než %(max)s desetinných míst." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Ujistěte se, že hodnota neobsahuje více než %(max)s místo před desetinnou " +"čárkou (tečkou)." +msgstr[1] "" +"Ujistěte se, že hodnota neobsahuje více než %(max)s místa před desetinnou " +"čárkou (tečkou)." +msgstr[2] "" +"Ujistěte se, že hodnota neobsahuje více než %(max)s míst před desetinnou " +"čárkou (tečkou)." +msgstr[3] "" +"Ujistěte se, že hodnota neobsahuje více než %(max)s míst před desetinnou " +"čárkou (tečkou)." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Přípona souboru \"%(extension)s\" není povolena. Povolené jsou tyto: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Nulové znaky nejsou povoleny." + +msgid "and" +msgstr "a" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" +"Položka %(model_name)s s touto kombinací hodnot v polích %(field_labels)s " +"již existuje." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Omezení \"%(name)s\" je porušeno." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Hodnota %(value)r není platná možnost." + +msgid "This field cannot be null." +msgstr "Pole nemůže být null." + +msgid "This field cannot be blank." +msgstr "Pole nemůže být prázdné." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" +"Položka %(model_name)s s touto hodnotou v poli %(field_label)s již existuje." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"Pole %(field_label)s musí být unikátní testem %(lookup_type)s pro pole " +"%(date_field_label)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Pole typu: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Hodnota \"%(value)s\" musí být buď True nebo False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Hodnota \"%(value)s\" musí být buď True, False nebo None." + +msgid "Boolean (Either True or False)" +msgstr "Pravdivost (buď Ano (True), nebo Ne (False))" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Řetězec (max. %(max_length)s znaků)" + +msgid "String (unlimited)" +msgstr "Řetězec (neomezený)" + +msgid "Comma-separated integers" +msgstr "Celá čísla oddělená čárkou" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "Hodnota \"%(value)s\" není platné datum. Musí být ve tvaru RRRR-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Ačkoli hodnota \"%(value)s\" je ve správném tvaru (RRRR-MM-DD), jde o " +"neplatné datum." + +msgid "Date (without time)" +msgstr "Datum (bez času)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Hodnota \"%(value)s\" je v neplatném tvaru, který má být RRRR-MM-DD HH:MM[:" +"SS[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Ačkoli hodnota \"%(value)s\" je ve správném tvaru (RRRR-MM-DD HH:MM[:SS[." +"uuuuuu]][TZ]), jde o neplatné datum a čas." + +msgid "Date (with time)" +msgstr "Datum (s časem)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Hodnota \"%(value)s\" musí být desítkové číslo." + +msgid "Decimal number" +msgstr "Desetinné číslo" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Hodnota \"%(value)s\" je v neplatném tvaru, který má být [DD] [HH:[MM:]]ss[." +"uuuuuu]." + +msgid "Duration" +msgstr "Doba trvání" + +msgid "Email address" +msgstr "E-mailová adresa" + +msgid "File path" +msgstr "Cesta k souboru" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Hodnota \"%(value)s\" musí být reálné číslo." + +msgid "Floating point number" +msgstr "Číslo s pohyblivou řádovou čárkou" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Hodnota \"%(value)s\" musí být celé číslo." + +msgid "Integer" +msgstr "Celé číslo" + +msgid "Big (8 byte) integer" +msgstr "Velké číslo (8 bajtů)" + +msgid "Small integer" +msgstr "Malé celé číslo" + +msgid "IPv4 address" +msgstr "Adresa IPv4" + +msgid "IP address" +msgstr "Adresa IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Hodnota \"%(value)s\" musí být buď None, True nebo False." + +msgid "Boolean (Either True, False or None)" +msgstr "Pravdivost (buď Ano (True), Ne (False) nebo Nic (None))" + +msgid "Positive big integer" +msgstr "Velké kladné celé číslo" + +msgid "Positive integer" +msgstr "Kladné celé číslo" + +msgid "Positive small integer" +msgstr "Kladné malé celé číslo" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Identifikátor (nejvýše %(max_length)s znaků)" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Hodnota \"%(value)s\" je v neplatném tvaru, který má být HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Ačkoli hodnota \"%(value)s\" je ve správném tvaru (HH:MM[:ss[.uuuuuu]]), jde " +"o neplatný čas." + +msgid "Time" +msgstr "Čas" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Přímá binární data" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" není platná hodnota typu UUID." + +msgid "Universally unique identifier" +msgstr "Všeobecně jedinečný identifikátor" + +msgid "File" +msgstr "Soubor" + +msgid "Image" +msgstr "Obrázek" + +msgid "A JSON object" +msgstr "Objekt typu JSON" + +msgid "Value must be valid JSON." +msgstr "Hodnota musí být platná struktura typu JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" +"Položka typu %(model)s s hodnotou %(field)s rovnou %(value)r neexistuje." + +msgid "Foreign Key (type determined by related field)" +msgstr "Cizí klíč (typ určen pomocí souvisejícího pole)" + +msgid "One-to-one relationship" +msgstr "Vazba jedna-jedna" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Vazba z %(from)s do %(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Vazby z %(from)s do %(to)s" + +msgid "Many-to-many relationship" +msgstr "Vazba mnoho-mnoho" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?!" + +msgid "This field is required." +msgstr "Toto pole je třeba vyplnit." + +msgid "Enter a whole number." +msgstr "Zadejte celé číslo." + +msgid "Enter a valid date." +msgstr "Zadejte platné datum." + +msgid "Enter a valid time." +msgstr "Zadejte platný čas." + +msgid "Enter a valid date/time." +msgstr "Zadejte platné datum a čas." + +msgid "Enter a valid duration." +msgstr "Zadejte platnou délku trvání." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Počet dní musí být mezi {min_days} a {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Soubor nebyl odeslán. Zkontrolujte parametr \"encoding type\" formuláře." + +msgid "No file was submitted." +msgstr "Žádný soubor nebyl odeslán." + +msgid "The submitted file is empty." +msgstr "Odeslaný soubor je prázdný." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Tento název souboru má mít nejvýše %(max)d znak (nyní má %(length)d)." +msgstr[1] "" +"Tento název souboru má mít nejvýše %(max)d znaky (nyní má %(length)d)." +msgstr[2] "" +"Tento název souboru má mít nejvýše %(max)d znaku (nyní má %(length)d)." +msgstr[3] "" +"Tento název souboru má mít nejvýše %(max)d znaků (nyní má %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Musíte vybrat cestu k souboru nebo vymazat výběr, ne obojí." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Nahrajte platný obrázek. Odeslaný soubor buď nebyl obrázek nebo byl poškozen." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Vyberte platnou možnost, \"%(value)s\" není k dispozici." + +msgid "Enter a list of values." +msgstr "Zadejte seznam hodnot." + +msgid "Enter a complete value." +msgstr "Zadejte úplnou hodnotu." + +msgid "Enter a valid UUID." +msgstr "Zadejte platné UUID." + +msgid "Enter a valid JSON." +msgstr "Zadejte platnou strukturu typu JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Skryté pole %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Data objektu ManagementForm chybí nebo s nimi bylo nedovoleně manipulováno. " +"Chybějící pole: %(field_names)s. Pokud problém přetrvává, budete možná muset " +"problém ohlásit." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Odešlete prosím nejvíce %(num)d formulář." +msgstr[1] "Odešlete prosím nejvíce %(num)d formuláře." +msgstr[2] "Odešlete prosím nejvíce %(num)d formulářů." +msgstr[3] "Odešlete prosím nejvíce %(num)d formulářů." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Odešlete prosím alespoň %(num)d formulář." +msgstr[1] "Odešlete prosím alespoň %(num)d formuláře." +msgstr[2] "Odešlete prosím alespoň %(num)d formulářů." +msgstr[3] "Odešlete prosím alespoň %(num)d formulářů." + +msgid "Order" +msgstr "Pořadí" + +msgid "Delete" +msgstr "Odstranit" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Opravte duplicitní data v poli %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Opravte duplicitní data v poli %(field)s, které musí být unikátní." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Opravte duplicitní data v poli %(field_name)s, které musí být unikátní " +"testem %(lookup)s pole %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Odstraňte duplicitní hodnoty níže." + +msgid "The inline value did not match the parent instance." +msgstr "Hodnota typu inline neodpovídá rodičovské položce." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Vyberte platnou možnost. Tato není k dispozici." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" není platná hodnota." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"Hodnotu %(datetime)s nelze interpretovat v časové zóně %(current_timezone)s; " +"může být nejednoznačná nebo nemusí existovat." + +msgid "Clear" +msgstr "Zrušit" + +msgid "Currently" +msgstr "Aktuálně" + +msgid "Change" +msgstr "Změnit" + +msgid "Unknown" +msgstr "Neznámé" + +msgid "Yes" +msgstr "Ano" + +msgid "No" +msgstr "Ne" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ano,ne,možná" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajty" +msgstr[2] "%(size)d bajtů" +msgstr[3] "%(size)d bajtů" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "odp." + +msgid "a.m." +msgstr "dop." + +msgid "PM" +msgstr "odp." + +msgid "AM" +msgstr "dop." + +msgid "midnight" +msgstr "půlnoc" + +msgid "noon" +msgstr "poledne" + +msgid "Monday" +msgstr "pondělí" + +msgid "Tuesday" +msgstr "úterý" + +msgid "Wednesday" +msgstr "středa" + +msgid "Thursday" +msgstr "čtvrtek" + +msgid "Friday" +msgstr "pátek" + +msgid "Saturday" +msgstr "sobota" + +msgid "Sunday" +msgstr "neděle" + +msgid "Mon" +msgstr "po" + +msgid "Tue" +msgstr "út" + +msgid "Wed" +msgstr "st" + +msgid "Thu" +msgstr "čt" + +msgid "Fri" +msgstr "pá" + +msgid "Sat" +msgstr "so" + +msgid "Sun" +msgstr "ne" + +msgid "January" +msgstr "leden" + +msgid "February" +msgstr "únor" + +msgid "March" +msgstr "březen" + +msgid "April" +msgstr "duben" + +msgid "May" +msgstr "květen" + +msgid "June" +msgstr "červen" + +msgid "July" +msgstr "červenec" + +msgid "August" +msgstr "srpen" + +msgid "September" +msgstr "září" + +msgid "October" +msgstr "říjen" + +msgid "November" +msgstr "listopad" + +msgid "December" +msgstr "prosinec" + +msgid "jan" +msgstr "led" + +msgid "feb" +msgstr "úno" + +msgid "mar" +msgstr "bře" + +msgid "apr" +msgstr "dub" + +msgid "may" +msgstr "kvě" + +msgid "jun" +msgstr "čen" + +msgid "jul" +msgstr "čec" + +msgid "aug" +msgstr "srp" + +msgid "sep" +msgstr "zář" + +msgid "oct" +msgstr "říj" + +msgid "nov" +msgstr "lis" + +msgid "dec" +msgstr "pro" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Led." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Úno." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Bře." + +msgctxt "abbrev. month" +msgid "April" +msgstr "Dub." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Kvě." + +msgctxt "abbrev. month" +msgid "June" +msgstr "Čer." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Čec." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Srp." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Zář." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Říj." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Lis." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Pro." + +msgctxt "alt. month" +msgid "January" +msgstr "ledna" + +msgctxt "alt. month" +msgid "February" +msgstr "února" + +msgctxt "alt. month" +msgid "March" +msgstr "března" + +msgctxt "alt. month" +msgid "April" +msgstr "dubna" + +msgctxt "alt. month" +msgid "May" +msgstr "května" + +msgctxt "alt. month" +msgid "June" +msgstr "června" + +msgctxt "alt. month" +msgid "July" +msgstr "července" + +msgctxt "alt. month" +msgid "August" +msgstr "srpna" + +msgctxt "alt. month" +msgid "September" +msgstr "září" + +msgctxt "alt. month" +msgid "October" +msgstr "října" + +msgctxt "alt. month" +msgid "November" +msgstr "listopadu" + +msgctxt "alt. month" +msgid "December" +msgstr "prosince" + +msgid "This is not a valid IPv6 address." +msgstr "Toto není platná adresa typu IPv6." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "nebo" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d rok" +msgstr[1] "%(num)d roky" +msgstr[2] "%(num)d roku" +msgstr[3] "%(num)d let" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d měsíc" +msgstr[1] "%(num)d měsíce" +msgstr[2] "%(num)d měsíců" +msgstr[3] "%(num)d měsíců" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d týden" +msgstr[1] "%(num)d týdny" +msgstr[2] "%(num)d týdne" +msgstr[3] "%(num)d týdnů" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d den" +msgstr[1] "%(num)d dny" +msgstr[2] "%(num)d dní" +msgstr[3] "%(num)d dní" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hodina" +msgstr[1] "%(num)d hodiny" +msgstr[2] "%(num)d hodiny" +msgstr[3] "%(num)d hodin" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuta" +msgstr[1] "%(num)d minuty" +msgstr[2] "%(num)d minut" +msgstr[3] "%(num)d minut" + +msgid "Forbidden" +msgstr "Nepřístupné (Forbidden)" + +msgid "CSRF verification failed. Request aborted." +msgstr "Selhalo ověření typu CSRF. Požadavek byl zadržen." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Tuto zprávu vidíte, protože tento web na protokolu HTTPS vyžaduje, aby váš " +"prohlížeč zaslal v požadavku záhlaví \"Referer\", k čemuž nedošlo. Záhlaví " +"je požadováno z bezpečnostních důvodů pro kontrolu toho, že prohlížeče se " +"nezmocnila třetí strana." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Pokud má váš prohlížeč záhlaví \"Referer\" vypnuté, žádáme vás o jeho " +"zapnutí, alespoň pro tento web nebo pro spojení typu HTTPS nebo pro " +"požadavky typu \"stejný původ\" (same origin)." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Pokud používáte značku nebo " +"záhlaví \"Referrer-Policy: no-referrer\", odeberte je. Ochrana typu CSRF " +"vyžaduje, aby záhlaví zajišťovalo striktní hlídání refereru. Pokud je pro " +"vás soukromí důležité, použijte k odkazům na cizí weby alternativní možnosti " +"jako například ." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Tato zpráva se zobrazuje, protože tento web při odesílání formulářů požaduje " +"v souboru cookie údaj CSRF, a to z bezpečnostních důvodů, aby se zajistilo, " +"že se vašeho prohlížeče nezmocnil někdo další." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Pokud má váš prohlížeč soubory cookie vypnuté, žádáme vás o jejich zapnutí, " +"alespoň pro tento web nebo pro požadavky typu \"stejný původ\" (same origin)." + +msgid "More information is available with DEBUG=True." +msgstr "V případě zapnutí volby DEBUG=True bude k dispozici více informací." + +msgid "No year specified" +msgstr "Nebyl specifikován rok" + +msgid "Date out of range" +msgstr "Datum je mimo rozsah" + +msgid "No month specified" +msgstr "Nebyl specifikován měsíc" + +msgid "No day specified" +msgstr "Nebyl specifikován den" + +msgid "No week specified" +msgstr "Nebyl specifikován týden" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s nejsou k dispozici" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s s budoucím datem nejsou k dipozici protoze " +"%(class_name)s.allow_future je False" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Datum \"%(datestr)s\" neodpovídá formátu \"%(format)s\"" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Nepodařilo se nalézt žádný objekt %(verbose_name)s" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Požadavek na stránku nemohl být konvertován na celé číslo, ani není \"last\"." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Neplatná stránka (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "List je prázdný a \"%(class_name)s.allow_empty\" je nastaveno na False" + +msgid "Directory indexes are not allowed here." +msgstr "Indexy adresářů zde nejsou povoleny." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "Cesta \"%(path)s\" neexistuje" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index adresáře %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalace proběhla úspěšně, gratulujeme!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Zobrazit poznámky k vydání frameworku Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Tuto zprávu vidíte, protože máte v nastavení Djanga zapnutý vývojový režim " +"DEBUG=True a zatím nemáte " +"nastavena žádná URL." + +msgid "Django Documentation" +msgstr "Dokumentace frameworku Django" + +msgid "Topics, references, & how-to’s" +msgstr "Témata, odkazy & how-to" + +msgid "Tutorial: A Polling App" +msgstr "Tutoriál: Hlasovací aplikace" + +msgid "Get started with Django" +msgstr "Začínáme s frameworkem Django" + +msgid "Django Community" +msgstr "Komunita kolem frameworku Django" + +msgid "Connect, get help, or contribute" +msgstr "Propojte se, získejte pomoc, podílejte se" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/cs/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/cs/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/cs/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94e7dda1187fe76c6c22c9a4d266f8ecac14f3fb GIT binary patch literal 193 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 XDO8l=wzv|G!qu_AI;=6oNcevMYAEI_ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po new file mode 100644 index 0000000..16383ce --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po @@ -0,0 +1,1278 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel , 2011 +# Maredudd ap Gwyndaf , 2012,2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Welsh (http://www.transifex.com/django/django/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " +"11) ? 2 : 3;\n" + +msgid "Afrikaans" +msgstr "Affricaneg" + +msgid "Arabic" +msgstr "Arabeg" + +msgid "Asturian" +msgstr "Astwrieg" + +msgid "Azerbaijani" +msgstr "Azerbaijanaidd" + +msgid "Bulgarian" +msgstr "Bwlgareg" + +msgid "Belarusian" +msgstr "Belarwseg" + +msgid "Bengali" +msgstr "Bengaleg" + +msgid "Breton" +msgstr "Llydaweg" + +msgid "Bosnian" +msgstr "Bosnieg" + +msgid "Catalan" +msgstr "Catalaneg" + +msgid "Czech" +msgstr "Tsieceg" + +msgid "Welsh" +msgstr "Cymraeg" + +msgid "Danish" +msgstr "Daneg" + +msgid "German" +msgstr "Almaeneg" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Groegedd" + +msgid "English" +msgstr "Saesneg" + +msgid "Australian English" +msgstr "Saesneg Awstralia" + +msgid "British English" +msgstr "Saesneg Prydain" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Sbaeneg" + +msgid "Argentinian Spanish" +msgstr "Sbaeneg Ariannin" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Sbaeneg Mecsico" + +msgid "Nicaraguan Spanish" +msgstr "Sbaeneg Nicaragwa" + +msgid "Venezuelan Spanish" +msgstr "Sbaeneg Feneswela" + +msgid "Estonian" +msgstr "Estoneg" + +msgid "Basque" +msgstr "Basgeg" + +msgid "Persian" +msgstr "Persieg" + +msgid "Finnish" +msgstr "Ffinneg" + +msgid "French" +msgstr "Ffrangeg" + +msgid "Frisian" +msgstr "Ffrisieg" + +msgid "Irish" +msgstr "Gwyddeleg" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Galisieg" + +msgid "Hebrew" +msgstr "Hebraeg" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croasieg" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Hwngareg" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indoneseg" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandeg" + +msgid "Italian" +msgstr "Eidaleg" + +msgid "Japanese" +msgstr "Siapanëeg" + +msgid "Georgian" +msgstr "Georgeg" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Casacstanaidd" + +msgid "Khmer" +msgstr "Chmereg" + +msgid "Kannada" +msgstr "Canadeg" + +msgid "Korean" +msgstr "Corëeg" + +msgid "Luxembourgish" +msgstr "Lwcsembergeg" + +msgid "Lithuanian" +msgstr "Lithwaneg" + +msgid "Latvian" +msgstr "Latfieg" + +msgid "Macedonian" +msgstr "Macedoneg" + +msgid "Malayalam" +msgstr "Malaialam" + +msgid "Mongolian" +msgstr "Mongoleg" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Burmese" +msgstr "Byrmaneg" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Nepaleg" + +msgid "Dutch" +msgstr "Iseldireg" + +msgid "Norwegian Nynorsk" +msgstr "Ninorsk Norwyeg" + +msgid "Ossetic" +msgstr "Osetieg" + +msgid "Punjabi" +msgstr "Pwnjabi" + +msgid "Polish" +msgstr "Pwyleg" + +msgid "Portuguese" +msgstr "Portiwgaleg" + +msgid "Brazilian Portuguese" +msgstr "Portiwgaleg Brasil" + +msgid "Romanian" +msgstr "Romaneg" + +msgid "Russian" +msgstr "Rwsieg" + +msgid "Slovak" +msgstr "Slofaceg" + +msgid "Slovenian" +msgstr "Slofeneg" + +msgid "Albanian" +msgstr "Albaneg" + +msgid "Serbian" +msgstr "Serbeg" + +msgid "Serbian Latin" +msgstr "Lladin Serbiaidd" + +msgid "Swedish" +msgstr "Swedeg" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telwgw" + +msgid "Thai" +msgstr "Tai" + +msgid "Turkish" +msgstr "Twrceg" + +msgid "Tatar" +msgstr "Tatareg" + +msgid "Udmurt" +msgstr "Wdmwrteg" + +msgid "Ukrainian" +msgstr "Wcreineg" + +msgid "Urdu" +msgstr "Wrdw" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Fietnameg" + +msgid "Simplified Chinese" +msgstr "Tsieinëeg Syml" + +msgid "Traditional Chinese" +msgstr "Tseinëeg Traddodiadol" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "Mapiau Safle" + +msgid "Static Files" +msgstr "Ffeiliau Statig" + +msgid "Syndication" +msgstr "Syndicetiad" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Rhowch werth dilys." + +msgid "Enter a valid URL." +msgstr "Rhowch URL dilys." + +msgid "Enter a valid integer." +msgstr "Rhowch gyfanrif dilys." + +msgid "Enter a valid email address." +msgstr "Rhowch gyfeiriad ebost dilys." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Rhowch gyfeiriad IPv4 dilys." + +msgid "Enter a valid IPv6 address." +msgstr "Rhowch gyfeiriad IPv6 dilys." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Rhowch gyfeiriad IPv4 neu IPv6 dilys." + +msgid "Enter only digits separated by commas." +msgstr "Rhowch ddigidau wedi'i gwahanu gan gomas yn unig." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Sicrhewch taw y gwerth yw %(limit_value)s (%(show_value)s yw ar hyn o bryd)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Sicrhewch fod y gwerth hwn yn fwy neu'n llai na %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Sicrhewch fod y gwerth yn fwy na neu'n gyfartal â %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Sicrhewch fod gan y gwerth hwn oleiaf %(limit_value)d nod (mae ganddo " +"%(show_value)d)." +msgstr[1] "" +"Sicrhewch fod gan y gwerth hwn oleiaf %(limit_value)d nod (mae ganddo " +"%(show_value)d)." +msgstr[2] "" +"Sicrhewch fod gan y gwerth hwn oleiaf %(limit_value)d nod (mae ganddo " +"%(show_value)d)." +msgstr[3] "" +"Sicrhewch fod gan y gwerth hwn oleiaf %(limit_value)d nod (mae ganddo " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Sicrhewch fod gan y gwerth hwn ddim mwy na %(limit_value)d nod (mae ganddo " +"%(show_value)d)." +msgstr[1] "" +"Sicrhewch fod gan y gwerth hwn ddim mwy na %(limit_value)d nod (mae ganddo " +"%(show_value)d)." +msgstr[2] "" +"Sicrhewch fod gan y gwerth hwn ddim mwy na %(limit_value)d nod (mae ganddo " +"%(show_value)d)." +msgstr[3] "" +"Sicrhewch fod gan y gwerth hwn ddim mwy na %(limit_value)d nod (mae ganddo " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Rhowch rif." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Sicrhewch nad oes mwy nag %(max)s digid i gyd." +msgstr[1] "Sicrhewch nad oes mwy na %(max)s ddigid i gyd." +msgstr[2] "Sicrhewch nad oes mwy na %(max)s digid i gyd." +msgstr[3] "Sicrhewch nad oes mwy na %(max)s digid i gyd." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Sicrhewch nad oes mwy nag %(max)s lle degol." +msgstr[1] "Sicrhewch nad oes mwy na %(max)s le degol." +msgstr[2] "Sicrhewch nad oes mwy na %(max)s lle degol." +msgstr[3] "Sicrhewch nad oes mwy na %(max)s lle degol." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Sicrhewch nad oes mwy nag %(max)s digid cyn y pwynt degol." +msgstr[1] "Sicrhewch nad oes mwy na %(max)s ddigid cyn y pwynt degol." +msgstr[2] "Sicrhewch nad oes mwy na %(max)s digid cyn y pwynt degol." +msgstr[3] "Sicrhewch nad oes mwy na %(max)s digid cyn y pwynt degol." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "a" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Mae %(model_name)s gyda'r %(field_labels)s hyn yn bodoli'n barod." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Nid yw gwerth %(value)r yn ddewis dilys." + +msgid "This field cannot be null." +msgstr "Ni all y maes hwn fod yn 'null'." + +msgid "This field cannot be blank." +msgstr "Ni all y maes hwn fod yn wag." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Mae %(model_name)s gyda'r %(field_label)s hwn yn bodoli'n barod." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Maes o fath: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boleaidd (Unai True neu False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (hyd at %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Cyfanrifau wedi'u gwahanu gan gomas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Dyddiad (heb amser)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Dyddiad (gydag amser)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Rhif degol" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Cyfeiriad ebost" + +msgid "File path" +msgstr "Llwybr ffeil" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Rhif pwynt symudol" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "cyfanrif" + +msgid "Big (8 byte) integer" +msgstr "Cyfanrif mawr (8 beit)" + +msgid "IPv4 address" +msgstr "Cyfeiriad IPv4" + +msgid "IP address" +msgstr "cyfeiriad IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boleaidd (Naill ai True, False neu None)" + +msgid "Positive integer" +msgstr "Cyfanrif positif" + +msgid "Positive small integer" +msgstr "Cyfanrif bach positif" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Malwen (hyd at %(max_length)s)" + +msgid "Small integer" +msgstr "Cyfanrif bach" + +msgid "Text" +msgstr "Testun" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Amser" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Data deuol crai" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Ffeil" + +msgid "Image" +msgstr "Delwedd" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Allwedd Estron (math yn ddibynol ar y maes cysylltiedig)" + +msgid "One-to-one relationship" +msgstr "Perthynas un-i-un" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Perthynas llawer-i-lawer" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Mae angen y maes hwn." + +msgid "Enter a whole number." +msgstr "Rhowch cyfanrif." + +msgid "Enter a valid date." +msgstr "Rhif ddyddiad dilys." + +msgid "Enter a valid time." +msgstr "Rhowch amser dilys." + +msgid "Enter a valid date/time." +msgstr "Rhowch ddyddiad/amser dilys." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ni anfonwyd ffeil. Gwiriwch math yr amgodiad ar y ffurflen." + +msgid "No file was submitted." +msgstr "Ni anfonwyd ffeil." + +msgid "The submitted file is empty." +msgstr "Mae'r ffeil yn wag." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Sicrhewch fod gan enw'r ffeil ar y mwyaf %(max)d nod (mae ganddo %(length)d)." +msgstr[1] "" +"Sicrhewch fod gan enw'r ffeil ar y mwyaf %(max)d nod (mae ganddo %(length)d)." +msgstr[2] "" +"Sicrhewch fod gan enw'r ffeil ar y mwyaf %(max)d nod (mae ganddo %(length)d)." +msgstr[3] "" +"Sicrhewch fod gan enw'r ffeil ar y mwyaf %(max)d nod (mae ganddo %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Nail ai cyflwynwych ffeil neu dewisiwch y blwch gwiriad, ond nid y ddau." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Llwythwch ddelwedd dilys. Doedd y ddelwedd a lwythwyd ddim yn ddelwedd " +"dilys, neu roedd yn ddelwedd llygredig." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Dewiswch ddewisiad dilys. Nid yw %(value)s yn un o'r dewisiadau sydd ar gael." + +msgid "Enter a list of values." +msgstr "Rhowch restr o werthoedd." + +msgid "Enter a complete value." +msgstr "Rhowch werth cyflawn." + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Maes cudd %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "Mae data ManagementForm ar goll neu mae rhywun wedi ymyrryd ynddo" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Cyflwynwch %d neu lai o ffurflenni." +msgstr[1] "Cyflwynwch %d neu lai o ffurflenni." +msgstr[2] "Cyflwynwch %d neu lai o ffurflenni." +msgstr[3] "Cyflwynwch %d neu lai o ffurflenni." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "Cyflwynwch %d neu fwy o ffurflenni." +msgstr[1] "Cyflwynwch %d neu fwy o ffurflenni." +msgstr[2] "Cyflwynwch %d neu fwy o ffurflenni." +msgstr[3] "Cyflwynwch %d neu fwy o ffurflenni." + +msgid "Order" +msgstr "Trefn" + +msgid "Delete" +msgstr "Dileu" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Cywirwch y data dyblyg ar gyfer %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Cywirwch y data dyblyg ar gyfer %(field)s, sydd yn gorfod bod yn unigryw." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Cywirwch y data dyblyg ar gyfer %(field_name)s sydd yn gorfod bod yn unigryw " +"ar gyfer %(lookup)s yn %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Cywirwch y gwerthoedd dyblyg isod." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Dewiswch ddewisiad dilys. Nid yw'r dewisiad yn un o'r dewisiadau sydd ar " +"gael." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Clirio" + +msgid "Currently" +msgstr "Ar hyn o bryd" + +msgid "Change" +msgstr "Newid" + +msgid "Unknown" +msgstr "Anhysbys" + +msgid "Yes" +msgstr "Ie" + +msgid "No" +msgstr "Na" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "ie,na,efallai" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d beit" +msgstr[1] "%(size)d beit" +msgstr[2] "%(size)d beit" +msgstr[3] "%(size)d beit" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "y.h." + +msgid "a.m." +msgstr "y.b." + +msgid "PM" +msgstr "YH" + +msgid "AM" +msgstr "YB" + +msgid "midnight" +msgstr "canol nos" + +msgid "noon" +msgstr "canol dydd" + +msgid "Monday" +msgstr "Dydd Llun" + +msgid "Tuesday" +msgstr "Dydd Mawrth" + +msgid "Wednesday" +msgstr "Dydd Mercher" + +msgid "Thursday" +msgstr "Dydd Iau" + +msgid "Friday" +msgstr "Dydd Gwener" + +msgid "Saturday" +msgstr "Dydd Sadwrn" + +msgid "Sunday" +msgstr "Dydd Sul" + +msgid "Mon" +msgstr "Llu" + +msgid "Tue" +msgstr "Maw" + +msgid "Wed" +msgstr "Mer" + +msgid "Thu" +msgstr "Iau" + +msgid "Fri" +msgstr "Gwe" + +msgid "Sat" +msgstr "Sad" + +msgid "Sun" +msgstr "Sul" + +msgid "January" +msgstr "Ionawr" + +msgid "February" +msgstr "Chwefror" + +msgid "March" +msgstr "Mawrth" + +msgid "April" +msgstr "Ebrill" + +msgid "May" +msgstr "Mai" + +msgid "June" +msgstr "Mehefin" + +msgid "July" +msgstr "Gorffenaf" + +msgid "August" +msgstr "Awst" + +msgid "September" +msgstr "Medi" + +msgid "October" +msgstr "Hydref" + +msgid "November" +msgstr "Tachwedd" + +msgid "December" +msgstr "Rhagfyr" + +msgid "jan" +msgstr "ion" + +msgid "feb" +msgstr "chw" + +msgid "mar" +msgstr "maw" + +msgid "apr" +msgstr "ebr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "meh" + +msgid "jul" +msgstr "gor" + +msgid "aug" +msgstr "aws" + +msgid "sep" +msgstr "med" + +msgid "oct" +msgstr "hyd" + +msgid "nov" +msgstr "tach" + +msgid "dec" +msgstr "rhag" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ion." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Chwe." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mawrth" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Ebrill" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mai" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Meh." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Gorff." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Awst" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Medi" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Hydr." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Tach." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Rhag." + +msgctxt "alt. month" +msgid "January" +msgstr "Ionawr" + +msgctxt "alt. month" +msgid "February" +msgstr "Chwefror" + +msgctxt "alt. month" +msgid "March" +msgstr "Mawrth" + +msgctxt "alt. month" +msgid "April" +msgstr "Ebrill" + +msgctxt "alt. month" +msgid "May" +msgstr "Mai" + +msgctxt "alt. month" +msgid "June" +msgstr "Mehefin" + +msgctxt "alt. month" +msgid "July" +msgstr "Gorffenaf" + +msgctxt "alt. month" +msgid "August" +msgstr "Awst" + +msgctxt "alt. month" +msgid "September" +msgstr "Medi" + +msgctxt "alt. month" +msgid "October" +msgstr "Hydref" + +msgctxt "alt. month" +msgid "November" +msgstr "Tachwedd" + +msgctxt "alt. month" +msgid "December" +msgstr "Rhagfyr" + +msgid "This is not a valid IPv6 address." +msgstr "Nid yw hwn yn gyfeiriad IPv6 dilys." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "neu" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d blwyddyn" +msgstr[1] "%d flynedd" +msgstr[2] "%d blwyddyn" +msgstr[3] "%d blwyddyn" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d mis" +msgstr[1] "%d fis" +msgstr[2] "%d mis" +msgstr[3] "%d mis" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d wythnos" +msgstr[1] "%d wythnos" +msgstr[2] "%d wythnos" +msgstr[3] "%d wythnos" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d diwrnod" +msgstr[1] "%d ddiwrnod" +msgstr[2] "%d diwrnod" +msgstr[3] "%d diwrnod" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d awr" +msgstr[1] "%d awr" +msgstr[2] "%d awr" +msgstr[3] "%d awr" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d munud" +msgstr[1] "%d funud" +msgstr[2] "%d munud" +msgstr[3] "%d munud" + +msgid "0 minutes" +msgstr "0 munud" + +msgid "Forbidden" +msgstr "Gwaharddedig" + +msgid "CSRF verification failed. Request aborted." +msgstr "Gwirio CSRF wedi methu. Ataliwyd y cais." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Dangosir y neges hwn oherwydd bod angen cwci CSRF ar y safle hwn pan yn " +"anfon ffurflenni. Mae angen y cwci ar gyfer diogelwch er mwyn sicrhau nad " +"oes trydydd parti yn herwgipio eich porwr." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Mae mwy o wybodaeth ar gael gyda DEBUG=True" + +msgid "No year specified" +msgstr "Dim blwyddyn wedi’i bennu" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Dim mis wedi’i bennu" + +msgid "No day specified" +msgstr "Dim diwrnod wedi’i bennu" + +msgid "No week specified" +msgstr "Dim wythnos wedi’i bennu" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Dim %(verbose_name_plural)s ar gael" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s i'r dyfodol ddim ar gael oherwydd mae %(class_name)s." +"allow_future yn 'False'. " + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Ni ganfuwyd %(verbose_name)s yn cydweddu â'r ymholiad" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Tudalen annilys (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Ni ganiateir mynegai cyfeiriaduron yma." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Mynegai %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/cy/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/cy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/cy/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0265d87afad0860e9089ddc477c6431b760b0e81 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFKR!M)FS8^*Uaz3?7Kcr4eoARhsvXGoVkRKL!Tdhp7{@U$2?n{aF42KtdIt^yoeV~SV)Lrg4#i-0?`yc$bn=zDmPaxyWZ&q#yt3`qeLD-N8@a zhsWr0=DS6_F8uFtTIRl-N1H5Om4%ifJB&X)H!tahb2Puq>wc+Z}t6Ljw9QOVb<;Snv<1 C{KpUg literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/cy/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/cy/formats.py new file mode 100644 index 0000000..eaef6a6 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/cy/formats.py @@ -0,0 +1,33 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" # '25 Hydref 2006' +TIME_FORMAT = "P" # '2:30 y.b.' +DATETIME_FORMAT = "j F Y, P" # '25 Hydref 2006, 2:30 y.b.' +YEAR_MONTH_FORMAT = "F Y" # 'Hydref 2006' +MONTH_DAY_FORMAT = "j F" # '25 Hydref' +SHORT_DATE_FORMAT = "d/m/Y" # '25/10/2006' +SHORT_DATETIME_FORMAT = "d/m/Y P" # '25/10/2006 2:30 y.b.' +FIRST_DAY_OF_WEEK = 1 # 'Dydd Llun' + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' + "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' + "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' + "%d/%m/%y %H:%M", # '25/10/06 14:30' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..59b111a3252843ce3d01481081aae255db95c406 GIT binary patch literal 27799 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

QBYgrFZW?K5-a`X&8COd!`oV} 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po new file mode 100644 index 0000000..eb89a01 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/da/LC_MESSAGES/django.po @@ -0,0 +1,1341 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Christian Joergensen , 2012 +# Danni Randeris , 2014 +# Erik Ramsgaard Wognsen , 2020-2024 +# Erik Ramsgaard Wognsen , 2013-2019 +# Finn Gruwier Larsen, 2011 +# Jannis Leidel , 2011 +# jonaskoelker , 2012 +# Mads Chr. Olesen , 2013 +# valberg , 2015 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Erik Ramsgaard Wognsen , 2020-2024\n" +"Language-Team: Danish (http://app.transifex.com/django/django/language/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "afrikaans" + +msgid "Arabic" +msgstr "arabisk" + +msgid "Algerian Arabic" +msgstr "algerisk arabisk" + +msgid "Asturian" +msgstr "Asturisk" + +msgid "Azerbaijani" +msgstr "azerbaidjansk" + +msgid "Bulgarian" +msgstr "bulgarsk" + +msgid "Belarusian" +msgstr "hviderussisk" + +msgid "Bengali" +msgstr "bengalsk" + +msgid "Breton" +msgstr "bretonsk" + +msgid "Bosnian" +msgstr "bosnisk" + +msgid "Catalan" +msgstr "catalansk" + +msgid "Central Kurdish (Sorani)" +msgstr "Centralkurdisk (Sorani)" + +msgid "Czech" +msgstr "tjekkisk" + +msgid "Welsh" +msgstr "walisisk" + +msgid "Danish" +msgstr "dansk" + +msgid "German" +msgstr "tysk" + +msgid "Lower Sorbian" +msgstr "nedresorbisk" + +msgid "Greek" +msgstr "græsk" + +msgid "English" +msgstr "engelsk" + +msgid "Australian English" +msgstr "australsk engelsk" + +msgid "British English" +msgstr "britisk engelsk" + +msgid "Esperanto" +msgstr "esperanto" + +msgid "Spanish" +msgstr "spansk" + +msgid "Argentinian Spanish" +msgstr "argentinsk spansk" + +msgid "Colombian Spanish" +msgstr "colombiansk spansk" + +msgid "Mexican Spanish" +msgstr "mexikansk spansk" + +msgid "Nicaraguan Spanish" +msgstr "nicaraguansk spansk" + +msgid "Venezuelan Spanish" +msgstr "venezuelansk spansk" + +msgid "Estonian" +msgstr "estisk" + +msgid "Basque" +msgstr "baskisk" + +msgid "Persian" +msgstr "persisk" + +msgid "Finnish" +msgstr "finsk" + +msgid "French" +msgstr "fransk" + +msgid "Frisian" +msgstr "frisisk" + +msgid "Irish" +msgstr "irsk" + +msgid "Scottish Gaelic" +msgstr "skotsk gælisk" + +msgid "Galician" +msgstr "galicisk" + +msgid "Hebrew" +msgstr "hebraisk" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "kroatisk" + +msgid "Upper Sorbian" +msgstr "øvresorbisk" + +msgid "Hungarian" +msgstr "ungarsk" + +msgid "Armenian" +msgstr "armensk" + +msgid "Interlingua" +msgstr "interlingua" + +msgid "Indonesian" +msgstr "indonesisk" + +msgid "Igbo" +msgstr "igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "islandsk" + +msgid "Italian" +msgstr "italiensk" + +msgid "Japanese" +msgstr "japansk" + +msgid "Georgian" +msgstr "georgisk" + +msgid "Kabyle" +msgstr "kabylsk" + +msgid "Kazakh" +msgstr "kasakhisk" + +msgid "Khmer" +msgstr "khmer" + +msgid "Kannada" +msgstr "kannada" + +msgid "Korean" +msgstr "koreansk" + +msgid "Kyrgyz" +msgstr "kirgisisk" + +msgid "Luxembourgish" +msgstr "luxembourgisk" + +msgid "Lithuanian" +msgstr "litauisk" + +msgid "Latvian" +msgstr "lettisk" + +msgid "Macedonian" +msgstr "makedonsk" + +msgid "Malayalam" +msgstr "malayalam" + +msgid "Mongolian" +msgstr "mongolsk" + +msgid "Marathi" +msgstr "marathi" + +msgid "Malay" +msgstr "malajisk" + +msgid "Burmese" +msgstr "burmesisk" + +msgid "Norwegian Bokmål" +msgstr "norsk bokmål" + +msgid "Nepali" +msgstr "nepalesisk" + +msgid "Dutch" +msgstr "hollandsk" + +msgid "Norwegian Nynorsk" +msgstr "norsk nynorsk" + +msgid "Ossetic" +msgstr "ossetisk" + +msgid "Punjabi" +msgstr "punjabi" + +msgid "Polish" +msgstr "polsk" + +msgid "Portuguese" +msgstr "portugisisk" + +msgid "Brazilian Portuguese" +msgstr "brasiliansk portugisisk" + +msgid "Romanian" +msgstr "rumænsk" + +msgid "Russian" +msgstr "russisk" + +msgid "Slovak" +msgstr "slovakisk" + +msgid "Slovenian" +msgstr "slovensk" + +msgid "Albanian" +msgstr "albansk" + +msgid "Serbian" +msgstr "serbisk" + +msgid "Serbian Latin" +msgstr "serbisk (latin)" + +msgid "Swedish" +msgstr "svensk" + +msgid "Swahili" +msgstr "swahili" + +msgid "Tamil" +msgstr "tamil" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "tadsjikisk" + +msgid "Thai" +msgstr "thai" + +msgid "Turkmen" +msgstr "turkmensk" + +msgid "Turkish" +msgstr "tyrkisk" + +msgid "Tatar" +msgstr "tatarisk" + +msgid "Udmurt" +msgstr "udmurtisk" + +msgid "Uyghur" +msgstr "uygurisk" + +msgid "Ukrainian" +msgstr "ukrainsk" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "usbekisk" + +msgid "Vietnamese" +msgstr "vietnamesisk" + +msgid "Simplified Chinese" +msgstr "forenklet kinesisk" + +msgid "Traditional Chinese" +msgstr "traditionelt kinesisk" + +msgid "Messages" +msgstr "Meddelelser" + +msgid "Site Maps" +msgstr "Site Maps" + +msgid "Static Files" +msgstr "Static Files" + +msgid "Syndication" +msgstr "Syndication" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Det sidetal er ikke et heltal" + +msgid "That page number is less than 1" +msgstr "Det sidetal er mindre end 1" + +msgid "That page contains no results" +msgstr "Den side indeholder ingen resultater" + +msgid "Enter a valid value." +msgstr "Indtast en gyldig værdi." + +msgid "Enter a valid domain name." +msgstr "Indtast et gyldigt domænenavn." + +msgid "Enter a valid URL." +msgstr "Indtast en gyldig URL." + +msgid "Enter a valid integer." +msgstr "Indtast et gyldigt heltal." + +msgid "Enter a valid email address." +msgstr "Indtast en gyldig e-mail-adresse." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Indtast en gyldig “slug” bestående af bogstaver, cifre, understreger eller " +"bindestreger." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Indtast en gyldig “slug” bestående af Unicode-bogstaver, cifre, understreger " +"eller bindestreger." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Indtast en gyldig %(protocol)s-adresse." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 eller IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Indtast kun cifre adskilt af kommaer." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Denne værdi skal være %(limit_value)s (den er %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Denne værdi skal være mindre end eller lig %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Denne værdi skal være større end eller lig %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Denne værdi skal være et multiplum af trinstørrelse %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Denne værdi skal være et multiplum af trinstørrelse %(limit_value)s, " +"startende fra %(offset)s, fx %(offset)s, %(valid_value1)s, %(valid_value2)s, " +"osv." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Denne værdi skal have mindst %(limit_value)d tegn (den har %(show_value)d)." +msgstr[1] "" +"Denne værdi skal have mindst %(limit_value)d tegn (den har %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Denne værdi må højst have %(limit_value)d tegn (den har %(show_value)d)." +msgstr[1] "" +"Denne værdi må højst have %(limit_value)d tegn (den har %(show_value)d)." + +msgid "Enter a number." +msgstr "Indtast et tal." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Der må maksimalt være %(max)s ciffer i alt." +msgstr[1] "Der må maksimalt være %(max)s cifre i alt." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Der må maksimalt være %(max)s decimal." +msgstr[1] "Der må maksimalt være %(max)s decimaler." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Der må maksimalt være %(max)s ciffer før kommaet." +msgstr[1] "Der må maksimalt være %(max)s cifre før kommaet." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Filendelse “%(extension)s” er ikke tilladt. Tilladte filendelser er: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null-tegn er ikke tilladte." + +msgid "and" +msgstr "og" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s med dette %(field_labels)s eksisterer allerede." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Begrænsning “%(name)s” er overtrådt." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Værdien %(value)r er ikke et gyldigt valg." + +msgid "This field cannot be null." +msgstr "Dette felt kan ikke være null." + +msgid "This field cannot be blank." +msgstr "Dette felt kan ikke være tomt." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s med dette %(field_label)s eksisterer allerede." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s skal være unik for %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Felt af type: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s”-værdien skal være enten True eller False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s”-værdien skal være enten True, False eller None." + +msgid "Boolean (Either True or False)" +msgstr "Boolsk (enten True eller False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Streng (op til %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Streng (ubegrænset)" + +msgid "Comma-separated integers" +msgstr "Kommaseparerede heltal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s”-værdien har et ugyldigt datoformat. Den skal være i formatet " +"ÅÅÅÅ-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s”-værdien har det korrekte format (ÅÅÅÅ-MM-DD) men er en ugyldig " +"dato." + +msgid "Date (without time)" +msgstr "Dato (uden tid)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s”-værdien har et ugyldigt format. Den skal være i formatet ÅÅÅÅ-MM-" +"DD TT:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s”-værdien har det korrekte format (ÅÅÅÅ-MM-DD TT:MM[:ss[.uuuuuu]]" +"[TZ]) men er en ugyldig dato/tid." + +msgid "Date (with time)" +msgstr "Dato (med tid)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s”-værdien skal være et decimaltal." + +msgid "Decimal number" +msgstr "Decimaltal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s”-værdien har et ugyldigt format. Den skal være i formatet [DD] " +"[[TT:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Varighed" + +msgid "Email address" +msgstr "E-mail-adresse" + +msgid "File path" +msgstr "Sti" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s”-værdien skal være et kommatal." + +msgid "Floating point number" +msgstr "Flydende-komma-tal" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s”-værdien skal være et heltal." + +msgid "Integer" +msgstr "Heltal" + +msgid "Big (8 byte) integer" +msgstr "Stort heltal (8 byte)" + +msgid "Small integer" +msgstr "Lille heltal" + +msgid "IPv4 address" +msgstr "IPv4-adresse" + +msgid "IP address" +msgstr "IP-adresse" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s”-værdien skal være enten None, True eller False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolsk (True, False eller None)" + +msgid "Positive big integer" +msgstr "Positivt stort heltal" + +msgid "Positive integer" +msgstr "Positivt heltal" + +msgid "Positive small integer" +msgstr "Positivt lille heltal" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "\"Slug\" (op til %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s”-værdien har et ugyldigt format. Den skal være i formatet TT:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s”-værdien har det korrekte format (TT:MM[:ss[.uuuuuu]]) men er et " +"ugyldigt tidspunkt." + +msgid "Time" +msgstr "Tid" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Rå binære data" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” er ikke et gyldigt UUID." + +msgid "Universally unique identifier" +msgstr "Universelt unik identifikator" + +msgid "File" +msgstr "Fil" + +msgid "Image" +msgstr "Billede" + +msgid "A JSON object" +msgstr "Et JSON-objekt" + +msgid "Value must be valid JSON." +msgstr "Værdien skal være gyldig JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s instans med %(field)s %(value)r findes ikke." + +msgid "Foreign Key (type determined by related field)" +msgstr "Fremmednøgle (type bestemt af relateret felt)" + +msgid "One-to-one relationship" +msgstr "En-til-en-relation" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s-relation" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s-relationer" + +msgid "Many-to-many relationship" +msgstr "Mange-til-mange-relation" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Dette felt er påkrævet." + +msgid "Enter a whole number." +msgstr "Indtast et heltal." + +msgid "Enter a valid date." +msgstr "Indtast en gyldig dato." + +msgid "Enter a valid time." +msgstr "Indtast en gyldig tid." + +msgid "Enter a valid date/time." +msgstr "Indtast gyldig dato/tid." + +msgid "Enter a valid duration." +msgstr "Indtast en gyldig varighed." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Antallet af dage skal være mellem {min_days} og {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ingen fil blev indsendt. Kontroller kodningstypen i formularen." + +msgid "No file was submitted." +msgstr "Ingen fil blev indsendt." + +msgid "The submitted file is empty." +msgstr "Den indsendte fil er tom." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "Dette filnavn må højst have %(max)d tegn (det har %(length)d)." +msgstr[1] "Dette filnavn må højst have %(max)d tegn (det har %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Du skal enten indsende en fil eller afmarkere afkrydsningsfeltet, ikke begge " +"dele." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Indsend en billedfil. Filen, du indsendte, var enten ikke et billede eller " +"en defekt billedfil." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Marker en gyldig valgmulighed. %(value)s er ikke en af de tilgængelige " +"valgmuligheder." + +msgid "Enter a list of values." +msgstr "Indtast en liste af værdier." + +msgid "Enter a complete value." +msgstr "Indtast en komplet værdi." + +msgid "Enter a valid UUID." +msgstr "Indtast et gyldigt UUID." + +msgid "Enter a valid JSON." +msgstr "Indtast gyldig JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Skjult felt %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm-data mangler eller er blevet pillet ved. Manglende felter: " +"%(field_names)s. Du kan få behov for at oprette en fejlrapport hvis " +"problemet varer ved." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Indsend venligst højst %(num)d formular." +msgstr[1] "Indsend venligst højst %(num)d formularer." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Indsend venligst mindst %(num)d formular." +msgstr[1] "Indsend venligst mindst %(num)d formularer." + +msgid "Order" +msgstr "Rækkefølge" + +msgid "Delete" +msgstr "Slet" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ret venligst duplikerede data for %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Ret venligst de duplikerede data for %(field)s, som skal være unik." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Ret venligst de duplikerede data for %(field_name)s, som skal være unik for " +"%(lookup)s i %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Ret venligst de duplikerede data herunder." + +msgid "The inline value did not match the parent instance." +msgstr "Den indlejrede værdi passede ikke med forældreinstansen." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Marker en gyldig valgmulighed. Det valg, du har foretaget, er ikke blandt de " +"tilgængelige valgmuligheder." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” er ikke en gyldig værdi." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s kunne ikke fortolkes i tidszonen %(current_timezone)s; den kan " +"være tvetydig eller den eksisterer måske ikke." + +msgid "Clear" +msgstr "Afmarkér" + +msgid "Currently" +msgstr "Aktuelt" + +msgid "Change" +msgstr "Ret" + +msgid "Unknown" +msgstr "Ukendt" + +msgid "Yes" +msgstr "Ja" + +msgid "No" +msgstr "Nej" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ja,nej,måske" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "midnat" + +msgid "noon" +msgstr "middag" + +msgid "Monday" +msgstr "mandag" + +msgid "Tuesday" +msgstr "tirsdag" + +msgid "Wednesday" +msgstr "onsdag" + +msgid "Thursday" +msgstr "torsdag" + +msgid "Friday" +msgstr "fredag" + +msgid "Saturday" +msgstr "lørdag" + +msgid "Sunday" +msgstr "søndag" + +msgid "Mon" +msgstr "man" + +msgid "Tue" +msgstr "tir" + +msgid "Wed" +msgstr "ons" + +msgid "Thu" +msgstr "tor" + +msgid "Fri" +msgstr "fre" + +msgid "Sat" +msgstr "lør" + +msgid "Sun" +msgstr "søn" + +msgid "January" +msgstr "januar" + +msgid "February" +msgstr "februar" + +msgid "March" +msgstr "marts" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "maj" + +msgid "June" +msgstr "juni" + +msgid "July" +msgstr "juli" + +msgid "August" +msgstr "august" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "december" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "maj" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sept" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "marts" + +msgctxt "abbrev. month" +msgid "April" +msgstr "april" + +msgctxt "abbrev. month" +msgid "May" +msgstr "maj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "juni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "juli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dec." + +msgctxt "alt. month" +msgid "January" +msgstr "januar" + +msgctxt "alt. month" +msgid "February" +msgstr "februar" + +msgctxt "alt. month" +msgid "March" +msgstr "marts" + +msgctxt "alt. month" +msgid "April" +msgstr "april" + +msgctxt "alt. month" +msgid "May" +msgstr "maj" + +msgctxt "alt. month" +msgid "June" +msgstr "juni" + +msgctxt "alt. month" +msgid "July" +msgstr "juli" + +msgctxt "alt. month" +msgid "August" +msgstr "august" + +msgctxt "alt. month" +msgid "September" +msgstr "september" + +msgctxt "alt. month" +msgid "October" +msgstr "oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "november" + +msgctxt "alt. month" +msgid "December" +msgstr "december" + +msgid "This is not a valid IPv6 address." +msgstr "Dette er ikke en gyldig IPv6-adresse." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "eller" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d år" +msgstr[1] "%(num)d år" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d måned" +msgstr[1] "%(num)d måneder" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d uge" +msgstr[1] "%(num)d uger" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dag" +msgstr[1] "%(num)d dage" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d time" +msgstr[1] "%(num)d timer" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minut" +msgstr[1] "%(num)d minutter" + +msgid "Forbidden" +msgstr "Forbudt" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-verifikationen mislykkedes. Forespørgslen blev afbrudt." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Du ser denne besked fordi denne HTTPS-webside kræver at din browser sender " +"en “Referer header”, som ikke blev sendt. Denne header er påkrævet af " +"sikkerhedsmæssige grunde for at sikre at din browser ikke bliver kapret af " +"tredjepart." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Hvis du har opsat din browser til ikke at sende “Referer” headere, beder vi " +"dig slå dem til igen, i hvert fald for denne webside, eller for HTTPS-" +"forbindelser, eller for “same-origin”-forespørgsler." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Hvis du bruger tagget eller " +"inkluderer headeren “Referrer-Policy: no-referrer”, så fjern dem venligst. " +"CSRF-beskyttelsen afhænger af at “Referer”-headeren udfører stringent " +"referer-kontrol. Hvis du er bekymret om privatliv, så brug alternativer så " +"som for links til tredjepartswebsider." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Du ser denne besked fordi denne webside kræver en CSRF-cookie, når du sender " +"formularer. Denne cookie er påkrævet af sikkerhedsmæssige grunde for at " +"sikre at din browser ikke bliver kapret af tredjepart." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Hvis du har slået cookies fra i din browser, beder vi dig slå dem til igen, " +"i hvert fald for denne webside, eller for “same-origin”-forespørgsler." + +msgid "More information is available with DEBUG=True." +msgstr "Mere information er tilgængeligt med DEBUG=True." + +msgid "No year specified" +msgstr "Intet år specificeret" + +msgid "Date out of range" +msgstr "Dato uden for rækkevidde" + +msgid "No month specified" +msgstr "Ingen måned specificeret" + +msgid "No day specified" +msgstr "Ingen dag specificeret" + +msgid "No week specified" +msgstr "Ingen uge specificeret" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ingen %(verbose_name_plural)s til rådighed" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Fremtidige %(verbose_name_plural)s ikke tilgængelige, fordi %(class_name)s ." +"allow_future er falsk." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ugyldig datostreng “%(datestr)s” givet format “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Ingen %(verbose_name)s fundet matcher forespørgslen" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Side er ikke “sidste”, og kan heller ikke konverteres til en int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ugyldig side (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tom liste og “%(class_name)s.allow_empty” er falsk." + +msgid "Directory indexes are not allowed here." +msgstr "Mappeindekser er ikke tilladte her" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” eksisterer ikke" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indeks for %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Installationen virkede! Tillykke!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Vis udgivelsesnoter for Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Du ser denne side fordi du har DEBUG=True i din settings-fil og ikke har opsat nogen " +"URL'er." + +msgid "Django Documentation" +msgstr "Django-dokumentation" + +msgid "Topics, references, & how-to’s" +msgstr "Emner, referencer & how-to’s" + +msgid "Tutorial: A Polling App" +msgstr "Gennemgang: En afstemnings-app" + +msgid "Get started with Django" +msgstr "Kom i gang med Django" + +msgid "Django Community" +msgstr "Django-fællesskabet" + +msgid "Connect, get help, or contribute" +msgstr "Forbind, få hjælp eller bidrag" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/da/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/da/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/da/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f24247797f2221a5e8edae2180fd7bc5d40eeffd GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFdhp7{~2kQj#?7Qf)i!kPC-M8@WeQHCjkPD-iLb2@44^9)i+Ar~*+nKFQ9z z?JM=VQ@_E~%VyH0BbqHge*VAb#kO1whkeAxw_jeGaR~ivM0<3Y_`p_q&I}-m08ZXWp`-yd4^l4qb#J#d!3WHat_2Y!F_%Pt!qua_KNhu_Xv{>Xe)%7g#ASVQNFVXr zdn`S$cOr8#qyt5E)o^avhV0UTs~gYaw28FA$X8`MG%VBA_60AVlp_0kGIBJ_cEfhp zSO3sKySZ*VO{O1O^YD|Zexzr+GTmHw?%#e6ef@lmLq1Z}OWlyKLq}c6w(MFqJ##h7 zb7WI#u~XACE>t_bvMq0+n^!;3hG$RTnaB8Y7I Y&YLeR-!MZ6!R^`M$!~!pJi!9~183K&(EtDd literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/da/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/da/formats.py new file mode 100644 index 0000000..5829208 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/da/formats.py @@ -0,0 +1,26 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j. F Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..e3ef1cbf9a6e58a526f163c5f4352c7c699c3857 GIT binary patch literal 29167 zcmd6v37j2Oo$res!lGf5MWqr5bW3-KunB>H>2x~jB%QSB4v++h)%RB4TlBqEP1U{K zbc>41!zYf)D7doBI1!g|bW}v07YAqJJ_A1WIc_5&%2UB{a6`s*zQ1!$-Fv%pv%v7i zSD&2z)j4(c^FROd|Nqbb=7FORyw&5`x}WDg8~o)w&-)VZ|9qTMJ@3%xcwPz~2CfFL z2bJ$LApg9F_;V5HJ=gOt04@eE1nb}l;0M8zz|VvH^S;j?mEZpqn|_MJrJ&L`fd_%9 z!|NQr)Zwcf-UKcn-_79u;DRCpz{3&d>*(zgH^m6)V!Vts@!@|{oe%62e-QKRnRAXBX~OaZcyX7 zA5{Hc2UYHSpz8S{_)PGppvM14Q1uS9!0zdRQ_e)8DJl%aurbHc?qa?-UzDx zcYs=lzXU}W9|SdyAA>dUXW*N`u~R*768t@QGgxD?wu1*P^1OF~?*lIe2N}#;z?;Bj z;6gfa3HTyVba*HDEb!Y7e*tP<5AX22lfjcgn(&_Q;#)zDcM8aQI5m{?_KssQ4+Ad-4+Z-jZUD8Pt^h^9 zli(=$Vo>=X01p9w1ggHrT>8OhvL?iz32I#~1rGrGU3?9waxVn8fSW|1Qrv0z48_`bnVLJq^5iKhNs`Uqk%W-JbU$a6X;X zxORf7|MQ^c?|xAAJq)U!kAa7SPk<}H0~dQ9O?sOerMZ#e5}LM9bVvY4XA!y3Ho3Ns{c2FqKDUm8pmBO{r#Z& zaW}XW{FqDsIoMD9Hy~a2mY?H!37CSAs`n7s3m$o{=dA&Uz}4V8K#l(gpyvHi@L2G1 zP~$rMJUgyugX-5gpyux)Q2k!((nmne^OY|BMWFIU;7V{BTm{|>YMu`{-_|!D)Hibeq{pxe^wV?RNCQ$jW1=XLIfk%L^237tRQ2Y4Zpjih{{o3#Ow!VWvl{>=W zv7qSv*`VgR!(orZb3yfEDJc40?yw(JJ8MCXDlY;Tg0BIYYVZ9ZB;Y*=iccPWf#q96 zpvF-JbuPaKd=|JJgynlXK=t232k$cocXJ zsP=k6<-ZKn{)s@1^Q8`7;qXR>H#vO0!#6s7v%|MLyu;x;LD9oqpyua;F8ywY9|y%3 zcDV2Ny7W(j+8>_>p96jk6rKJ86g?gP0?*qBUIbnSz8(z0hrz4BwaYEO7rd7EAuy2< za2i|;-Vcf%{s4A@i&j`UV*_{&@z;Qmg7-=A0PqR$`u#lbci_#$r&l6Ff%Ez;J#7Y0 zCZ2&b>AeAz-0@|QCHIb6W#xf&;B$$G4qpXIF8C{lp8`)J{v8*80u=on2h$Ut>~Mj@ zGaPnO#D0G@!$_Y(c^EyL%|~l?0!5RJcRgZ;0a(CxBy%Uo&lCX<$nXHb$%_Ct@J8?y@Mqu>a6X&&FmMH^c^?F|j+cR=yQ@Lb z>m*nOuLqU?5m5Pm32Hun@8U;XZt3GV@CeceLG6bvpz6H}RQV9R9!y;PCk`J6mCw7v z%FBm>^N2pzVJE2moC~U+r7pb>RC^o1!@(;-@r^P#!A7ir?;!r2&5RwK-eULV_*RP( zpw^`hs{9*3jqe>Uz8&l%{9< zm%BjC*ZaWZ!H_YF|v{k}^-=4v}nCxIH@x!^_Mg$@j+1Ofx}5q<9;o83U~{s{@)F1JUc**`-`CFj5?1^T9RX8gM0eE2wdN8&tW6LACQ!Q0;m} zn|>mw`WHIv22UY=0Vuw91*r06Q01=$PXb>Fc7b<*$ASL@s$bs&)vq5o{0XS~e+g=S z{|Jgc4i9brPH?!;VHbEH-_Hj%PZxoUzya_yFmdr)zzc}~9jJN#1-KmS8MAuJ1h|0s zpF8{rcslW~fs4T3f$HzVlI`CjQ0<-to&lZ*YTsT3D&G{Sd6)q;udf6(p4WkzkGFy9 z@7K($)}^}XV766_>?1NdC?RN3AL9Ofgp!(bE(gz$4g3A9w z_x&=LeibPG6o3oC8Ynt@3)l^Q667fJ9tE}jy|Ezy?>3O7@eWFCJOO8je*@$w^@b;` z{`_9>T;ksXRo^qNwRWy$p!UJ_p!m^8LCx2rAj|Hp;}2CC+3G@YKH)*aD+s?P{D3g` z>8H#ONjwrffp8n|hzaJolsK%=dzp*(fbS(hR$e#XHW7Zs`|AkWm-+Ku_o6v^m3u#r zym~aw|7+f?ZD<+k&mf5ZPZOT)z8&oHZw8kTKI77#r98xUfSO}HqMb#golp3mybpq> z>jTf(1ntSk6yfW%I)XMDm{PxftR1;5%6g8 zKq7{Q?g4*9SVy>%u*#Jm;{D$UYl#0XsAnbbumtaeCT4m1u`a)oP9!WOt}}HFVFmB+ z1aBvZ?j9$+h4A-;w-fXXljl_M0m8co&m{gi@D9Q+2(KqxPB@C7=Uap?5UwIzL0&zt zwc!14hk|8nJ3 zAHjDJwvhjy!42SQ@XrW(jV&0c(WF z#oq|tM>vA~`-9@uXY$?+E(I?q{EqiMJ@@l*%w<^M@DpG!WeqcTX^X)VN!y?BX_xj- z;2#MGkhY%i7rbu-{};HK@MFTi5=w;A2zqX{;C%}0A+Mf?2@44q5Z+2yPWl<(b%bXU z{+jS5LPofO@P5K?3AYe_Nq8ao?*+d|SVZ^$;Vf78ao|gdpG>%f5D+dUpM_gp5 z!;gT6k^WcUhY1@9FCi2NdcHyM_2Qldh1(8wejIc#ArUK`pFB)vz=33rW3Fj32t;Z8d*1^rN^IrW0vc3yZw_%Hz)@ap*7V zDAdz5jBDGJrlij7B0sA6)nHl$gX(Bhswef#PtrU&PHKL5U6j>&XmTtHE5&V*uTN~NO;6CGsVGgVomuyyj#@%RX;=wrQ4(k6 zXhN;*_G8A^YEm?wn>MLzQO9IZsfV4ZUrfTxpVfa;c3T{nNi*eY zmx39M?^-ghS38S-F_@<7jdzX1M#@P&ofT<*sz!0W7B)WG zXv^m$u9cf#6>EN+3d8ZnH$|GCro*7wq9Xc~MKdAY9Gx}|w#4|D`Kx;Mcdhw5X#NhF zzaza~$Lgq93}fF+pwFnx+;;L7rfHIPW?q+%ptbbUo(0}=f6efQ^?ovXO<1UT%Ll#X zV`(%V1aamquZ#w96vVug!ju<(c^ZsH1#kI88dbbJl9nLeNE!X%2?}IoK2<|oGON{9 z(pz3HL6|^ROM{B?u8d0+lXoUeM}z1ZN_xFP2GM%GkX~BPRIWFSOXT-@qmtioftia= zvzO?R*PA4jkg7UXLTzE{kEBpM1m7Q2vaqx5=PvtExz=l|kts7h?M;K3$aHKdNo({r z%;*UFHK7w}RHLhnF89_erN9iUx6Vk(xMFx?zdy+&jYS2sYy7bws)WTJe`Cmq*pk60 z)souvk*#3XmnSHOX&g8(nc&X9zl~q>54~oS!%rasVwP_#XV^!j!or^*x$TG)-dQ6Mk zLS=KaV<@V}%V~CHoYm=FtsF33^~-hEuO>D*X0KI)>tH@bH`<9xP@wxywImGh$rO!B z93Z11++V#6o4rU_{U={l_B7UIPQQdb@Km~?lXFg4Xm^aQCLZUP1IUJxGhu1%0u=p1 znT=B5@bx>G6XoFOgR9iaoyE?UKJ0Tn+1@KMhh5$q_Oas~iOywEo zbnVI1*xJE;tWl5_b5UjE!YstuyQL!=6<OO&_L`Az=OO$0+%GpX0bIB4viDy%p zUCMp$*KSIe5Qjw7FriqCo^uAKT1(~*Yd6I!aKe2mt2P3Tkt*{CpEtc%oi^QYQD)U7 z8zyDbEpuKvnKR^S96!n~HJC(2>mvP65Sd5<-=t#GQ0IOaN#k2HxZ(|%FMQRX*gmeFYu zR5eg6>Rpy?%`Z}n)Q&$9AlLUtu@P_kE0T~{fC(L^xggV@ zq@zae_IL}UQtYn{r~MA~mh+d@L0LeIVeCe=;?)eN)9Xk3LrCdQBL!(CfRTRt>xj={ zREUkyoIrNwTP07Tg= zs)Z1$o8EH3&}efEvq4IuOnK^$rpZ*M(}HeCnW2{g`hO(m(3q5Nq$p7mgRXLX)!-@; zU1UQrD!JM*yhJHtNi14-lCrxobKGtw4OQpK_oUqfKjnU{9vK-L*7&6i$$qhKJuZzx zpVa_GWkC9exDIxcTq!|iCK-j%Y|8$K;DeY+Fl?N%Zo}Z zGkST#PIF3_eK%hlbxhC=zhhB{aGPc5omr6Q(b~Ifg4l4(H31s9 z6w)ZM#>?K?auroi|M7*v3`b%p@kg|>#0VW z+4ee(ki$nq=AsrG20$7Q-5|CeIgtz?ReFZ-#-$G8TuFftn@zBcF`cOVHm0 zI<_BiUa)Ja2x|a!>$HR>>C<#~E$N2GISwr1ka25Jnshl5!iEPm5uB%n*!(KE}5H0L!*6VqPsrFYys;;SX6?Uv?-P#tB<0T7`4BB zvcEzs%}gkVRAPCqPBez8S=OK#Qi9Hft!s8GGI7mLk!5REN;(zl?D2b(@#;>lgV!f{ z%KB;eUp7w4q%|9?uU9HfWzL-0t>%FqZv*B785B0eq1KtrDn4q=0A`stq#Oa>h76IO z^Jr+$8`3sot#pjCRXH?kurWj^=u?YsRA_M$)pn&d2ju|W;VX<{4nRAA69KAK#oX~$%d)XI%2^0N6kl$&QQ&ABe^ zDO0oK&0J0|g{xv(-Azrq(qy2#u406kB#LZEK({@YG0@QN^2N>>uJnZ)$x?pV_9@1tfCei$mNJl35(m5 zpo9A^Z@A9rVA5Kmsi2G<84P9C^@gV<{u(aijRe<3#hvXPcd3piX*toNU)koe9KNXWUOoJ_mmNCAY zZ!vwG^@;LMzQ-JIsw2frliNqLO%Nkx7N}fLGcE5376ET0nTQH7b1U{E-1B}qa?C|O z20YFl#D3N)4T|uGB*rR}llusl8w6WZJslT;jDSc=AlC0Fs4VrD`!E}cmHzUH2@e~F zx2agIr!{ZWxUBcuSg8FRN*N0>jiPUE`XX+8YT8{XU&rHQid+*Ys%RZJh8w`sb>Bzc==Mo|+l z6aQ)OAr!XR6YLn3%a&hRS|(=gIG2TSI8&GM*tk@>EDCEz3=BP9r=%y9S%GB>%eC4> zwsi60Vp7O@ispU*RZjO=Jy;nQhw)+~QprHjnJq>pkPetFUWn|;-4#0KHbXuOSx=*O zB@;BBF1*C$6lsLn#ft;0fw>EamMXo=k*WxAG?B>VVTEPg3=fj5s#}aK46WeCG&l*q zp{*Om%IYjquX4(i)v~D;IsH{i7W|1z;Y=G8OM=nuroz!&zw1H}#vmbnZ^S#YX~AjN zYQS2Eoc7JppM~5$bB#i3kQrr(1~8^Ht~X2zx%TLmanuZ_%$;39ynuc%inIvd!h9-C zbe{)4cgRK$w~DFdzm5%P`gB;M0GQFZEPuMu7#5vdT%Ix|jx9zQ)!~vYKD8L4!|atN z`x=UbAxI_wY0a!rUX$J1vOSZGo`ry-4b5?q8w8{P!BtqNpaV?fVoM-;e^sE>;$8v zEolw2WJ_AEcef^)0X8eQqie?9&{`81S2NmBcv{kO)uts$qq4#l zOYH>{sTb5s9=DC&SUBpz1ifo;)4c}4q>7w@#_Uz2VjPvqH7`!kV&i1eOSth*Qg1?3 zfN|EF<{*ocE;5gXo-tm?>}f3*v;8*Q*KzyJv4#AcF>*zZ&0^l$=GtTo@uroQOy4Y?SuXN4!c-hC2v%F-UL>cEgW6Y^)T}AKmhODI3Jy7hvOh%C;Ug}#JY~Ds= zkLw=HN>Q=9w_eJ+N0O!fyrB)<8^cL1IFh)#kF{LtpMBPnbGpwuxBKk#{IkwqdhUg1 zp2ah79rl=Rr06(9tw_?P=!xk#Zg8s;naoj>WB+1V-Ch8LBc019m)sN9FX^Jvv(KRp z8D~pj_edC2m-?$rIln^^BLZVEG0}rV3|B{E;dMq;ZE;i3z0#S|miiZrMzuyS znYnP@kh$II?w7Q~J%+vP$(Egc5q5gr`z-5-{RPYXC7l<|^Q@UhyRS3z$1!;$Kw{6M zn$+I{q3qVd(C6B)j1QrFZR#~=zcB8J=npj?qc7S-7mU{rabZc2_A4$UmyO&tW5uo^ zoy(pvF5B0*I08hTU(vOABciPB+#ws7_U)dX5L^0_(KSr~Y8tjU-pt8>Poi<9Gy^x&qIPHb7MdwVunpxDU{ueByJfQ| zrblKRp=uus%QLZUX=|Dq2{g#Yd(-7`xTc%k#y1;{8}Y%}4vIF~@)>=!*37I}v#!e% ztaFWzCe|#uCMY*u6ctfU=akqx%SBPKy}BrhS#aAnPFBBP*SxtuT6;Iem7Mj`47=^( zdXvWPynK$YVutTj*P3)Wapiszbc4lW`c4>PK}x`=dDOi zw%6s_gB_MnYrD1jGtSM?aA;IUv1RAdXxdDJ%=k2_2TX@GUP8#WN5;9)y~@GSaSe8d{w@O<3)D)}tL-j;g0b4Otu20FubUYk_#6vXP`de~U4wZ?@&j*!~B zp}!6mgjI{1iF|e`y*{c|{k5{C!4iV{7`{Ad896%iS4WjG>>HZ5AVsAm36aLB_iTBV zOxGP6;zKvwk&`DPhgexOWYrG~kTYX_VLv7xOCX_21leTla9XkhJz3O*} zqiiahe8yK&X-OHaeNJLfhgj6#QFwah&(teBw?k0Ov)?OzQ^38rFPyQ8055W^6j^!e zcHX1rae!olLj%lA%snw$VO^J&Tq4qEJJ#;GzLed4IEFWUDRq!!Tq|;yxSsnXZaf(b zwoQh*vU?EkgYM^-ABhX-4FX?TaNYqXu@Y#HqnXOqr%rXP&nQPPj)}`ja$j z2v~!}{LPkjMBM7#xKD#^@q29K-|K+?zi4~b;{G>}`%l&OT=!MU%7%hDA3({$-BC z>XP;@tf~{*+VrF7>#I@|04T&ie)w;ffRvg72&Lcb41Edx+)G0I9M ztC_P)=cm~Wd_hQ&fYQwA4lo_j%0t$+xwc4pYx|{yNPtci8h6+HaNL)yc0js)+ND%$ z|61$cHD}9E{5)sYDm(9`C+;xcODR zn2*(;EtKq%j}Em|m`jR#$+oB7#f|Rmo~RmG_{A35@J!ew9jRk zGNIpgGsO5E7VG#_If;k6HZGQBqi~~Xsd1JYuoab^y&ZSpN)ad8rZ1R0YVm+G$G82< z+%?2>tT5IYSXSrRvU(+`kHUCYrsgH|O%1jzBbIc$)XJ>w9D%6}RwQY9Vk{^+Utr|b zRWPI4xKt4%c%vKP#Dd_BS8r8nVP)qIT#iumWQ!<BxkD3k79Q(2EaBfe4(qKC8>lu1`;jSlW`vwJs5pY zngnGx?$K-bw(ix&YgoVQo6-bh7vq+beGu0W=XInEN77W}0ff%daCs+F^FqXv~j zc}ua;8Dkkm+bGg(`JMN0a6qCcMHS9{bRGyUW`63m89dC&HN1YX)UQH6){2*+QGV}7 zIX=7Yn6BXC4wtZA#W=FiL(SA~{E9Uz#zeQy_!iI9{XTAlYe*C{jr+UliblG^It=T^ zaRBp=xE)uA)~~o2qF+aohP2CKUR{3G5Pox#S_EFxTv5V=Kdff#s+d$dI*cCBy}`K^ z-zIAV9#Y!iG|4r!YiD-fcIgmO3kFeh<=NUPqe$jUKWmNb1`(~>rFJIJ)=}6V_t#^( zfDE>W0d?6KwOTBu2Kgk<9*CjCCqLo=`6>5Cm7>SAU}h+kVV3OUcAm=GR{8mcZ!r|% ze3jXCPDIJX12H}@Bi2CcJe3_qFk8M1(Z*Ss9QJ0&FjkyQ@=Dwq?t{a!_PIQk@$gdT z?CmLlb-^ao@toqqG_qdHCavkXoFV?&q!#C8n-Iw**}SgPg}N%oi#e#9H*2-Xx$c)XT*VVBa_WOzOat#3^7|S_J4;?fS}=rVXZbcpOrwO= ztEF%XFNUy^-#p=NtGh(CZMTNnve!_YNk(pSd$M_*qob8yqF{lv_Chu1?yQV*EKNGs zjheOmDM(u{kjxVSJ|kg%?UAjsu3>S4CGy&+PPi4 z$1;={$4jlC**KQwrEplj)sm5A%+1FvC63vgGU73K7&d0GarPB;`q*nKofL*42BWN8 zgl||wuWn@DHMcGb=4PK|r)gAPuZr95Yi`q(*_Go~Y0sJ27aRbrOfXv`wc)~D&CUMCn_J{O9PqD-epkYoyKKC<3+3)r7^_>T-7HY! zbX{K0@G0h}y*N9*Zo6or_+(CVa#|%tPz|gCHoR6FLT4U#F zPIBXj8kVOwU1+Fqp0f{+>u0bHr*9pxEl18xbJMw7;FVlijxudH&9~%=*&O_k z%Pyg_it(SH_)B)1$q+6l|-`q-=jA7Fd)+>%4S;%#zh zhtNA|AVo7u{gg<9vrV&3qkr zf_6Fwb5q7SnX?kJyv#90>Hm`&X!SD3)0=BSE=tWc3ro{td6JHTJG^d%C9e5eGet}I zbd%7!W)i}%HId&OMMl72QpUNy+klMK5ZtYsxqj7ZJDSnHc{8M&b49lqsI$e)w_!p= zDiH?Liy^k0VOrCuTXW-e&i{jB*b|f8U^ormbJN~a_V?Xa&vO{6+@tu}T8!yE3$63H zbP#tvZDeKZ(2kghoCjqh+#C6Ridpt9N6WGT)EZ74<~|FxvxqY5>4Sg7;YCmV7Zp#@kKJEp92gCC zn`>QTb!Hiid%9I2?6S@>TNnh^LB_Jn*N*Iex?w;Lh=4M`SMPd`VEXGIMW-yF4XMFa8 z(Xm8Ro0BSK4;00iE!^PfzV+8O40LX8{br5sv3hys&aRYMgApcow0RxzEl$74HyQsQ zq7MAsbfR6g)*98Uu#Jzh?6Xfp%`IJR(};1}etH^`N~U4?)`6SGw#t8dmIL>`wImBf zZeh;tc5S`59h257i%+*KoFrlX2gedjd=IPAwxPXGSf@Q3+BMm|7=^T6&Hk%RH=Ae~ zl%vMo49F0s>63FJGNP%KG~1GUvp_!usn-|G(kB V7oX!uxYvTpzl&R;D, 2011 +# Daniel Roschka , 2016 +# Florian Apolloner , 2018,2020-2023 +# jnns, 2011,2013 +# Jannis Leidel , 2013-2018,2020 +# jnns, 2016 +# Markus Holtermann , 2023 +# Markus Holtermann , 2013,2015 +# Raphael Michel , 2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-04 06:49+0000\n" +"Last-Translator: Markus Holtermann , 2023\n" +"Language-Team: German (http://app.transifex.com/django/django/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabisch" + +msgid "Algerian Arabic" +msgstr "Algerisches Arabisch" + +msgid "Asturian" +msgstr "Asturisch" + +msgid "Azerbaijani" +msgstr "Aserbaidschanisch" + +msgid "Bulgarian" +msgstr "Bulgarisch" + +msgid "Belarusian" +msgstr "Weißrussisch" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Bretonisch" + +msgid "Bosnian" +msgstr "Bosnisch" + +msgid "Catalan" +msgstr "Katalanisch" + +msgid "Central Kurdish (Sorani)" +msgstr "Zentralkurdisch (Sorani)" + +msgid "Czech" +msgstr "Tschechisch" + +msgid "Welsh" +msgstr "Walisisch" + +msgid "Danish" +msgstr "Dänisch" + +msgid "German" +msgstr "Deutsch" + +msgid "Lower Sorbian" +msgstr "Niedersorbisch" + +msgid "Greek" +msgstr "Griechisch" + +msgid "English" +msgstr "Englisch" + +msgid "Australian English" +msgstr "Australisches Englisch" + +msgid "British English" +msgstr "Britisches Englisch" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spanisch" + +msgid "Argentinian Spanish" +msgstr "Argentinisches Spanisch" + +msgid "Colombian Spanish" +msgstr "Kolumbianisches Spanisch" + +msgid "Mexican Spanish" +msgstr "Mexikanisches Spanisch" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguanisches Spanisch" + +msgid "Venezuelan Spanish" +msgstr "Venezolanisches Spanisch" + +msgid "Estonian" +msgstr "Estnisch" + +msgid "Basque" +msgstr "Baskisch" + +msgid "Persian" +msgstr "Persisch" + +msgid "Finnish" +msgstr "Finnisch" + +msgid "French" +msgstr "Französisch" + +msgid "Frisian" +msgstr "Friesisch" + +msgid "Irish" +msgstr "Irisch" + +msgid "Scottish Gaelic" +msgstr "Schottisch-Gälisch" + +msgid "Galician" +msgstr "Galicisch" + +msgid "Hebrew" +msgstr "Hebräisch" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroatisch" + +msgid "Upper Sorbian" +msgstr "Obersorbisch" + +msgid "Hungarian" +msgstr "Ungarisch" + +msgid "Armenian" +msgstr "Armenisch" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesisch" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Isländisch" + +msgid "Italian" +msgstr "Italienisch" + +msgid "Japanese" +msgstr "Japanisch" + +msgid "Georgian" +msgstr "Georgisch" + +msgid "Kabyle" +msgstr "Kabylisch" + +msgid "Kazakh" +msgstr "Kasachisch" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreanisch" + +msgid "Kyrgyz" +msgstr "Kirgisisch" + +msgid "Luxembourgish" +msgstr "Luxemburgisch" + +msgid "Lithuanian" +msgstr "Litauisch" + +msgid "Latvian" +msgstr "Lettisch" + +msgid "Macedonian" +msgstr "Mazedonisch" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolisch" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malaiisch" + +msgid "Burmese" +msgstr "Birmanisch" + +msgid "Norwegian Bokmål" +msgstr "Norwegisch (Bokmål)" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Niederländisch" + +msgid "Norwegian Nynorsk" +msgstr "Norwegisch (Nynorsk)" + +msgid "Ossetic" +msgstr "Ossetisch" + +msgid "Punjabi" +msgstr "Panjabi" + +msgid "Polish" +msgstr "Polnisch" + +msgid "Portuguese" +msgstr "Portugiesisch" + +msgid "Brazilian Portuguese" +msgstr "Brasilianisches Portugiesisch" + +msgid "Romanian" +msgstr "Rumänisch" + +msgid "Russian" +msgstr "Russisch" + +msgid "Slovak" +msgstr "Slowakisch" + +msgid "Slovenian" +msgstr "Slowenisch" + +msgid "Albanian" +msgstr "Albanisch" + +msgid "Serbian" +msgstr "Serbisch" + +msgid "Serbian Latin" +msgstr "Serbisch (Latein)" + +msgid "Swedish" +msgstr "Schwedisch" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamilisch" + +msgid "Telugu" +msgstr "Telugisch" + +msgid "Tajik" +msgstr "Tadschikisch" + +msgid "Thai" +msgstr "Thailändisch" + +msgid "Turkmen" +msgstr "Turkmenisch" + +msgid "Turkish" +msgstr "Türkisch" + +msgid "Tatar" +msgstr "Tatarisch" + +msgid "Udmurt" +msgstr "Udmurtisch" + +msgid "Uyghur" +msgstr "Uigurisch" + +msgid "Ukrainian" +msgstr "Ukrainisch" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Usbekisch" + +msgid "Vietnamese" +msgstr "Vietnamesisch" + +msgid "Simplified Chinese" +msgstr "Vereinfachtes Chinesisch" + +msgid "Traditional Chinese" +msgstr "Traditionelles Chinesisch" + +msgid "Messages" +msgstr "Mitteilungen" + +msgid "Site Maps" +msgstr "Sitemaps" + +msgid "Static Files" +msgstr "Statische Dateien" + +msgid "Syndication" +msgstr "Syndication" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Diese Seitennummer ist keine Ganzzahl" + +msgid "That page number is less than 1" +msgstr "Diese Seitennummer ist kleiner als 1" + +msgid "That page contains no results" +msgstr "Diese Seite enthält keine Ergebnisse" + +msgid "Enter a valid value." +msgstr "Bitte einen gültigen Wert eingeben." + +msgid "Enter a valid URL." +msgstr "Bitte eine gültige Adresse eingeben." + +msgid "Enter a valid integer." +msgstr "Bitte eine gültige Ganzzahl eingeben." + +msgid "Enter a valid email address." +msgstr "Bitte gültige E-Mail-Adresse eingeben." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Bitte ein gültiges Kürzel, bestehend aus Buchstaben, Ziffern, Unterstrichen " +"und Bindestrichen, eingeben." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Bitte ein gültiges Kürzel eingeben, bestehend aus Buchstaben (Unicode), " +"Ziffern, Unter- und Bindestrichen." + +msgid "Enter a valid IPv4 address." +msgstr "Bitte eine gültige IPv4-Adresse eingeben." + +msgid "Enter a valid IPv6 address." +msgstr "Bitte eine gültige IPv6-Adresse eingeben." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Bitte eine gültige IPv4- oder IPv6-Adresse eingeben" + +msgid "Enter only digits separated by commas." +msgstr "Bitte nur durch Komma getrennte Ziffern eingeben." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Bitte sicherstellen, dass der Wert %(limit_value)s ist. (Er ist " +"%(show_value)s.)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Dieser Wert muss kleiner oder gleich %(limit_value)s sein." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Dieser Wert muss größer oder gleich %(limit_value)s sein." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Dieser Wert muss ein Vielfaches von %(limit_value)s sein." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Dieser Wert muss ein Vielfaches von %(limit_value)s sein und bei %(offset)s " +"beginnen, z.B. %(offset)s, %(valid_value1)s, %(valid_value2)s, und so weiter." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bitte sicherstellen, dass der Wert aus mindestens %(limit_value)d Zeichen " +"besteht. (Er besteht aus %(show_value)d Zeichen.)" +msgstr[1] "" +"Bitte sicherstellen, dass der Wert aus mindestens %(limit_value)d Zeichen " +"besteht. (Er besteht aus %(show_value)d Zeichen.)" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bitte sicherstellen, dass der Wert aus höchstens %(limit_value)d Zeichen " +"besteht. (Er besteht aus %(show_value)d Zeichen.)" +msgstr[1] "" +"Bitte sicherstellen, dass der Wert aus höchstens %(limit_value)d Zeichen " +"besteht. (Er besteht aus %(show_value)d Zeichen.)" + +msgid "Enter a number." +msgstr "Bitte eine Zahl eingeben." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +"Bitte sicherstellen, dass der Wert höchstens %(max)s Ziffer enthält." +msgstr[1] "" +"Bitte sicherstellen, dass der Wert höchstens %(max)s Ziffern enthält." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Bitte sicherstellen, dass der Wert höchstens %(max)s Dezimalstelle enthält." +msgstr[1] "" +"Bitte sicherstellen, dass der Wert höchstens %(max)s Dezimalstellen enthält." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Bitte sicherstellen, dass der Wert höchstens %(max)s Ziffer vor dem Komma " +"enthält." +msgstr[1] "" +"Bitte sicherstellen, dass der Wert höchstens %(max)s Ziffern vor dem Komma " +"enthält." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Dateiendung „%(extension)s“ ist nicht erlaubt. Erlaubte Dateiendungen sind: " +"„%(allowed_extensions)s“." + +msgid "Null characters are not allowed." +msgstr "Nullzeichen sind nicht erlaubt." + +msgid "and" +msgstr "und" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s mit diesem %(field_labels)s existiert bereits." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Bedingung „%(name)s“ ist nicht erfüllt." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Wert %(value)r ist keine gültige Option." + +msgid "This field cannot be null." +msgstr "Dieses Feld darf nicht null sein." + +msgid "This field cannot be blank." +msgstr "Dieses Feld darf nicht leer sein." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s mit diesem %(field_label)s existiert bereits." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s muss für %(date_field_label)s %(lookup_type)s eindeutig sein." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Feldtyp: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Wert „%(value)s“ muss entweder True oder False sein." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Wert „%(value)s“ muss True, False oder None sein." + +msgid "Boolean (Either True or False)" +msgstr "Boolescher Wert (True oder False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Zeichenkette (bis zu %(max_length)s Zeichen)" + +msgid "String (unlimited)" +msgstr "Zeichenkette (unlimitiert)" + +msgid "Comma-separated integers" +msgstr "Kommaseparierte Liste von Ganzzahlen" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Wert „%(value)s“ hat ein ungültiges Datumsformat. Es muss YYYY-MM-DD " +"entsprechen." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Wert „%(value)s“ hat das korrekte Format (YYYY-MM-DD) aber ein ungültiges " +"Datum." + +msgid "Date (without time)" +msgstr "Datum (ohne Uhrzeit)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Wert „%(value)s“ hat ein ungültiges Format. Es muss YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] entsprechen." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Wert „%(value)s“ hat das korrekte Format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) aber eine ungültige Zeit-/Datumsangabe." + +msgid "Date (with time)" +msgstr "Datum (mit Uhrzeit)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Wert „%(value)s“ muss eine Dezimalzahl sein." + +msgid "Decimal number" +msgstr "Dezimalzahl" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Wert „%(value)s“ hat ein ungültiges Format. Es muss der Form [DD] [HH:" +"[MM:]]ss[.uuuuuu] entsprechen." + +msgid "Duration" +msgstr "Zeitspanne" + +msgid "Email address" +msgstr "E-Mail-Adresse" + +msgid "File path" +msgstr "Dateipfad" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Wert „%(value)s“ muss eine Fließkommazahl sein." + +msgid "Floating point number" +msgstr "Gleitkommazahl" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Wert „%(value)s“ muss eine Ganzzahl sein." + +msgid "Integer" +msgstr "Ganzzahl" + +msgid "Big (8 byte) integer" +msgstr "Große Ganzzahl (8 Byte)" + +msgid "Small integer" +msgstr "Kleine Ganzzahl" + +msgid "IPv4 address" +msgstr "IPv4-Adresse" + +msgid "IP address" +msgstr "IP-Adresse" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Wert „%(value)s“ muss entweder None, True oder False sein." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolescher Wert (True, False oder None)" + +msgid "Positive big integer" +msgstr "Positive große Ganzzahl" + +msgid "Positive integer" +msgstr "Positive Ganzzahl" + +msgid "Positive small integer" +msgstr "Positive kleine Ganzzahl" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Kürzel (bis zu %(max_length)s)" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Wert „%(value)s“ hat ein ungültiges Format. Es muss HH:MM[:ss[.uuuuuu]] " +"entsprechen." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Wert „%(value)s“ hat das korrekte Format (HH:MM[:ss[.uuuuuu]]), aber ist " +"eine ungültige Zeitangabe." + +msgid "Time" +msgstr "Zeit" + +msgid "URL" +msgstr "Adresse (URL)" + +msgid "Raw binary data" +msgstr "Binärdaten" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "Wert „%(value)s“ ist keine gültige UUID." + +msgid "Universally unique identifier" +msgstr "Universally Unique Identifier" + +msgid "File" +msgstr "Datei" + +msgid "Image" +msgstr "Bild" + +msgid "A JSON object" +msgstr "Ein JSON-Objekt" + +msgid "Value must be valid JSON." +msgstr "Wert muss gültiges JSON sein." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Objekt vom Typ %(model)s mit %(field)s %(value)r existiert nicht." + +msgid "Foreign Key (type determined by related field)" +msgstr "Fremdschlüssel (Typ definiert durch verknüpftes Feld)" + +msgid "One-to-one relationship" +msgstr "1:1-Beziehung" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s-Beziehung" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s-Beziehungen" + +msgid "Many-to-many relationship" +msgstr "n:m-Beziehung" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Dieses Feld ist zwingend erforderlich." + +msgid "Enter a whole number." +msgstr "Bitte eine ganze Zahl eingeben." + +msgid "Enter a valid date." +msgstr "Bitte ein gültiges Datum eingeben." + +msgid "Enter a valid time." +msgstr "Bitte eine gültige Uhrzeit eingeben." + +msgid "Enter a valid date/time." +msgstr "Bitte ein gültiges Datum und Uhrzeit eingeben." + +msgid "Enter a valid duration." +msgstr "Bitte eine gültige Zeitspanne eingeben." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Die Anzahl der Tage muss zwischen {min_days} und {max_days} sein." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Es wurde keine Datei übertragen. Überprüfen Sie das Encoding des Formulars." + +msgid "No file was submitted." +msgstr "Es wurde keine Datei übertragen." + +msgid "The submitted file is empty." +msgstr "Die übertragene Datei ist leer." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Bitte sicherstellen, dass der Dateiname aus höchstens %(max)d Zeichen " +"besteht. (Er besteht aus %(length)d Zeichen.)" +msgstr[1] "" +"Bitte sicherstellen, dass der Dateiname aus höchstens %(max)d Zeichen " +"besteht. (Er besteht aus %(length)d Zeichen.)" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Bitte wählen Sie entweder eine Datei aus oder wählen Sie „Löschen“, nicht " +"beides." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Bitte ein gültiges Bild hochladen. Die hochgeladene Datei ist kein Bild oder " +"ist defekt." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Bitte eine gültige Auswahl treffen. %(value)s ist keine gültige Auswahl." + +msgid "Enter a list of values." +msgstr "Bitte eine Liste mit Werten eingeben." + +msgid "Enter a complete value." +msgstr "Bitte einen vollständigen Wert eingeben." + +msgid "Enter a valid UUID." +msgstr "Bitte eine gültige UUID eingeben." + +msgid "Enter a valid JSON." +msgstr "Bitte ein gültiges JSON-Objekt eingeben." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Verstecktes Feld %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Daten für das Management-Formular fehlen oder wurden manipuliert. Fehlende " +"Felder: %(field_names)s. Bitte erstellen Sie einen Bug-Report falls der " +"Fehler dauerhaft besteht." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Bitte höchstens %(num)d Forumlar abschicken." +msgstr[1] "Bitte höchstens %(num)d Formulare abschicken." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Bitte mindestends %(num)d Formular abschicken." +msgstr[1] "Bitte mindestens %(num)d Formulare abschicken." + +msgid "Order" +msgstr "Reihenfolge" + +msgid "Delete" +msgstr "Löschen" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Bitte die doppelten Daten für %(field)s korrigieren." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Bitte die doppelten Daten für %(field)s korrigieren, das eindeutig sein muss." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Bitte die doppelten Daten für %(field_name)s korrigieren, da es für " +"%(lookup)s in %(date_field)s eindeutig sein muss." + +msgid "Please correct the duplicate values below." +msgstr "Bitte die unten aufgeführten doppelten Werte korrigieren." + +msgid "The inline value did not match the parent instance." +msgstr "Der Inline-Wert passt nicht zur übergeordneten Instanz." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Bitte eine gültige Auswahl treffen. Dies ist keine gültige Auswahl." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "„%(pk)s“ ist kein gültiger Wert." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s konnte mit der Zeitzone %(current_timezone)s nicht eindeutig " +"interpretiert werden, da es doppeldeutig oder eventuell inkorrekt ist." + +msgid "Clear" +msgstr "Zurücksetzen" + +msgid "Currently" +msgstr "Derzeit" + +msgid "Change" +msgstr "Ändern" + +msgid "Unknown" +msgstr "Unbekannt" + +msgid "Yes" +msgstr "Ja" + +msgid "No" +msgstr "Nein" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "Ja,Nein,Vielleicht" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d Byte" +msgstr[1] "%(size)d Bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "nachm." + +msgid "a.m." +msgstr "vorm." + +msgid "PM" +msgstr "nachm." + +msgid "AM" +msgstr "vorm." + +msgid "midnight" +msgstr "Mitternacht" + +msgid "noon" +msgstr "Mittag" + +msgid "Monday" +msgstr "Montag" + +msgid "Tuesday" +msgstr "Dienstag" + +msgid "Wednesday" +msgstr "Mittwoch" + +msgid "Thursday" +msgstr "Donnerstag" + +msgid "Friday" +msgstr "Freitag" + +msgid "Saturday" +msgstr "Samstag" + +msgid "Sunday" +msgstr "Sonntag" + +msgid "Mon" +msgstr "Mo" + +msgid "Tue" +msgstr "Di" + +msgid "Wed" +msgstr "Mi" + +msgid "Thu" +msgstr "Do" + +msgid "Fri" +msgstr "Fr" + +msgid "Sat" +msgstr "Sa" + +msgid "Sun" +msgstr "So" + +msgid "January" +msgstr "Januar" + +msgid "February" +msgstr "Februar" + +msgid "March" +msgstr "März" + +msgid "April" +msgstr "April" + +msgid "May" +msgstr "Mai" + +msgid "June" +msgstr "Juni" + +msgid "July" +msgstr "Juli" + +msgid "August" +msgstr "August" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "Oktober" + +msgid "November" +msgstr "November" + +msgid "December" +msgstr "Dezember" + +msgid "jan" +msgstr "Jan" + +msgid "feb" +msgstr "Feb" + +msgid "mar" +msgstr "Mär" + +msgid "apr" +msgstr "Apr" + +msgid "may" +msgstr "Mai" + +msgid "jun" +msgstr "Jun" + +msgid "jul" +msgstr "Jul" + +msgid "aug" +msgstr "Aug" + +msgid "sep" +msgstr "Sep" + +msgid "oct" +msgstr "Okt" + +msgid "nov" +msgstr "Nov" + +msgid "dec" +msgstr "Dez" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "März" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mai" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Juni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Juli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dez." + +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +msgctxt "alt. month" +msgid "March" +msgstr "März" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Mai" + +msgctxt "alt. month" +msgid "June" +msgstr "Juni" + +msgctxt "alt. month" +msgid "July" +msgstr "Juli" + +msgctxt "alt. month" +msgid "August" +msgstr "August" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "Dezember" + +msgid "This is not a valid IPv6 address." +msgstr "Dies ist keine gültige IPv6-Adresse." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "oder" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d Jahr" +msgstr[1] "%(num)d Jahre" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d Monat" +msgstr[1] "%(num)d Monate" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d Woche" +msgstr[1] "%(num)d Wochen" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d Tag" +msgstr[1] "%(num)d Tage" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d Stunde" +msgstr[1] "%(num)d Stunden" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d Minute" +msgstr[1] "%(num)d Minuten" + +msgid "Forbidden" +msgstr "Verboten" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-Verifizierung fehlgeschlagen. Anfrage abgebrochen." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Sie sehen diese Fehlermeldung, da diese HTTPS-Seite einen „Referer“-Header " +"von Ihrem Webbrowser erwartet, aber keinen erhalten hat. Dieser Header ist " +"aus Sicherheitsgründen notwendig, um sicherzustellen, dass Ihr Webbrowser " +"nicht von Dritten missbraucht wird." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Falls Sie Ihren Webbrowser so konfiguriert haben, dass „Referer“-Header " +"nicht gesendet werden, müssen Sie diese Funktion mindestens für diese Seite, " +"für sichere HTTPS-Verbindungen oder für „Same-Origin“-Verbindungen " +"reaktivieren." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Wenn der Tag „“ oder der " +"„Referrer-Policy: no-referrer“-Header verwendet wird, entfernen Sie sie " +"bitte. Der „Referer“-Header wird zur korrekten CSRF-Verifizierung benötigt. " +"Falls es datenschutzrechtliche Gründe gibt, benutzen Sie bitte Alternativen " +"wie „“ für Links zu Drittseiten." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Sie sehen Diese Nachricht, da diese Seite einen CSRF-Cookie beim Verarbeiten " +"von Formulardaten benötigt. Dieses Cookie ist aus Sicherheitsgründen " +"notwendig, um sicherzustellen, dass Ihr Webbrowser nicht von Dritten " +"missbraucht wird." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Falls Sie Cookies in Ihren Webbrowser deaktiviert haben, müssen Sie sie " +"mindestens für diese Seite oder für „Same-Origin“-Verbindungen reaktivieren." + +msgid "More information is available with DEBUG=True." +msgstr "Mehr Information ist verfügbar mit DEBUG=True." + +msgid "No year specified" +msgstr "Kein Jahr angegeben" + +msgid "Date out of range" +msgstr "Datum außerhalb des zulässigen Bereichs" + +msgid "No month specified" +msgstr "Kein Monat angegeben" + +msgid "No day specified" +msgstr "Kein Tag angegeben" + +msgid "No week specified" +msgstr "Keine Woche angegeben" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Keine %(verbose_name_plural)s verfügbar" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"In der Zukunft liegende %(verbose_name_plural)s sind nicht verfügbar, da " +"%(class_name)s.allow_future auf False gesetzt ist." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ungültiges Datum „%(datestr)s“ für das Format „%(format)s“" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Konnte keine %(verbose_name)s mit diesen Parametern finden." + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Weder ist dies die letzte Seite („last“) noch konnte sie in einen " +"ganzzahligen Wert umgewandelt werden." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ungültige Seite (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Leere Liste und „%(class_name)s.allow_empty“ ist False." + +msgid "Directory indexes are not allowed here." +msgstr "Dateilisten sind untersagt." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s“ ist nicht vorhanden" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Verzeichnis %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Die Installation war erfolgreich. Herzlichen Glückwunsch!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Versionshinweise für Django " +"%(version)s anzeigen" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Diese Seite ist sichtbar weil in der Settings-Datei DEBUG = True steht und die URLs noch nicht konfiguriert " +"sind." + +msgid "Django Documentation" +msgstr "Django-Dokumentation" + +msgid "Topics, references, & how-to’s" +msgstr "Themen, Referenz, & Kurzanleitungen" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: Eine Umfrage-App" + +msgid "Get started with Django" +msgstr "Los geht's mit Django" + +msgid "Django Community" +msgstr "Django-Community" + +msgid "Connect, get help, or contribute" +msgstr "Nimm Kontakt auf, erhalte Hilfe oder arbeite an Django mit" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/de/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/de/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/de/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2bbd4e9930c0a7f931da3d896faa25a0b8967a2f GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFPDykTLf#d|BNN&^n40W2=67$G6b!N@6?$Y53BNxJT? zuas@O$s1HzRArpn#p;aa%=y1_nHfzn81zsxzW(ykpDaQ@sAvzS5$~E+QUiz}zyt$B z7+?tt9N~Z`JakA0PRI!e&`lX4qzHQ7FzG^{^x%~AVL(pd%t4c3-MNv*^RZvE+H6(# zp2V2?ETtR;H4joQ`E_@<(clAa4zC3fBr%sn|KQzC*m|_5V^N!l#!PhT=l>x|T-ImD z^bxkq0G|~nmUzP39uuNCm7d(4XitO*n$k8m@ z4clE`{6k0W=DO|BOh2^d;YU^dK+bn%y1DS&zx^EY@^Fn~K2p?6-H@+CM_tIa>{>QC zcQwm%WK(Ieq3Id#RXe=0EpMTlSKrZwZ=Sw0kMZR!@XBOU249k_Dgvd5w|TOz${(!^ATvf@N+bI4VHCX}NMC-Je#>IL$&5Ah6k|`w9WwFVls+4Z;?uCoI dfNhq%rJq^8Y7ED5xIG!3!Q5}5!|@yz@E=yJu3-QG literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/de/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/de/formats.py new file mode 100644 index 0000000..45953ce --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/de/formats.py @@ -0,0 +1,29 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j. F Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' + # "%d. %B %Y", # '25. October 2006' + # "%d. %b. %Y", # '25. Oct. 2006' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/de_CH/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/de_CH/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/de_CH/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4ada77bedb578366c0f763068d0d8cfc4e23bc9 GIT binary patch literal 196 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po new file mode 100644 index 0000000..4448d1a --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/dsb/LC_MESSAGES/django.po @@ -0,0 +1,1392 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Michael Wolf , 2016-2024 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Michael Wolf , 2016-2024\n" +"Language-Team: Lower Sorbian (http://app.transifex.com/django/django/" +"language/dsb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: dsb\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" + +msgid "Afrikaans" +msgstr "Afrikaanšćina" + +msgid "Arabic" +msgstr "Arabšćina" + +msgid "Algerian Arabic" +msgstr "Algeriska arabšćina" + +msgid "Asturian" +msgstr "Asturišćina" + +msgid "Azerbaijani" +msgstr "Azerbajdžanišćina" + +msgid "Bulgarian" +msgstr "Bulgaršćina" + +msgid "Belarusian" +msgstr "Běłorušćina" + +msgid "Bengali" +msgstr "Bengalšćina" + +msgid "Breton" +msgstr "Bretońšćina" + +msgid "Bosnian" +msgstr "Bosnišćina" + +msgid "Catalan" +msgstr "Katalańšćina" + +msgid "Central Kurdish (Sorani)" +msgstr "Centralna kurdišćina (Sorani)" + +msgid "Czech" +msgstr "Češćina" + +msgid "Welsh" +msgstr "Kymrišćina" + +msgid "Danish" +msgstr "Dańšćina" + +msgid "German" +msgstr "Nimšćina" + +msgid "Lower Sorbian" +msgstr "Dolnoserbšćina" + +msgid "Greek" +msgstr "Grichišćina" + +msgid "English" +msgstr "Engelšćina" + +msgid "Australian English" +msgstr "Awstralska engelšćina" + +msgid "British English" +msgstr "Britiska engelšćina" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Špańšćina" + +msgid "Argentinian Spanish" +msgstr "Argentinska špańšćina" + +msgid "Colombian Spanish" +msgstr "Kolumbiska špańšćina" + +msgid "Mexican Spanish" +msgstr "Mexikańska špańšćina" + +msgid "Nicaraguan Spanish" +msgstr "Nikaraguaska špańšćina" + +msgid "Venezuelan Spanish" +msgstr "Venezolaniska špańšćina" + +msgid "Estonian" +msgstr "Estnišćina" + +msgid "Basque" +msgstr "Baskišćina" + +msgid "Persian" +msgstr "Persišćina" + +msgid "Finnish" +msgstr "Finšćina" + +msgid "French" +msgstr "Francojšćina" + +msgid "Frisian" +msgstr "Frizišćina" + +msgid "Irish" +msgstr "Iršćina" + +msgid "Scottish Gaelic" +msgstr "Šotiska gelišćina" + +msgid "Galician" +msgstr "Galicišćina" + +msgid "Hebrew" +msgstr "Hebrejšćina" + +msgid "Hindi" +msgstr "Hindišćina" + +msgid "Croatian" +msgstr "Chorwatšćina" + +msgid "Upper Sorbian" +msgstr "Górnoserbšćina" + +msgid "Hungarian" +msgstr "Hungoršćina" + +msgid "Armenian" +msgstr "Armeńšćina" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonešćina" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandšćina" + +msgid "Italian" +msgstr "Italšćina" + +msgid "Japanese" +msgstr "Japańšćina" + +msgid "Georgian" +msgstr "Georgišćina" + +msgid "Kabyle" +msgstr "Kabylšćina" + +msgid "Kazakh" +msgstr "Kazachšćina" + +msgid "Khmer" +msgstr "Rěc Khmerow" + +msgid "Kannada" +msgstr "Kannadišćina" + +msgid "Korean" +msgstr "Korejańšćina" + +msgid "Kyrgyz" +msgstr "Kirgišćina" + +msgid "Luxembourgish" +msgstr "Luxemburgšćina" + +msgid "Lithuanian" +msgstr "Litawšćina" + +msgid "Latvian" +msgstr "Letišćina" + +msgid "Macedonian" +msgstr "Makedońšćina" + +msgid "Malayalam" +msgstr "Malajalam" + +msgid "Mongolian" +msgstr "Mongolšćina" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malayzišćina" + +msgid "Burmese" +msgstr "Myanmaršćina" + +msgid "Norwegian Bokmål" +msgstr "Norwegski Bokmål" + +msgid "Nepali" +msgstr "Nepalšćina" + +msgid "Dutch" +msgstr "¨Nižozemšćina" + +msgid "Norwegian Nynorsk" +msgstr "Norwegski Nynorsk" + +msgid "Ossetic" +msgstr "Osetšćina" + +msgid "Punjabi" +msgstr "Pundžabi" + +msgid "Polish" +msgstr "Pólšćina" + +msgid "Portuguese" +msgstr "Portugišćina" + +msgid "Brazilian Portuguese" +msgstr "Brazilska portugišćina" + +msgid "Romanian" +msgstr "Rumunšćina" + +msgid "Russian" +msgstr "Rušćina" + +msgid "Slovak" +msgstr "Słowakšćina" + +msgid "Slovenian" +msgstr "Słowjeńšćina" + +msgid "Albanian" +msgstr "Albanšćina" + +msgid "Serbian" +msgstr "Serbišćina" + +msgid "Serbian Latin" +msgstr "Serbišćina, łatyńska" + +msgid "Swedish" +msgstr "Šwedšćina" + +msgid "Swahili" +msgstr "Suahelšćina" + +msgid "Tamil" +msgstr "Tamilšćina" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tadźikišćina" + +msgid "Thai" +msgstr "Thaišćina" + +msgid "Turkmen" +msgstr "Turkmeńšćina" + +msgid "Turkish" +msgstr "Turkojšćina" + +msgid "Tatar" +msgstr "Tataršćina" + +msgid "Udmurt" +msgstr "Udmurtšćina" + +msgid "Uyghur" +msgstr "Ujguršćina" + +msgid "Ukrainian" +msgstr "Ukrainšćina" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbekšćina" + +msgid "Vietnamese" +msgstr "Vietnamšćina" + +msgid "Simplified Chinese" +msgstr "Zjadnorjona chinšćina" + +msgid "Traditional Chinese" +msgstr "Tradicionelna chinšćina" + +msgid "Messages" +msgstr "Powěsći" + +msgid "Site Maps" +msgstr "Wopśimjeśowy pśeglěd sedła" + +msgid "Static Files" +msgstr "Statiske dataje" + +msgid "Syndication" +msgstr "Syndikacija" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Toś ten numer boka njejo ceła licba" + +msgid "That page number is less than 1" +msgstr "Numer boka jo mjeńšy ako 1" + +msgid "That page contains no results" +msgstr "Toś ten bok njewopśimujo wuslědki" + +msgid "Enter a valid value." +msgstr "Zapódajśo płaśiwu gódnotu." + +msgid "Enter a valid domain name." +msgstr "Zapódajśo płaśiwe domenowe mě." + +msgid "Enter a valid URL." +msgstr "Zapódajśo płaśiwy URL." + +msgid "Enter a valid integer." +msgstr "Zapódajśo płaśiwu cełu licbu." + +msgid "Enter a valid email address." +msgstr "Zapódajśo płaśiwu e-mailowu adresu." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Zapódajśo płaśiwe „adresowe mě“, kótarež jano wopśimujo pismiki, licby, " +"pódsmužki abo wězawki." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Zapódajśo płaśiwe „adresowe mě“, kótarež jano wopśimujo unicodowe pismiki, " +"licby, pódmužki abo wězawki." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Zapódajśo płaśiwu %(protocol)s-adresu." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 abo IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Zapódajśo jano cyfry źělone pśez komy." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Zawěsććo toś tu gódnotu jo %(limit_value)s (jo %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Zawěsććo, až toś ta gódnota jo mjeńša ako abo to samske ako %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Zawěsććo, až toś ta gódnota jo wětša ako abo to samske ako %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Zawěsććo, až toś gódnota jo wjelesere kšacoweje wjelikosći %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Zawěsććo, až toś ta gódnota jo wjele wót kšacoweje wjelikosći " +"%(limit_value)s, zachopinajucy z %(offset)s, na pś. %(offset)s, " +"%(valid_value1)s, %(valid_value2)s a tak dalej." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Zawěsććo, až toś ta gódnota ma nanejmjenjej %(limit_value)d znamuško (ma " +"%(show_value)d)." +msgstr[1] "" +"Zawěsććo, až toś ta gódnota ma nanejmjenjej %(limit_value)d znamušce (ma " +"%(show_value)d)." +msgstr[2] "" +"Zawěsććo, až toś ta gódnota ma nanejmjenjej %(limit_value)d znamuška (ma " +"%(show_value)d)." +msgstr[3] "" +"Zawěsććo, až toś ta gódnota ma nanejmjenjej %(limit_value)d znamuškow (ma " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Zawěććo, až toś ta gódnota ma maksimalnje %(limit_value)d znamuško (ma " +"%(show_value)d)." +msgstr[1] "" +"Zawěććo, až toś ta gódnota ma maksimalnje %(limit_value)d znamušce (ma " +"%(show_value)d)." +msgstr[2] "" +"Zawěććo, až toś ta gódnota ma maksimalnje %(limit_value)d znamuška (ma " +"%(show_value)d)." +msgstr[3] "" +"Zawěććo, až toś ta gódnota ma maksimalnje %(limit_value)d znamuškow (ma " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Zapódajśo licbu." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Zawěsććo, až njejo wěcej ako %(max)s cyfry dogromady." +msgstr[1] "Zawěsććo, až njejo wěcej ako %(max)s cyfrowu dogromady." +msgstr[2] "Zawěsććo, až njejo wěcej ako %(max)s cyfrow dogromady." +msgstr[3] "Zawěsććo, až njejo wěcej ako %(max)s cyfrow dogromady." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Zawěsććo, až njejo wěcej ako %(max)s decimalnego městna." +msgstr[1] "Zawěsććo, až njejo wěcej ako %(max)s decimalneju městnowu." +msgstr[2] "Zawěsććo, až njejo wěcej ako %(max)s decimalnych městnow." +msgstr[3] "Zawěsććo, až njejo wěcej ako %(max)s decimalnych městnow." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Zawěsććo, až njejo wěcej ako %(max)s cyfry pśed decimalneju komu." +msgstr[1] "Zawěsććo, až njejo wěcej ako %(max)s cyfrowu pśed decimalneju komu." +msgstr[2] "Zawěsććo, až njejo wěcej ako %(max)s cyfrow pśed decimalneju komu." +msgstr[3] "Zawěsććo, až njejo wěcej ako %(max)s cyfrow pśed decimalneju komu." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Datajowy sufiks „%(extension)s“ njejo dowólony. Dowólone sufikse su: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Znamuška nul njejsu dowólone." + +msgid "and" +msgstr "a" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s z toś tym %(field_labels)s južo eksistěrujo." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Wobranicowanje \"%(name)s\" jo pśestupjone." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Gódnota %(value)r njejo płaśiwa wóleńska móžnosć." + +msgid "This field cannot be null." +msgstr "Toś to pólo njamóžo nul byś." + +msgid "This field cannot be blank." +msgstr "Toś to pólo njamóžo prozne byś." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s z toś tym %(field_label)s južo eksistěrujo." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s musy za %(date_field_label)s %(lookup_type)s jadnorazowy byś." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Typ póla: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Gódnota „%(value)s“ musy pak True pak False byś." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Gódnota „%(value)s“ musy pak True, False pak None byś." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (pak True pak False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Znamuškowy rjeśazk (až %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Znamuškowy rjeśazk (njewobgranicowany)" + +msgid "Comma-separated integers" +msgstr "Pśez komu źělone cełe licby" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Gódnota „%(value)s“ ma njepłaśiwy datumowy format. Musy we formaśe DD.MM." +"YYYY byś." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Gódnota „%(value)s“ ma korektny format (DD.MM.YYYY), ale jo njepłaśiwy datum." + +msgid "Date (without time)" +msgstr "Datum (bźez casa)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Gódnota „%(value)s“ ma njepłaśiwy format. Musy w formaśe DD.MM.YYYY HH:MM[:" +"ss[.uuuuuu]][TZ] byś." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Gódnota „%(value)s“ ma korektny format (DD.MM.YYYY HH:MM[:ss[.uuuuuu]][TZ]), " +"ale jo njepłaśiwy datum/cas." + +msgid "Date (with time)" +msgstr "Datum (z casom)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Gódnota „%(value)s“ musy decimalna licba byś." + +msgid "Decimal number" +msgstr "Decimalna licba" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Gódnota „%(value)s“ ma njepłaśiwy format. Musy we formaśe [DD] " +"[[HH:]MM:]ss[.uuuuuu] byś." + +msgid "Duration" +msgstr "Traśe" + +msgid "Email address" +msgstr "E-mailowa adresa" + +msgid "File path" +msgstr "Datajowa sćažka" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Gódnota „%(value)s“ musy typ float měś." + +msgid "Floating point number" +msgstr "Licba běžeceje komy" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Gódnota „%(value)s“ musy ceła licba byś." + +msgid "Integer" +msgstr "Integer" + +msgid "Big (8 byte) integer" +msgstr "Big (8 bajtow) integer" + +msgid "Small integer" +msgstr "Mała ceła licba" + +msgid "IPv4 address" +msgstr "IPv4-adresa" + +msgid "IP address" +msgstr "IP-adresa" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Gódnota „%(value)s“ musy pak None, True pak False byś." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (pak True, False pak None)" + +msgid "Positive big integer" +msgstr "Pozitiwna wjelika ceła licba" + +msgid "Positive integer" +msgstr "Pozitiwna ceła licba" + +msgid "Positive small integer" +msgstr "Pozitiwna mała ceła licba" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Adresowe mě (až %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Gódnota „%(value)s“ ma njepłaśiwy format. Musy w formaśe HH:MM[:ss[." +"uuuuuu]] byś." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Gódnota „%(value)s“ ma korektny format (HH:MM[:ss[.uuuuuu]]), ale jo " +"njepłaśiwy cas." + +msgid "Time" +msgstr "Cas" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Gropne binarne daty" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "„%(value)s“ njejo płaśiwy UUID." + +msgid "Universally unique identifier" +msgstr "Uniwerselnje jadnorazowy identifikator" + +msgid "File" +msgstr "Dataja" + +msgid "Image" +msgstr "Woraz" + +msgid "A JSON object" +msgstr "JSON-objekt" + +msgid "Value must be valid JSON." +msgstr "Gódnota musy płaśiwy JSON byś." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Instanca %(model)s z %(field)s %(value)r njeeksistěrujo." + +msgid "Foreign Key (type determined by related field)" +msgstr "Cuzy kluc (typ póstaja se pśez wótpowědne pólo)" + +msgid "One-to-one relationship" +msgstr "Póśěg jaden jaden" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Póśěg %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Póśěgi %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Póśěg wjele wjele" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Toś to pólo jo trěbne." + +msgid "Enter a whole number." +msgstr "Zapódajśo cełu licbu." + +msgid "Enter a valid date." +msgstr "Zapódajśo płaśiwy datum." + +msgid "Enter a valid time." +msgstr "Zapódajśo płaśiwy cas." + +msgid "Enter a valid date/time." +msgstr "Zapódajśo płaśiwy datum/cas." + +msgid "Enter a valid duration." +msgstr "Zapódaśe płaśiwe traśe." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Licba dnjow musy mjazy {min_days} a {max_days} byś." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Dataja njejo se wótpósłała. Pśeglědujśo koděrowański typ na formularje. " + +msgid "No file was submitted." +msgstr "Žedna dataja jo se wótpósłała." + +msgid "The submitted file is empty." +msgstr "Wótpósłana dataja jo prozna." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Zawěsććo, až toś to datajowe mě ma maksimalnje %(max)d znamuško (ma " +"%(length)d)." +msgstr[1] "" +"Zawěsććo, až toś to datajowe mě ma maksimalnje %(max)d znamušce (ma " +"%(length)d)." +msgstr[2] "" +"Zawěsććo, až toś to datajowe mě ma maksimalnje %(max)d znamuška (ma " +"%(length)d)." +msgstr[3] "" +"Zawěsććo, až toś to datajowe mě ma maksimalnje %(max)d znamuškow (ma " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Pšosym pak wótpósćelśo dataju pak stajśo kokulku do kontrolnego kašćika, " +"njecyńśo wobej." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Nagrajśo płaśiwy wobraz. Dataja, kótaruž sćo nagrał, pak njejo wobraz był " +"pak jo wobškóźony wobraz." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Wubjeŕśo płaśiwu wóleńsku móžnosć. %(value)s njejo jadna z k dispoziciji " +"stojecych wóleńskich móžnosćow." + +msgid "Enter a list of values." +msgstr "Zapódajśo lisćinu gódnotow." + +msgid "Enter a complete value." +msgstr "Zapódajśo dopołnu gódnotu." + +msgid "Enter a valid UUID." +msgstr "Zapódajśo płaśiwy UUID." + +msgid "Enter a valid JSON." +msgstr "Zapódajśo płaśiwy JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Schowane pólo %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Daty ManagementForm feluju abo su wobškóźone. Felujuce póla: " +"%(field_names)s. Móžośo zmólkowu rozpšawu pisaś, jolic problem dalej " +"eksistěrujo." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Pšosym wótposćelśo maksimalnje %(num)d formular." +msgstr[1] "Pšosym wótposćelśo maksimalnje %(num)d formulara." +msgstr[2] "Pšosym wótposćelśo maksimalnje %(num)d formulary." +msgstr[3] "Pšosym wótposćelśo maksimalnje %(num)d formularow." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Pšosym wótposćelśo minimalnje %(num)d formular." +msgstr[1] "Pšosym wótposćelśo minimalnje %(num)d formulara." +msgstr[2] "Pšosym wótposćelśo minimalnje %(num)d formulary." +msgstr[3] "Pšosym wótposćelśo minimalnje %(num)d formularow." + +msgid "Order" +msgstr "Rěd" + +msgid "Delete" +msgstr "Lašowaś" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Pšosym korigěrujśo dwójne daty za %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Pšosym korigěrujśo dwójne daty za %(field)s, kótarež muse jadnorazowe byś." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Pšosym korigěrujśo dwójne daty za %(field_name)s, kótarež muse za %(lookup)s " +"w %(date_field)s jadnorazowe byś." + +msgid "Please correct the duplicate values below." +msgstr "Pšosym korigěrujśo slědujuce dwójne gódnoty." + +msgid "The inline value did not match the parent instance." +msgstr "Gódnota inline nadrědowanej instance njewótpowědujo." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Wubjeŕśo płaśiwu wóleńsku móžnosć. Toś ta wóleńska móžnosć njejo žedna z " +"wóleńskich móžnosćow." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "„%(pk)s“ njejo płaśiwa gódnota." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s njedajo se w casowej conje %(current_timezone)s " +"interpretěrowaś; jo dwójozmysłowy abo snaź njeeksistěrujo." + +msgid "Clear" +msgstr "Lašowaś" + +msgid "Currently" +msgstr "Tuchylu" + +msgid "Change" +msgstr "Změniś" + +msgid "Unknown" +msgstr "Njeznaty" + +msgid "Yes" +msgstr "Jo" + +msgid "No" +msgstr "Ně" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "jo,ně,snaź" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajta" +msgstr[2] "%(size)d bajty" +msgstr[3] "%(size)d bajtow" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "wótpołdnja" + +msgid "a.m." +msgstr "dopołdnja" + +msgid "PM" +msgstr "wótpołdnja" + +msgid "AM" +msgstr "dopołdnja" + +msgid "midnight" +msgstr "połnoc" + +msgid "noon" +msgstr "połdnjo" + +msgid "Monday" +msgstr "Pónjeźele" + +msgid "Tuesday" +msgstr "Wałtora" + +msgid "Wednesday" +msgstr "Srjoda" + +msgid "Thursday" +msgstr "Stwórtk" + +msgid "Friday" +msgstr "Pětk" + +msgid "Saturday" +msgstr "Sobota" + +msgid "Sunday" +msgstr "Njeźela" + +msgid "Mon" +msgstr "Pón" + +msgid "Tue" +msgstr "Wał" + +msgid "Wed" +msgstr "Srj" + +msgid "Thu" +msgstr "Stw" + +msgid "Fri" +msgstr "Pět" + +msgid "Sat" +msgstr "Sob" + +msgid "Sun" +msgstr "Nje" + +msgid "January" +msgstr "Januar" + +msgid "February" +msgstr "Februar" + +msgid "March" +msgstr "Měrc" + +msgid "April" +msgstr "Apryl" + +msgid "May" +msgstr "Maj" + +msgid "June" +msgstr "Junij" + +msgid "July" +msgstr "Julij" + +msgid "August" +msgstr "Awgust" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "Oktober" + +msgid "November" +msgstr "Nowember" + +msgid "December" +msgstr "December" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "měr" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "maj" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "awg" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "now" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Měrc" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Apryl" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junij" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julij" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Awg." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Now." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +msgctxt "alt. month" +msgid "March" +msgstr "Měrc" + +msgctxt "alt. month" +msgid "April" +msgstr "Apryl" + +msgctxt "alt. month" +msgid "May" +msgstr "Maj" + +msgctxt "alt. month" +msgid "June" +msgstr "Junij" + +msgctxt "alt. month" +msgid "July" +msgstr "Julij" + +msgctxt "alt. month" +msgid "August" +msgstr "Awgust" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "Nowember" + +msgctxt "alt. month" +msgid "December" +msgstr "December" + +msgid "This is not a valid IPv6 address." +msgstr "To njejo płaśiwa IPv6-adresa." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "abo" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d lěto" +msgstr[1] "%(num)d lěśe" +msgstr[2] "%(num)d lěta" +msgstr[3] "%(num)d lět" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mjasec" +msgstr[1] "%(num)d mjaseca" +msgstr[2] "%(num)d mjasece" +msgstr[3] "%(num)dmjasecow" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d tyźeń" +msgstr[1] "%(num)d tyźenja" +msgstr[2] "%(num)d tyźenje" +msgstr[3] "%(num)d tyźenjow" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d źeń " +msgstr[1] "%(num)d dnja" +msgstr[2] "%(num)d dny" +msgstr[3] "%(num)d dnjow" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d góźina" +msgstr[1] "%(num)d góźinje" +msgstr[2] "%(num)d góźiny" +msgstr[3] "%(num)d góźin" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuta" +msgstr[1] "%(num)d minuśe" +msgstr[2] "%(num)d minuty" +msgstr[3] "%(num)d minutow" + +msgid "Forbidden" +msgstr "Zakazany" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-pśeglědanje njejo se raźiło. Napšašowanje jo se pśetergnuło." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Wiźiśo toś tu powěźeńku, dokulaž toś to HTTPS-sedło trjeba \"Referer " +"header\", aby se pśez waš webwobglědowak słało, ale žedna njejo se pósłała. " +"Toś ta głowa jo trěbna z pśicynow wěstoty, aby so zawěsćiło, až waš " +"wobglědowak njekaprujo se wót tśeśich." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Jolic sćo swój wobglědowak tak konfigurěrował, aby se głowy 'Referer' " +"znjemóžnili, zmóžniśo je pšosym zasej, nanejmjenjej za toś to sedło, za " +"HTTPS-zwiski abo za napšašowanja 'same-origin'." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Jolic woznamjenje wužywaśo " +"abo głowu „Referrer-Policy: no-referrer“ zapśimujośo, wótwónoźćo je. CSRF-" +"šćit pomina se głowu „Referer“, aby striktnu kontrolu referera pśewjasć. " +"Jolic se wó swóju priwatnosć staraśo, wužywajśo alternatiwy ako za wótkazy k sedłam tśeśich." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Wiźiśo toś tu powěźeńku, dokulaž toś to HTTPS-sedło trjeba CSRF-cookie, aby " +"formulary wótpósłało. Toś ten cookie jo trěbna z pśicynow wěstoty, aby so " +"zawěsćiło, až waš wobglědowak njekaprujo se wót tśeśich." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Jolic sćo swój wobglědowak tak konfigurěrował, aby cookieje znjemóžnili, " +"zmóžniśo je pšosym zasej, nanejmjenjej za toś to sedło abo za napšašowanja " +"„same-origin“." + +msgid "More information is available with DEBUG=True." +msgstr "Dalšne informacije su k dispoziciji z DEBUG=True." + +msgid "No year specified" +msgstr "Žedno lěto pódane" + +msgid "Date out of range" +msgstr "Datum zwenka wobcerka" + +msgid "No month specified" +msgstr "Žeden mjasec pódany" + +msgid "No day specified" +msgstr "Žeden źeń pódany" + +msgid "No week specified" +msgstr "Žeden tyźeń pódany" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Žedne %(verbose_name_plural)s k dispoziciji" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Pśichodne %(verbose_name_plural)s njejo k dispoziciji, dokulaž " +"%(class_name)s.allow_future jo False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Njepłaśiwy „%(format)s“ za datumowy znamuškowy rjeśazk „%(datestr)s“ pódany" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Žedno %(verbose_name)s namakane, kótarež wótpowědujo napšašowanjeju." + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Bok njejo „last“, ani njedajo se do „int“ konwertěrowaś." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Njepłaśiwy bok (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Prozna lisćina a „%(class_name)s.allow_empty“ jo False." + +msgid "Directory indexes are not allowed here." +msgstr "Zapisowe indekse njejsu how dowólone." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s“ njeeksistěrujo" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indeks %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalacija jo była wuspěšna! Gratulacija!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Wersijowe informacije za Django " +"%(version)s pokazaś" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Wiźiśo toś ten bok, dokulaž DEBUG=True jo w swójej dataji nastajenjow a njejsćo " +"konfigurěrował URL." + +msgid "Django Documentation" +msgstr "Dokumentacija Django" + +msgid "Topics, references, & how-to’s" +msgstr "Temy, reference a rozpokazanja" + +msgid "Tutorial: A Polling App" +msgstr "Rozpokazanje: Napšašowańske nałoženje" + +msgid "Get started with Django" +msgstr "Prědne kšace z Django" + +msgid "Django Community" +msgstr "Zgromaźeństwo Django" + +msgid "Connect, get help, or contribute" +msgstr "Zwězajśo, wobsarajśo se pomoc abo źěłajśo sobu" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..1b07550997aa8ca2f849671ac36c859422aedd0d GIT binary patch literal 33648 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�P$YjS^iosJo zQEfz@Nvv#mAaQ1^c;rpjQ&iK7PwvBZyeAt6nN)Soj3Pah&uogkc=Z#SN2*O-8@>}f zV{LO-epr;(d*^GL#T?W@++|-haWr3DmHb?>I?;+k=#}aSFNJ6!MnHu=F z^BBK3poxJ#r-eyMW4$_rk7t_Uy1%37phlX>ImRuCxthO+RdqSBQ=1NpmK1|L~qY*A~1x(5ly%NJ1v)Q19N!%*t;fE7k^9 zMlC`KgBO&auu81w)uBCsR8&nYPoBjB(c-iGCwU|0dP<%G!o`bEbS9QyO#AJt?OgA6 zrfzjknrg)xgpv;w916OLxnh5TqKP zDssDwF={7G+Oh>J6z{Gm&_V<%)2XP;g(*gk0t~%dCfh+(MHWw)vC-Q;+84#|s%FKG z&KkZ3);GZF#hkV+tP1*aG~@ns81HKmk?c&S)$gLDaB6jRLo!cqS;aTTYkUe>w~)?8 zhy!7<lJU;hhX-u5H3)=Phiuq8pf-L3IS!#HSTy&-;zGvwPj4kSMxF0VF1oqBi% zJwUmBp&O+jn)U);L8jOjU(FEQwx{+xjO#1Os=RURs@y{v?Nai3wQNd%7q6cfZ^hh_?6p1md#W;_JVqSv6MZ63s~EXqQohqxY)q zf$B8Co+hjU?68P2VGH~_1`1Fi#8zO;9+&Q|KNNzQ#X!V{#Z!wxmrtQN!HM;Mq!WdF zNUE)g5xY1);$L@mMb~auWFzl%nHk|9Q)qNZZ`oo5hK44t+CLVL-3gG1+R!@8iPv$z zrz9WT*|D{nPEDdY(uuKppBhWHH2LkesHJ%F^X>BLenFzB2?KrpH@}&h7z^{-px8_AsVwuvFh8|aCTNfjXde7)&ng<%ls7d{ zma1px?D|Rl2OQFzLj#Y?T6-|#&0EhOQ8!xpWynp_h>o=U>QqA^r}pUG_vyo^6MxXs z+}u1&EjcPBVOpc50W9kSjQ48VS zTSEWc10T4DHAhN5Y{O#&ErO{^F%wiSopw)vm|sp#+A zYoeUhtTrhX6lpezx8a?bKDgs(wvbR(^$jW50WV70bkYV^vTCA~xkq&4bkGJ*3wYY% z8vIy;aNQx^U`8w>b^z?-ew&Kt-Pv4q!V|`^`Y}*UPeK=JL_21Ug%xy~Xv7?;K@Cu~ zmCCC={T6c<)#-GNh#C>m0h#RGTu8zl}zx`l;)IeHDK;XgqSLmh`BoRbBDhZQZ zvsZ@%`j|Pksn$07!sZ&)Fd>MIO40FivQ?G!o|P=IIy-5mVd_hi;H%aQI~;Y#ah!O` z!856Ji<+#{dL&L}UJsDRIMh>E#3^UewEDktpw_EOvPil|RkK1g!hWV#uC3^cZS*pa z6w>Dw;(=--1=vJiPE?Z1eom!~vj!T4QOxqUqw*K$Vu6k|h-O5N7RkyVO`s{~fJ2%H zL;4ubUUR$}%j~s0{@H(8!AwN$W-)&N)BUxEcsHPiH4Ga!h%exnU;Ixe+^(d;0C63w zjtIF)OIpxUK2vD!?qUA%#%ZGFU4NA~*Gfy2whJVfYla4h=r&lq%&Z3Pu3axJZvds% zFM#$!5x7D!XlQO!;pr$`mjw@P@&PHzT3HSy}IwMpvrs#6TYQx zeEy^arM5#MiG`^5Byp>uNRWNDQ8+Nu4Y*Q9x7skYmR6}ggja9NA9YVec)xDlHt^lH z4eTrU!SpX_{+u760FHWwdg47h1;)+zf+Hg1rGd{?f<(qn8RM~M zaG;2YSMFj)2a=icmXW9=CpIG`QgU8o?CcvF_s1EA#Veq#Z0?K&2?_YfrklUdP%)O{0;x(%|!9FNyT(p0E=nq2+!1F$u^Yr_ zeq@x{qT_O1Vxk853mCSjvO!SM5o{|p-4g0TUcJht#h}`1<;C7ziQ3M{smknN%x`4j zXNA}~b+*j+qp!YZx!87>v{#LU@lcwU7 Z5E0zz$n1}Xya{bo{)h-|xj!QE{{R{?, 2013 +# Dimitris Glezos , 2011,2013,2017 +# Fotis Athineos , 2021 +# Giannis Meletakis , 2015 +# Jannis Leidel , 2011 +# Nick Mavrakis , 2017-2020 +# Nikolas Demiridis , 2014 +# Nick Mavrakis , 2016 +# Pãnoș , 2014 +# Pãnoș , 2016 +# Serafeim Papastefanos , 2016 +# Stavros Korokithakis , 2014,2016 +# Yorgos Pagles , 2011-2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-18 21:19+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Greek (http://www.transifex.com/django/django/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Αφρικάνς" + +msgid "Arabic" +msgstr "Αραβικά" + +msgid "Algerian Arabic" +msgstr "Αραβικά Αλγερίας" + +msgid "Asturian" +msgstr "Αστούριας" + +msgid "Azerbaijani" +msgstr "Γλώσσα Αζερμπαϊτζάν" + +msgid "Bulgarian" +msgstr "Βουλγαρικά" + +msgid "Belarusian" +msgstr "Λευκορώσικα" + +msgid "Bengali" +msgstr "Μπενγκάλι" + +msgid "Breton" +msgstr "Βρετονικά" + +msgid "Bosnian" +msgstr "Βοσνιακά" + +msgid "Catalan" +msgstr "Καταλανικά" + +msgid "Czech" +msgstr "Τσέχικα" + +msgid "Welsh" +msgstr "Ουαλικά" + +msgid "Danish" +msgstr "Δανέζικα" + +msgid "German" +msgstr "Γερμανικά" + +msgid "Lower Sorbian" +msgstr "Κάτω Σορβικά" + +msgid "Greek" +msgstr "Ελληνικά" + +msgid "English" +msgstr "Αγγλικά" + +msgid "Australian English" +msgstr "Αγγλικά Αυστραλίας" + +msgid "British English" +msgstr "Αγγλικά Βρετανίας" + +msgid "Esperanto" +msgstr "Εσπεράντο" + +msgid "Spanish" +msgstr "Ισπανικά" + +msgid "Argentinian Spanish" +msgstr "Ισπανικά Αργεντινής" + +msgid "Colombian Spanish" +msgstr "Ισπανικά Κολομβίας" + +msgid "Mexican Spanish" +msgstr "Μεξικανική διάλεκτος Ισπανικών" + +msgid "Nicaraguan Spanish" +msgstr "Ισπανικά Νικαράγουας " + +msgid "Venezuelan Spanish" +msgstr "Ισπανικά Βενεζουέλας" + +msgid "Estonian" +msgstr "Εσθονικά" + +msgid "Basque" +msgstr "Βάσκικα" + +msgid "Persian" +msgstr "Περσικά" + +msgid "Finnish" +msgstr "Φινλανδικά" + +msgid "French" +msgstr "Γαλλικά" + +msgid "Frisian" +msgstr "Frisian" + +msgid "Irish" +msgstr "Ιρλανδικά" + +msgid "Scottish Gaelic" +msgstr "Σκωτσέζικα Γαελικά" + +msgid "Galician" +msgstr "Γαελικά" + +msgid "Hebrew" +msgstr "Εβραϊκά" + +msgid "Hindi" +msgstr "Ινδικά" + +msgid "Croatian" +msgstr "Κροατικά" + +msgid "Upper Sorbian" +msgstr "Άνω Σορβικά" + +msgid "Hungarian" +msgstr "Ουγγρικά" + +msgid "Armenian" +msgstr "Αρμενικά" + +msgid "Interlingua" +msgstr "Ιντερλίνγκουα" + +msgid "Indonesian" +msgstr "Ινδονησιακά" + +msgid "Igbo" +msgstr "Ίγκμπο" + +msgid "Ido" +msgstr "Ίντο" + +msgid "Icelandic" +msgstr "Ισλανδικά" + +msgid "Italian" +msgstr "Ιταλικά" + +msgid "Japanese" +msgstr "Γιαπωνέζικα" + +msgid "Georgian" +msgstr "Γεωργιανά" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Καζακστά" + +msgid "Khmer" +msgstr "Χμερ" + +msgid "Kannada" +msgstr "Κανάντα" + +msgid "Korean" +msgstr "Κορεάτικα" + +msgid "Kyrgyz" +msgstr "Κιργιζικά" + +msgid "Luxembourgish" +msgstr "Λουξεμβουργιανά" + +msgid "Lithuanian" +msgstr "Λιθουανικά" + +msgid "Latvian" +msgstr "Λεττονικά" + +msgid "Macedonian" +msgstr "Μακεδονικά" + +msgid "Malayalam" +msgstr "Μαλαγιαλάμ" + +msgid "Mongolian" +msgstr "Μογγολικά" + +msgid "Marathi" +msgstr "Μαράθι" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Βιρμανικά" + +msgid "Norwegian Bokmål" +msgstr "Νορβηγικά Μποκμάλ" + +msgid "Nepali" +msgstr "Νεπαλέζικα" + +msgid "Dutch" +msgstr "Ολλανδικά" + +msgid "Norwegian Nynorsk" +msgstr "Νορβηγική διάλεκτος Nynorsk - Νεονορβηγική" + +msgid "Ossetic" +msgstr "Οσσετικά" + +msgid "Punjabi" +msgstr "Πουντζάμπι" + +msgid "Polish" +msgstr "Πολωνικά" + +msgid "Portuguese" +msgstr "Πορτογαλικά" + +msgid "Brazilian Portuguese" +msgstr "Πορτογαλικά - διάλεκτος Βραζιλίας" + +msgid "Romanian" +msgstr "Ρουμανικά" + +msgid "Russian" +msgstr "Ρωσικά" + +msgid "Slovak" +msgstr "Σλοβακικά" + +msgid "Slovenian" +msgstr "Σλοβενικά" + +msgid "Albanian" +msgstr "Αλβανικά" + +msgid "Serbian" +msgstr "Σερβικά" + +msgid "Serbian Latin" +msgstr "Σέρβικα Λατινικά" + +msgid "Swedish" +msgstr "Σουηδικά" + +msgid "Swahili" +msgstr "Σουαχίλι" + +msgid "Tamil" +msgstr "Διάλεκτος Ταμίλ" + +msgid "Telugu" +msgstr "Τελούγκου" + +msgid "Tajik" +msgstr "Τατζικικά" + +msgid "Thai" +msgstr "Ταϊλάνδης" + +msgid "Turkmen" +msgstr "Τουρκμενικά" + +msgid "Turkish" +msgstr "Τουρκικά" + +msgid "Tatar" +msgstr "Ταταρικά" + +msgid "Udmurt" +msgstr "Ουντμουρτικά" + +msgid "Ukrainian" +msgstr "Ουκρανικά" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Ουζμπεκικά" + +msgid "Vietnamese" +msgstr "Βιετναμέζικα" + +msgid "Simplified Chinese" +msgstr "Απλοποιημένα Κινέζικα" + +msgid "Traditional Chinese" +msgstr "Παραδοσιακά Κινέζικα" + +msgid "Messages" +msgstr "Μηνύματα" + +msgid "Site Maps" +msgstr "Χάρτες Ιστότοπου" + +msgid "Static Files" +msgstr "Στατικά Αρχεία" + +msgid "Syndication" +msgstr "Syndication" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "Ο αριθμός αυτής της σελίδας δεν είναι ακέραιος" + +msgid "That page number is less than 1" +msgstr "Ο αριθμός αυτής της σελίδας είναι μικρότερος του 1" + +msgid "That page contains no results" +msgstr "Η σελίδα αυτή δεν περιέχει αποτελέσματα" + +msgid "Enter a valid value." +msgstr "Εισάγετε μια έγκυρη τιμή." + +msgid "Enter a valid URL." +msgstr "Εισάγετε ένα έγκυρο URL." + +msgid "Enter a valid integer." +msgstr "Εισάγετε έναν έγκυρο ακέραιο." + +msgid "Enter a valid email address." +msgstr "Εισάγετε μια έγκυρη διεύθυνση ηλ. ταχυδρομείου." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Εισάγετε ένα 'slug' που να αποτελείται από γράμματα, αριθμούς, παύλες ή κάτω " +"παύλες." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Εισάγετε ένα 'slug' που να αποτελείται από Unicode γράμματα, παύλες ή κάτω " +"παύλες." + +msgid "Enter a valid IPv4 address." +msgstr "Εισάγετε μια έγκυρη IPv4 διεύθυνση." + +msgid "Enter a valid IPv6 address." +msgstr "Εισάγετε μία έγκυρη IPv6 διεύθυνση" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Εισάγετε μία έγκυρη IPv4 ή IPv6 διεύθυνση" + +msgid "Enter only digits separated by commas." +msgstr "Εισάγετε μόνο ψηφία χωρισμένα με κόμματα." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Βεβαιωθείτε ότι η τιμή είναι %(limit_value)s (η τιμή που καταχωρήσατε είναι " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Βεβαιωθείτε ότι η τιμή είναι μικρότερη ή ίση από %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Βεβαιωθείτε ότι η τιμή είναι μεγαλύτερη ή ίση από %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Βεβαιωθείται πως η τιμή αυτή έχει τουλάχιστον %(limit_value)d χαρακτήρες " +"(έχει %(show_value)d)." +msgstr[1] "" +"Βεβαιωθείτε πως η τιμή έχει τουλάχιστον %(limit_value)d χαρακτήρες (έχει " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Βεβαιωθείται πως η τιμή αυτή έχει τοπολύ %(limit_value)d χαρακτήρες (έχει " +"%(show_value)d)." +msgstr[1] "" +"Βεβαιωθείτε πως η τιμή έχει το πολύ %(limit_value)d χαρακτήρες (έχει " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Εισάγετε έναν αριθμό." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +"Σιγουρευτείτε οτι τα σύνολο των ψηφίων δεν είναι παραπάνω από %(max)s" +msgstr[1] "" +"Σιγουρευτείτε οτι τα σύνολο των ψηφίων δεν είναι παραπάνω από %(max)s" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Σιγουρευτείτε ότι το δεκαδικό ψηφίο δεν είναι παραπάνω από %(max)s." +msgstr[1] "Σιγουρευτείτε ότι τα δεκαδικά ψηφία δεν είναι παραπάνω από %(max)s." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Βεβαιωθείτε ότι δεν υπάρχουν πάνω από %(max)s ψηφία πριν την υποδιαστολή." +msgstr[1] "" +"Βεβαιωθείτε ότι δεν υπάρχουν πάνω από %(max)s ψηφία πριν την υποδιαστολή." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Η επέκταση '%(extension)s' του αρχείου δεν επιτρέπεται. Οι επιτρεπόμενες " +"επεκτάσεις είναι: '%(allowed_extensions)s'." + +msgid "Null characters are not allowed." +msgstr "Δεν επιτρέπονται null (μηδενικοί) χαρακτήρες" + +msgid "and" +msgstr "και" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s με αυτή την %(field_labels)s υπάρχει ήδη." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Η τιμή %(value)r δεν είναι έγκυρη επιλογή." + +msgid "This field cannot be null." +msgstr "Το πεδίο αυτό δεν μπορεί να είναι μηδενικό (null)." + +msgid "This field cannot be blank." +msgstr "Το πεδίο αυτό δεν μπορεί να είναι κενό." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s με αυτό το %(field_label)s υπάρχει ήδη." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s πρέπει να είναι μοναδική για %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Πεδίο τύπου: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Η τιμή '%(value)s' πρέπει να είναι True ή False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Η τιμή '%(value)s' πρέπει να είναι True, False, ή None." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Είτε Αληθές ή Ψευδές)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Συμβολοσειρά (μέχρι %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Ακέραιοι χωρισμένοι με κόμματα" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Η τιμή του '%(value)s' έχει μια λανθασμένη μορφή ημερομηνίας. Η ημερομηνία " +"θα πρέπει να είναι στην μορφή YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Η τιμή '%(value)s' είναι στην σωστή μορφή (YYYY-MM-DD) αλλά είναι μια " +"λανθασμένη ημερομηνία." + +msgid "Date (without time)" +msgstr "Ημερομηνία (χωρίς την ώρα)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Η τιμή του '%(value)s' έχει μια λανθασμένη μορφή. Η ημερομηνία/ώρα θα πρέπει " +"να είναι στην μορφή YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Η τιμή '%(value)s' έχει τη σωστή μορφή (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) " +"αλλά δεν αντιστοιχεί σε σωστή ημερομηνία και ώρα." + +msgid "Date (with time)" +msgstr "Ημερομηνία (με ώρα)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Η τιμή '%(value)s' πρέπει να είναι δεκαδικός αριθμός." + +msgid "Decimal number" +msgstr "Δεκαδικός αριθμός" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Η τιμή '%(value)s' έχει εσφαλμένη μορφή. Πρέπει να είναι της μορφής [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Διάρκεια" + +msgid "Email address" +msgstr "Ηλεκτρονική διεύθυνση" + +msgid "File path" +msgstr "Τοποθεσία αρχείου" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Η '%(value)s' τιμή πρέπει να είναι δεκαδικός." + +msgid "Floating point number" +msgstr "Αριθμός κινητής υποδιαστολής" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Η τιμή '%(value)s' πρέπει να είναι ακέραιος." + +msgid "Integer" +msgstr "Ακέραιος" + +msgid "Big (8 byte) integer" +msgstr "Μεγάλος ακέραιος - big integer (8 bytes)" + +msgid "Small integer" +msgstr "Μικρός ακέραιος" + +msgid "IPv4 address" +msgstr "Διεύθυνση IPv4" + +msgid "IP address" +msgstr "IP διεύθυνση" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Η τιμή '%(value)s' πρέπει να είναι None, True ή False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (Αληθές, Ψευδές, ή τίποτα)" + +msgid "Positive big integer" +msgstr "Μεγάλος θετικός ακέραιος" + +msgid "Positive integer" +msgstr "Θετικός ακέραιος" + +msgid "Positive small integer" +msgstr "Θετικός μικρός ακέραιος" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (μέχρι %(max_length)s)" + +msgid "Text" +msgstr "Κείμενο" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Η τιμή '%(value)s' έχει εσφαλμένη μορφή. Πρέπει να είναι της μορφής HH:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Η τιμή '%(value)s' έχει τη σωστή μορφή (HH:MM[:ss[.uuuuuu]]) αλλά δεν " +"αντιστοιχή σε σωστή ώρα." + +msgid "Time" +msgstr "Ώρα" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Δυαδικά δεδομένα" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "'%(value)s' δεν είναι ένα έγκυρο UUID." + +msgid "Universally unique identifier" +msgstr "Καθολικά μοναδικό αναγνωριστικό" + +msgid "File" +msgstr "Αρχείο" + +msgid "Image" +msgstr "Εικόνα" + +msgid "A JSON object" +msgstr "Ένα αντικείμενο JSON" + +msgid "Value must be valid JSON." +msgstr "Η τιμή πρέπει να είναι έγκυρο JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" +"Το μοντέλο %(model)s με την τιμή %(value)r του πεδίου %(field)s δεν υπάρχει." + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (ο τύπος καθορίζεται από το πεδίο του συσχετισμού)" + +msgid "One-to-one relationship" +msgstr "Σχέση ένα-προς-ένα" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "σχέση %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "σχέσεις %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Σχέση πολλά-προς-πολλά" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Αυτό το πεδίο είναι απαραίτητο." + +msgid "Enter a whole number." +msgstr "Εισάγετε έναν ακέραιο αριθμό." + +msgid "Enter a valid date." +msgstr "Εισάγετε μια έγκυρη ημερομηνία." + +msgid "Enter a valid time." +msgstr "Εισάγετε μια έγκυρη ώρα." + +msgid "Enter a valid date/time." +msgstr "Εισάγετε μια έγκυρη ημερομηνία/ώρα." + +msgid "Enter a valid duration." +msgstr "Εισάγετε μια έγκυρη διάρκεια." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Ο αριθμός των ημερών πρέπει να είναι μεταξύ {min_days} και {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Δεν έχει υποβληθεί κάποιο αρχείο. Ελέγξτε τον τύπο κωδικοποίησης στη φόρμα." + +msgid "No file was submitted." +msgstr "Δεν υποβλήθηκε κάποιο αρχείο." + +msgid "The submitted file is empty." +msgstr "Το αρχείο που υποβλήθηκε είναι κενό." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Βεβαιωθείται πως το όνομα του αρχείου έχει το πολύ %(max)d χαρακτήρα (το " +"παρόν έχει %(length)d)." +msgstr[1] "" +"Βεβαιωθείται πως το όνομα του αρχείου έχει το πολύ %(max)d χαρακτήρα (το " +"παρόν έχει %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Βεβαιωθείτε ότι είτε έχετε επιλέξει ένα αρχείο για αποστολή είτε έχετε " +"επιλέξει την εκκαθάριση του πεδίου. Δεν είναι δυνατή η επιλογή και των δύο " +"ταυτοχρόνως." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Βεβαιωθείτε ότι το αρχείο που έχετε επιλέξει για αποστολή είναι αρχείο " +"εικόνας. Το τρέχον είτε δεν ήταν εικόνα είτε έχει υποστεί φθορά." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Βεβαιωθείτε ότι έχετε επιλέξει μία έγκυρη επιλογή. Η τιμή %(value)s δεν " +"είναι διαθέσιμη προς επιλογή." + +msgid "Enter a list of values." +msgstr "Εισάγετε μια λίστα τιμών." + +msgid "Enter a complete value." +msgstr "Εισάγετε μια πλήρης τιμή" + +msgid "Enter a valid UUID." +msgstr "Εισάγετε μια έγκυρη UUID." + +msgid "Enter a valid JSON." +msgstr "Εισάγετε ένα έγκυρο JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Κρυφό πεδίο %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "Παρακαλώ υποβάλλετε το πολύ %d φόρμα." +msgstr[1] "Παρακαλώ υποβάλλετε το πολύ %d φόρμες." + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "Παρακαλώ υποβάλλετε τουλάχιστον %d φόρμα." +msgstr[1] "Παρακαλώ υποβάλλετε τουλάχιστον %d φόρμες." + +msgid "Order" +msgstr "Ταξινόμηση" + +msgid "Delete" +msgstr "Διαγραφή" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Στο %(field)s έχετε ξαναεισάγει τα ίδια δεδομένα." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Στο %(field)s έχετε ξαναεισάγει τα ίδια δεδομένα. Θα πρέπει να εμφανίζονται " +"μία φορά. " + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Στο %(field_name)s έχετε ξαναεισάγει τα ίδια δεδομένα. Θα πρέπει να " +"εμφανίζονται μία φορά για το %(lookup)s στο %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Έχετε ξαναεισάγει την ίδια τιμη. Βεβαιωθείτε ότι είναι μοναδική." + +msgid "The inline value did not match the parent instance." +msgstr "Η τιμή δεν είναι ίση με την αντίστοιχη τιμή του γονικού object." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Επιλέξτε μια έγκυρη επιλογή. Η επιλογή αυτή δεν είναι μία από τις διαθέσιμες " +"επιλογές." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" δεν είναι έγκυρη τιμή." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"Η ημερομηνία %(datetime)s δεν μπόρεσε να μετατραπεί στην ζώνη ώρας " +"%(current_timezone)s. Ίσως να είναι ασαφής ή να μην υπάρχει." + +msgid "Clear" +msgstr "Εκκαθάριση" + +msgid "Currently" +msgstr "Τώρα" + +msgid "Change" +msgstr "Επεξεργασία" + +msgid "Unknown" +msgstr "Άγνωστο" + +msgid "Yes" +msgstr "Ναι" + +msgid "No" +msgstr "Όχι" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ναι,όχι,ίσως" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bytes" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "μμ." + +msgid "a.m." +msgstr "πμ." + +msgid "PM" +msgstr "ΜΜ" + +msgid "AM" +msgstr "ΠΜ" + +msgid "midnight" +msgstr "μεσάνυχτα" + +msgid "noon" +msgstr "μεσημέρι" + +msgid "Monday" +msgstr "Δευτέρα" + +msgid "Tuesday" +msgstr "Τρίτη" + +msgid "Wednesday" +msgstr "Τετάρτη" + +msgid "Thursday" +msgstr "Πέμπτη" + +msgid "Friday" +msgstr "Παρασκευή" + +msgid "Saturday" +msgstr "Σάββατο" + +msgid "Sunday" +msgstr "Κυριακή" + +msgid "Mon" +msgstr "Δευ" + +msgid "Tue" +msgstr "Τρί" + +msgid "Wed" +msgstr "Τετ" + +msgid "Thu" +msgstr "Πέμ" + +msgid "Fri" +msgstr "Παρ" + +msgid "Sat" +msgstr "Σαβ" + +msgid "Sun" +msgstr "Κυρ" + +msgid "January" +msgstr "Ιανουάριος" + +msgid "February" +msgstr "Φεβρουάριος" + +msgid "March" +msgstr "Μάρτιος" + +msgid "April" +msgstr "Απρίλιος" + +msgid "May" +msgstr "Μάιος" + +msgid "June" +msgstr "Ιούνιος" + +msgid "July" +msgstr "Ιούλιος" + +msgid "August" +msgstr "Αύγουστος" + +msgid "September" +msgstr "Σεπτέμβριος" + +msgid "October" +msgstr "Οκτώβριος" + +msgid "November" +msgstr "Νοέμβριος" + +msgid "December" +msgstr "Δεκέμβριος" + +msgid "jan" +msgstr "Ιαν" + +msgid "feb" +msgstr "Φεβ" + +msgid "mar" +msgstr "Μάρ" + +msgid "apr" +msgstr "Απρ" + +msgid "may" +msgstr "Μάι" + +msgid "jun" +msgstr "Ιούν" + +msgid "jul" +msgstr "Ιούλ" + +msgid "aug" +msgstr "Αύγ" + +msgid "sep" +msgstr "Σεπ" + +msgid "oct" +msgstr "Οκτ" + +msgid "nov" +msgstr "Νοέ" + +msgid "dec" +msgstr "Δεκ" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ιαν." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Φεβ." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Μάρτιος" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Απρίλ." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Μάιος" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Ιούν." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Ιούλ." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Αύγ." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Σεπτ." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Οκτ." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Νοέμ." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Δεκ." + +msgctxt "alt. month" +msgid "January" +msgstr "Ιανουαρίου" + +msgctxt "alt. month" +msgid "February" +msgstr "Φεβρουαρίου" + +msgctxt "alt. month" +msgid "March" +msgstr "Μαρτίου" + +msgctxt "alt. month" +msgid "April" +msgstr "Απριλίου" + +msgctxt "alt. month" +msgid "May" +msgstr "Μαΐου" + +msgctxt "alt. month" +msgid "June" +msgstr "Ιουνίου" + +msgctxt "alt. month" +msgid "July" +msgstr "Ιουλίου" + +msgctxt "alt. month" +msgid "August" +msgstr "Αυγούστου" + +msgctxt "alt. month" +msgid "September" +msgstr "Σεπτεμβρίου" + +msgctxt "alt. month" +msgid "October" +msgstr "Οκτωβρίου" + +msgctxt "alt. month" +msgid "November" +msgstr "Νοεμβρίου" + +msgctxt "alt. month" +msgid "December" +msgstr "Δεκεμβρίου" + +msgid "This is not a valid IPv6 address." +msgstr "Αυτή δεν είναι έγκυρη διεύθυνση IPv6." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ή" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "Απαγορευμένο" + +msgid "CSRF verification failed. Request aborted." +msgstr "Η πιστοποίηση CSRF απέτυχε. Το αίτημα ματαιώθηκε." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Αν οι 'Referer' headers είναι απενεργοποιημένοι στον browser σας από εσάς, " +"παρακαλούμε να τους ξανά-ενεργοποιήσετε, τουλάχιστον για αυτό το site ή για " +"τις συνδέσεις HTTPS ή για τα 'same-origin' requests." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Αν χρησιμοποιείτε την ετικέτα ή συμπεριλαμβάνετε την κεφαλίδα (header) 'Referrer-Policy: no-referrer', " +"παρακαλούμε αφαιρέστε τα. Η προστασία CSRF απαιτεί την κεφαλίδα 'Referer' να " +"κάνει αυστηρό έλεγχο στον referer. Αν κύριο μέλημα σας είναι η ιδιωτικότητα, " +"σκεφτείτε να χρησιμοποιήσετε εναλλακτικές μεθόδους όπως για συνδέσμους από άλλες ιστοσελίδες." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Βλέπετε αυτό το μήνυμα επειδή αυτή η σελίδα απαιτεί ένα CSRF cookie, όταν " +"κατατίθενται φόρμες. Αυτό το cookie είναι απαραίτητο για λόγους ασφαλείας, " +"για να εξασφαλιστεί ότι ο browser δεν έχει γίνει hijacked από τρίτους." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Αν τα cookies είναι απενεργοποιημένα στον browser σας από εσάς, παρακαλούμε " +"να τα ξανά-ενεργοποιήσετε, τουλάχιστον για αυτό το site ή για τα 'same-" +"origin' requests." + +msgid "More information is available with DEBUG=True." +msgstr "Περισσότερες πληροφορίες είναι διαθέσιμες με DEBUG=True." + +msgid "No year specified" +msgstr "Δεν έχει οριστεί χρονιά" + +msgid "Date out of range" +msgstr "Ημερομηνία εκτός εύρους" + +msgid "No month specified" +msgstr "Δεν έχει οριστεί μήνας" + +msgid "No day specified" +msgstr "Δεν έχει οριστεί μέρα" + +msgid "No week specified" +msgstr "Δεν έχει οριστεί εβδομάδα" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Δεν υπάρχουν διαθέσιμα %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Μελλοντικά %(verbose_name_plural)s δεν είναι διαθέσιμα διότι δεν έχει τεθεί " +"το %(class_name)s.allow_future." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Λανθασμένη μορφή ημερομηνίας '%(datestr)s' για την επιλεγμένη μορφή " +"'%(format)s'" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Δεν βρέθηκαν %(verbose_name)s που να ικανοποιούν την αναζήτηση." + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Η σελίδα δεν έχει την τιμή 'last' υποδηλώνοντας την τελευταία σελίδα, ούτε " +"μπορεί να μετατραπεί σε ακέραιο." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Άκυρη σελίδα (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Άδεια λίστα και το \"%(class_name)s.allow_empty\" είναι False." + +msgid "Directory indexes are not allowed here." +msgstr "Τα ευρετήρια καταλόγων δεν επιτρέπονται εδώ." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "Το \"%(path)s\" δεν υπάρχει" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Ευρετήριο του %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Η εγκατάσταση δούλεψε με επιτυχία! Συγχαρητήρια!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Δείτε τις σημειώσεις κυκλοφορίας για το " +"Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Βλέπετε αυτό το μήνυμα επειδή έχετε DEBUG=True στο αρχείο settings και δεν έχετε ρυθμίσει κανένα URL στο " +"αρχείο urls.py. Στρωθείτε στην δουλειά!" + +msgid "Django Documentation" +msgstr "Εγχειρίδιο Django" + +msgid "Topics, references, & how-to’s" +msgstr "Θέματα, αναφορές & \"πως να...\"" + +msgid "Tutorial: A Polling App" +msgstr "Εγχειρίδιο: Ένα App Ψηφοφορίας" + +msgid "Get started with Django" +msgstr "Ξεκινήστε με το Django" + +msgid "Django Community" +msgstr "Κοινότητα Django" + +msgid "Connect, get help, or contribute" +msgstr "Συνδεθείτε, λάβετε βοήθεια, ή συνεισφέρετε" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/el/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/el/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/el/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4193514a05955736a7cf804da3516d9055f22a4a GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFf#T7{_B`Ads?-YTaQcEcnz%h@Nb5Ji9NpV=?+^}mNeA~yKG>V ztTOOQ_I98=&=$;)EjdI4lnTf@W^0;xBb1I18FtG4;e3Fm6QoU$UA}vT#%NZ)snerz z{o43~s>VH~#(npy@qhGetkEa%aRbH=Ed7^0>|tIK9XU`8OA{T;JF0dRr`wY%=zFqg z1)8Bd(}Usdvyw#bK>GI7u$-V;_520Z$|S);VHV9_--CA zbN^?Y6qzq&(JGA>Mefhzya=;k8LpCAetq-Z&u@x&bQeZHLVC+5x8Y)*2~oC~2}u@( qNi4*PFw2%{Smfio^@jVDW@MGbp8@Tgf1m+E2&$8VTodvTaNr*@ip3QG literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/el/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/el/formats.py new file mode 100644 index 0000000..25c8ef7 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/el/formats.py @@ -0,0 +1,34 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "d/m/Y" +TIME_FORMAT = "P" +DATETIME_FORMAT = "d/m/Y P" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y P" +FIRST_DAY_OF_WEEK = 0 # Sunday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + "%Y-%m-%d", # '2006-10-25' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' + "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' + "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' + "%d/%m/%y %H:%M", # '25/10/06 14:30' + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..0d4c976d2624f5caf10d5989cf58218bbd1bd925 GIT binary patch literal 356 zcmYL^&q@O^5Qi&z+M{O=Ie4;8O)0B0xB&q0w_}K)qVuH1Y-7m!Y=xZ< z2^P`11|GIHLglr{md_PT1DeDx%uGTp#!^i{Dn3G8Y9)tKNy#Ft@YD4@_nriqgPI7H z>q$P8WA>g*Oi%?wu{Ftu|M?=J`QReit+5CdzqBaHwl1#44bpwZfIi6?w_ylTR)bkViO(Y2`8CPYlPFV!Oyd#~T*9Rrk9`^J&gqIh#D8~gzx CN@0=! literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po new file mode 100644 index 0000000..b47726e --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,1614 @@ +# This file is distributed under the same license as the Django package. +# +msgid "" +msgstr "" +"Project-Id-Version: Django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2010-05-13 15:35+0200\n" +"Last-Translator: Django team\n" +"Language-Team: English \n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: conf/global_settings.py:52 +msgid "Afrikaans" +msgstr "" + +#: conf/global_settings.py:53 +msgid "Arabic" +msgstr "" + +#: conf/global_settings.py:54 +msgid "Algerian Arabic" +msgstr "" + +#: conf/global_settings.py:55 +msgid "Asturian" +msgstr "" + +#: conf/global_settings.py:56 +msgid "Azerbaijani" +msgstr "" + +#: conf/global_settings.py:57 +msgid "Bulgarian" +msgstr "" + +#: conf/global_settings.py:58 +msgid "Belarusian" +msgstr "" + +#: conf/global_settings.py:59 +msgid "Bengali" +msgstr "" + +#: conf/global_settings.py:60 +msgid "Breton" +msgstr "" + +#: conf/global_settings.py:61 +msgid "Bosnian" +msgstr "" + +#: conf/global_settings.py:62 +msgid "Catalan" +msgstr "" + +#: conf/global_settings.py:63 +msgid "Central Kurdish (Sorani)" +msgstr "" + +#: conf/global_settings.py:64 +msgid "Czech" +msgstr "" + +#: conf/global_settings.py:65 +msgid "Welsh" +msgstr "" + +#: conf/global_settings.py:66 +msgid "Danish" +msgstr "" + +#: conf/global_settings.py:67 +msgid "German" +msgstr "" + +#: conf/global_settings.py:68 +msgid "Lower Sorbian" +msgstr "" + +#: conf/global_settings.py:69 +msgid "Greek" +msgstr "" + +#: conf/global_settings.py:70 +msgid "English" +msgstr "" + +#: conf/global_settings.py:71 +msgid "Australian English" +msgstr "" + +#: conf/global_settings.py:72 +msgid "British English" +msgstr "" + +#: conf/global_settings.py:73 +msgid "Esperanto" +msgstr "" + +#: conf/global_settings.py:74 +msgid "Spanish" +msgstr "" + +#: conf/global_settings.py:75 +msgid "Argentinian Spanish" +msgstr "" + +#: conf/global_settings.py:76 +msgid "Colombian Spanish" +msgstr "" + +#: conf/global_settings.py:77 +msgid "Mexican Spanish" +msgstr "" + +#: conf/global_settings.py:78 +msgid "Nicaraguan Spanish" +msgstr "" + +#: conf/global_settings.py:79 +msgid "Venezuelan Spanish" +msgstr "" + +#: conf/global_settings.py:80 +msgid "Estonian" +msgstr "" + +#: conf/global_settings.py:81 +msgid "Basque" +msgstr "" + +#: conf/global_settings.py:82 +msgid "Persian" +msgstr "" + +#: conf/global_settings.py:83 +msgid "Finnish" +msgstr "" + +#: conf/global_settings.py:84 +msgid "French" +msgstr "" + +#: conf/global_settings.py:85 +msgid "Frisian" +msgstr "" + +#: conf/global_settings.py:86 +msgid "Irish" +msgstr "" + +#: conf/global_settings.py:87 +msgid "Scottish Gaelic" +msgstr "" + +#: conf/global_settings.py:88 +msgid "Galician" +msgstr "" + +#: conf/global_settings.py:89 +msgid "Hebrew" +msgstr "" + +#: conf/global_settings.py:90 +msgid "Hindi" +msgstr "" + +#: conf/global_settings.py:91 +msgid "Croatian" +msgstr "" + +#: conf/global_settings.py:92 +msgid "Upper Sorbian" +msgstr "" + +#: conf/global_settings.py:93 +msgid "Hungarian" +msgstr "" + +#: conf/global_settings.py:94 +msgid "Armenian" +msgstr "" + +#: conf/global_settings.py:95 +msgid "Interlingua" +msgstr "" + +#: conf/global_settings.py:96 +msgid "Indonesian" +msgstr "" + +#: conf/global_settings.py:97 +msgid "Igbo" +msgstr "" + +#: conf/global_settings.py:98 +msgid "Ido" +msgstr "" + +#: conf/global_settings.py:99 +msgid "Icelandic" +msgstr "" + +#: conf/global_settings.py:100 +msgid "Italian" +msgstr "" + +#: conf/global_settings.py:101 +msgid "Japanese" +msgstr "" + +#: conf/global_settings.py:102 +msgid "Georgian" +msgstr "" + +#: conf/global_settings.py:103 +msgid "Kabyle" +msgstr "" + +#: conf/global_settings.py:104 +msgid "Kazakh" +msgstr "" + +#: conf/global_settings.py:105 +msgid "Khmer" +msgstr "" + +#: conf/global_settings.py:106 +msgid "Kannada" +msgstr "" + +#: conf/global_settings.py:107 +msgid "Korean" +msgstr "" + +#: conf/global_settings.py:108 +msgid "Kyrgyz" +msgstr "" + +#: conf/global_settings.py:109 +msgid "Luxembourgish" +msgstr "" + +#: conf/global_settings.py:110 +msgid "Lithuanian" +msgstr "" + +#: conf/global_settings.py:111 +msgid "Latvian" +msgstr "" + +#: conf/global_settings.py:112 +msgid "Macedonian" +msgstr "" + +#: conf/global_settings.py:113 +msgid "Malayalam" +msgstr "" + +#: conf/global_settings.py:114 +msgid "Mongolian" +msgstr "" + +#: conf/global_settings.py:115 +msgid "Marathi" +msgstr "" + +#: conf/global_settings.py:116 +msgid "Malay" +msgstr "" + +#: conf/global_settings.py:117 +msgid "Burmese" +msgstr "" + +#: conf/global_settings.py:118 +msgid "Norwegian Bokmål" +msgstr "" + +#: conf/global_settings.py:119 +msgid "Nepali" +msgstr "" + +#: conf/global_settings.py:120 +msgid "Dutch" +msgstr "" + +#: conf/global_settings.py:121 +msgid "Norwegian Nynorsk" +msgstr "" + +#: conf/global_settings.py:122 +msgid "Ossetic" +msgstr "" + +#: conf/global_settings.py:123 +msgid "Punjabi" +msgstr "" + +#: conf/global_settings.py:124 +msgid "Polish" +msgstr "" + +#: conf/global_settings.py:125 +msgid "Portuguese" +msgstr "" + +#: conf/global_settings.py:126 +msgid "Brazilian Portuguese" +msgstr "" + +#: conf/global_settings.py:127 +msgid "Romanian" +msgstr "" + +#: conf/global_settings.py:128 +msgid "Russian" +msgstr "" + +#: conf/global_settings.py:129 +msgid "Slovak" +msgstr "" + +#: conf/global_settings.py:130 +msgid "Slovenian" +msgstr "" + +#: conf/global_settings.py:131 +msgid "Albanian" +msgstr "" + +#: conf/global_settings.py:132 +msgid "Serbian" +msgstr "" + +#: conf/global_settings.py:133 +msgid "Serbian Latin" +msgstr "" + +#: conf/global_settings.py:134 +msgid "Swedish" +msgstr "" + +#: conf/global_settings.py:135 +msgid "Swahili" +msgstr "" + +#: conf/global_settings.py:136 +msgid "Tamil" +msgstr "" + +#: conf/global_settings.py:137 +msgid "Telugu" +msgstr "" + +#: conf/global_settings.py:138 +msgid "Tajik" +msgstr "" + +#: conf/global_settings.py:139 +msgid "Thai" +msgstr "" + +#: conf/global_settings.py:140 +msgid "Turkmen" +msgstr "" + +#: conf/global_settings.py:141 +msgid "Turkish" +msgstr "" + +#: conf/global_settings.py:142 +msgid "Tatar" +msgstr "" + +#: conf/global_settings.py:143 +msgid "Udmurt" +msgstr "" + +#: conf/global_settings.py:144 +msgid "Uyghur" +msgstr "" + +#: conf/global_settings.py:145 +msgid "Ukrainian" +msgstr "" + +#: conf/global_settings.py:146 +msgid "Urdu" +msgstr "" + +#: conf/global_settings.py:147 +msgid "Uzbek" +msgstr "" + +#: conf/global_settings.py:148 +msgid "Vietnamese" +msgstr "" + +#: conf/global_settings.py:149 +msgid "Simplified Chinese" +msgstr "" + +#: conf/global_settings.py:150 +msgid "Traditional Chinese" +msgstr "" + +#: contrib/messages/apps.py:15 +msgid "Messages" +msgstr "" + +#: contrib/sitemaps/apps.py:8 +msgid "Site Maps" +msgstr "" + +#: contrib/staticfiles/apps.py:9 +msgid "Static Files" +msgstr "" + +#: contrib/syndication/apps.py:7 +msgid "Syndication" +msgstr "" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +#: core/paginator.py:30 +msgid "…" +msgstr "" + +#: core/paginator.py:32 +msgid "That page number is not an integer" +msgstr "" + +#: core/paginator.py:33 +msgid "That page number is less than 1" +msgstr "" + +#: core/paginator.py:34 +msgid "That page contains no results" +msgstr "" + +#: core/validators.py:22 +msgid "Enter a valid value." +msgstr "" + +#: core/validators.py:70 +msgid "Enter a valid domain name." +msgstr "" + +#: core/validators.py:104 forms/fields.py:759 +msgid "Enter a valid URL." +msgstr "" + +#: core/validators.py:165 +msgid "Enter a valid integer." +msgstr "" + +#: core/validators.py:176 +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +#: core/validators.py:259 +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +#: core/validators.py:267 +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +#: core/validators.py:327 core/validators.py:336 core/validators.py:350 +#: db/models/fields/__init__.py:2219 +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "" + +#: core/validators.py:329 +msgid "IPv4" +msgstr "" + +#: core/validators.py:338 utils/ipv6.py:30 +msgid "IPv6" +msgstr "" + +#: core/validators.py:352 +msgid "IPv4 or IPv6" +msgstr "" + +#: core/validators.py:341 +msgid "Enter only digits separated by commas." +msgstr "" + +#: core/validators.py:347 +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#: core/validators.py:382 +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#: core/validators.py:391 +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#: core/validators.py:400 +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#: core/validators.py:407 +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#: core/validators.py:439 +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: core/validators.py:457 +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: core/validators.py:480 forms/fields.py:354 forms/fields.py:393 +msgid "Enter a number." +msgstr "" + +#: core/validators.py:482 +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#: core/validators.py:487 +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#: core/validators.py:492 +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#: core/validators.py:563 +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +#: core/validators.py:624 +msgid "Null characters are not allowed." +msgstr "" + +#: db/models/base.py:1465 forms/models.py:902 +msgid "and" +msgstr "" + +#: db/models/base.py:1467 +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#: db/models/constraints.py:20 +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#: db/models/fields/__init__.py:128 +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +#: db/models/fields/__init__.py:129 +msgid "This field cannot be null." +msgstr "" + +#: db/models/fields/__init__.py:130 +msgid "This field cannot be blank." +msgstr "" + +#: db/models/fields/__init__.py:131 +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#: db/models/fields/__init__.py:135 +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#: db/models/fields/__init__.py:174 +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#: db/models/fields/__init__.py:1157 +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#: db/models/fields/__init__.py:1158 +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +#: db/models/fields/__init__.py:1160 +msgid "Boolean (Either True or False)" +msgstr "" + +#: db/models/fields/__init__.py:1210 +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +#: db/models/fields/__init__.py:1212 +msgid "String (unlimited)" +msgstr "" + +#: db/models/fields/__init__.py:1316 +msgid "Comma-separated integers" +msgstr "" + +#: db/models/fields/__init__.py:1417 +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#: db/models/fields/__init__.py:1421 db/models/fields/__init__.py:1556 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +#: db/models/fields/__init__.py:1425 +msgid "Date (without time)" +msgstr "" + +#: db/models/fields/__init__.py:1552 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#: db/models/fields/__init__.py:1560 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +#: db/models/fields/__init__.py:1565 +msgid "Date (with time)" +msgstr "" + +#: db/models/fields/__init__.py:1689 +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +#: db/models/fields/__init__.py:1691 +msgid "Decimal number" +msgstr "" + +#: db/models/fields/__init__.py:1852 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +#: db/models/fields/__init__.py:1856 +msgid "Duration" +msgstr "" + +#: db/models/fields/__init__.py:1908 +msgid "Email address" +msgstr "" + +#: db/models/fields/__init__.py:1933 +msgid "File path" +msgstr "" + +#: db/models/fields/__init__.py:2011 +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +#: db/models/fields/__init__.py:2013 +msgid "Floating point number" +msgstr "" + +#: db/models/fields/__init__.py:2053 +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +#: db/models/fields/__init__.py:2055 +msgid "Integer" +msgstr "" + +#: db/models/fields/__init__.py:2151 +msgid "Big (8 byte) integer" +msgstr "" + +#: db/models/fields/__init__.py:2168 +msgid "Small integer" +msgstr "" + +#: db/models/fields/__init__.py:2176 +msgid "IPv4 address" +msgstr "" + +#: db/models/fields/__init__.py:2207 +msgid "IP address" +msgstr "" + +#: db/models/fields/__init__.py:2300 db/models/fields/__init__.py:2301 +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +#: db/models/fields/__init__.py:2303 +msgid "Boolean (Either True, False or None)" +msgstr "" + +#: db/models/fields/__init__.py:2354 +msgid "Positive big integer" +msgstr "" + +#: db/models/fields/__init__.py:2369 +msgid "Positive integer" +msgstr "" + +#: db/models/fields/__init__.py:2384 +msgid "Positive small integer" +msgstr "" + +#: db/models/fields/__init__.py:2400 +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +#: db/models/fields/__init__.py:2436 +msgid "Text" +msgstr "" + +#: db/models/fields/__init__.py:2511 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#: db/models/fields/__init__.py:2515 +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +#: db/models/fields/__init__.py:2519 +msgid "Time" +msgstr "" + +#: db/models/fields/__init__.py:2627 +msgid "URL" +msgstr "" + +#: db/models/fields/__init__.py:2651 +msgid "Raw binary data" +msgstr "" + +#: db/models/fields/__init__.py:2716 +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +#: db/models/fields/__init__.py:2718 +msgid "Universally unique identifier" +msgstr "" + +#: db/models/fields/files.py:232 +msgid "File" +msgstr "" + +#: db/models/fields/files.py:393 +msgid "Image" +msgstr "" + +#: db/models/fields/json.py:26 +msgid "A JSON object" +msgstr "" + +#: db/models/fields/json.py:28 +msgid "Value must be valid JSON." +msgstr "" + +#: db/models/fields/related.py:939 +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +#: db/models/fields/related.py:941 +msgid "Foreign Key (type determined by related field)" +msgstr "" + +#: db/models/fields/related.py:1235 +msgid "One-to-one relationship" +msgstr "" + +#: db/models/fields/related.py:1292 +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#: db/models/fields/related.py:1294 +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +#: db/models/fields/related.py:1342 +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the label +#: forms/boundfield.py:185 +msgid ":?.!" +msgstr "" + +#: forms/fields.py:94 +msgid "This field is required." +msgstr "" + +#: forms/fields.py:303 +msgid "Enter a whole number." +msgstr "" + +#: forms/fields.py:474 forms/fields.py:1246 +msgid "Enter a valid date." +msgstr "" + +#: forms/fields.py:497 forms/fields.py:1247 +msgid "Enter a valid time." +msgstr "" + +#: forms/fields.py:524 +msgid "Enter a valid date/time." +msgstr "" + +#: forms/fields.py:558 +msgid "Enter a valid duration." +msgstr "" + +#: forms/fields.py:559 +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +#: forms/fields.py:628 +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +#: forms/fields.py:629 +msgid "No file was submitted." +msgstr "" + +#: forms/fields.py:630 +msgid "The submitted file is empty." +msgstr "" + +#: forms/fields.py:632 +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +#: forms/fields.py:637 +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +#: forms/fields.py:701 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#: forms/fields.py:868 forms/fields.py:954 forms/models.py:1581 +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +#: forms/fields.py:956 forms/fields.py:1075 forms/models.py:1579 +msgid "Enter a list of values." +msgstr "" + +#: forms/fields.py:1076 +msgid "Enter a complete value." +msgstr "" + +#: forms/fields.py:1315 +msgid "Enter a valid UUID." +msgstr "" + +#: forms/fields.py:1345 +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +#: forms/forms.py:94 +msgid ":" +msgstr "" + +#: forms/forms.py:231 +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +#: forms/formsets.py:61 +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#: forms/formsets.py:65 +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: forms/formsets.py:70 +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: forms/formsets.py:484 forms/formsets.py:491 +msgid "Order" +msgstr "" + +#: forms/formsets.py:499 +msgid "Delete" +msgstr "" + +#: forms/models.py:895 +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#: forms/models.py:900 +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#: forms/models.py:907 +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +#: forms/models.py:916 +msgid "Please correct the duplicate values below." +msgstr "" + +#: forms/models.py:1353 +msgid "The inline value did not match the parent instance." +msgstr "" + +#: forms/models.py:1444 +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#: forms/models.py:1583 +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#: forms/utils.py:227 +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +#: forms/widgets.py:457 +msgid "Clear" +msgstr "" + +#: forms/widgets.py:458 +msgid "Currently" +msgstr "" + +#: forms/widgets.py:459 +msgid "Change" +msgstr "" + +#: forms/widgets.py:796 +msgid "Unknown" +msgstr "" + +#: forms/widgets.py:797 +msgid "Yes" +msgstr "" + +#: forms/widgets.py:798 +msgid "No" +msgstr "" + +#. Translators: Please do not add spaces around commas. +#: template/defaultfilters.py:875 +msgid "yes,no,maybe" +msgstr "" + +#: template/defaultfilters.py:905 template/defaultfilters.py:922 +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#: template/defaultfilters.py:924 +#, python-format +msgid "%s KB" +msgstr "" + +#: template/defaultfilters.py:926 +#, python-format +msgid "%s MB" +msgstr "" + +#: template/defaultfilters.py:928 +#, python-format +msgid "%s GB" +msgstr "" + +#: template/defaultfilters.py:930 +#, python-format +msgid "%s TB" +msgstr "" + +#: template/defaultfilters.py:932 +#, python-format +msgid "%s PB" +msgstr "" + +#: utils/dateformat.py:73 +msgid "p.m." +msgstr "" + +#: utils/dateformat.py:74 +msgid "a.m." +msgstr "" + +#: utils/dateformat.py:79 +msgid "PM" +msgstr "" + +#: utils/dateformat.py:80 +msgid "AM" +msgstr "" + +#: utils/dateformat.py:152 +msgid "midnight" +msgstr "" + +#: utils/dateformat.py:154 +msgid "noon" +msgstr "" + +#: utils/dates.py:7 +msgid "Monday" +msgstr "" + +#: utils/dates.py:8 +msgid "Tuesday" +msgstr "" + +#: utils/dates.py:9 +msgid "Wednesday" +msgstr "" + +#: utils/dates.py:10 +msgid "Thursday" +msgstr "" + +#: utils/dates.py:11 +msgid "Friday" +msgstr "" + +#: utils/dates.py:12 +msgid "Saturday" +msgstr "" + +#: utils/dates.py:13 +msgid "Sunday" +msgstr "" + +#: utils/dates.py:16 +msgid "Mon" +msgstr "" + +#: utils/dates.py:17 +msgid "Tue" +msgstr "" + +#: utils/dates.py:18 +msgid "Wed" +msgstr "" + +#: utils/dates.py:19 +msgid "Thu" +msgstr "" + +#: utils/dates.py:20 +msgid "Fri" +msgstr "" + +#: utils/dates.py:21 +msgid "Sat" +msgstr "" + +#: utils/dates.py:22 +msgid "Sun" +msgstr "" + +#: utils/dates.py:25 +msgid "January" +msgstr "" + +#: utils/dates.py:26 +msgid "February" +msgstr "" + +#: utils/dates.py:27 +msgid "March" +msgstr "" + +#: utils/dates.py:28 +msgid "April" +msgstr "" + +#: utils/dates.py:29 +msgid "May" +msgstr "" + +#: utils/dates.py:30 +msgid "June" +msgstr "" + +#: utils/dates.py:31 +msgid "July" +msgstr "" + +#: utils/dates.py:32 +msgid "August" +msgstr "" + +#: utils/dates.py:33 +msgid "September" +msgstr "" + +#: utils/dates.py:34 +msgid "October" +msgstr "" + +#: utils/dates.py:35 +msgid "November" +msgstr "" + +#: utils/dates.py:36 +msgid "December" +msgstr "" + +#: utils/dates.py:39 +msgid "jan" +msgstr "" + +#: utils/dates.py:40 +msgid "feb" +msgstr "" + +#: utils/dates.py:41 +msgid "mar" +msgstr "" + +#: utils/dates.py:42 +msgid "apr" +msgstr "" + +#: utils/dates.py:43 +msgid "may" +msgstr "" + +#: utils/dates.py:44 +msgid "jun" +msgstr "" + +#: utils/dates.py:45 +msgid "jul" +msgstr "" + +#: utils/dates.py:46 +msgid "aug" +msgstr "" + +#: utils/dates.py:47 +msgid "sep" +msgstr "" + +#: utils/dates.py:48 +msgid "oct" +msgstr "" + +#: utils/dates.py:49 +msgid "nov" +msgstr "" + +#: utils/dates.py:50 +msgid "dec" +msgstr "" + +#: utils/dates.py:53 +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +#: utils/dates.py:54 +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +#: utils/dates.py:55 +msgctxt "abbrev. month" +msgid "March" +msgstr "" + +#: utils/dates.py:56 +msgctxt "abbrev. month" +msgid "April" +msgstr "" + +#: utils/dates.py:57 +msgctxt "abbrev. month" +msgid "May" +msgstr "" + +#: utils/dates.py:58 +msgctxt "abbrev. month" +msgid "June" +msgstr "" + +#: utils/dates.py:59 +msgctxt "abbrev. month" +msgid "July" +msgstr "" + +#: utils/dates.py:60 +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +#: utils/dates.py:61 +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +#: utils/dates.py:62 +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +#: utils/dates.py:63 +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +#: utils/dates.py:64 +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +#: utils/dates.py:67 +msgctxt "alt. month" +msgid "January" +msgstr "" + +#: utils/dates.py:68 +msgctxt "alt. month" +msgid "February" +msgstr "" + +#: utils/dates.py:69 +msgctxt "alt. month" +msgid "March" +msgstr "" + +#: utils/dates.py:70 +msgctxt "alt. month" +msgid "April" +msgstr "" + +#: utils/dates.py:71 +msgctxt "alt. month" +msgid "May" +msgstr "" + +#: utils/dates.py:72 +msgctxt "alt. month" +msgid "June" +msgstr "" + +#: utils/dates.py:73 +msgctxt "alt. month" +msgid "July" +msgstr "" + +#: utils/dates.py:74 +msgctxt "alt. month" +msgid "August" +msgstr "" + +#: utils/dates.py:75 +msgctxt "alt. month" +msgid "September" +msgstr "" + +#: utils/dates.py:76 +msgctxt "alt. month" +msgid "October" +msgstr "" + +#: utils/dates.py:77 +msgctxt "alt. month" +msgid "November" +msgstr "" + +#: utils/dates.py:78 +msgctxt "alt. month" +msgid "December" +msgstr "" + +#: utils/ipv6.py:8 +msgid "This is not a valid IPv6 address." +msgstr "" + +#: utils/text.py:70 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +#: utils/text.py:255 +msgid "or" +msgstr "" + +#. Translators: This string is used as a separator between list elements +#: utils/text.py:274 utils/timesince.py:135 +msgid ", " +msgstr "" + +#: utils/timesince.py:8 +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#: utils/timesince.py:9 +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#: utils/timesince.py:10 +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#: utils/timesince.py:11 +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#: utils/timesince.py:12 +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#: utils/timesince.py:13 +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +#: views/csrf.py:29 +msgid "Forbidden" +msgstr "" + +#: views/csrf.py:30 +msgid "CSRF verification failed. Request aborted." +msgstr "" + +#: views/csrf.py:34 +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +#: views/csrf.py:40 +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +#: views/csrf.py:45 +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +#: views/csrf.py:54 +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +#: views/csrf.py:60 +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +#: views/csrf.py:66 +msgid "More information is available with DEBUG=True." +msgstr "" + +#: views/generic/dates.py:44 +msgid "No year specified" +msgstr "" + +#: views/generic/dates.py:64 views/generic/dates.py:115 +#: views/generic/dates.py:214 +msgid "Date out of range" +msgstr "" + +#: views/generic/dates.py:94 +msgid "No month specified" +msgstr "" + +#: views/generic/dates.py:147 +msgid "No day specified" +msgstr "" + +#: views/generic/dates.py:194 +msgid "No week specified" +msgstr "" + +#: views/generic/dates.py:349 views/generic/dates.py:380 +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#: views/generic/dates.py:652 +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#: views/generic/dates.py:692 +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#: views/generic/detail.py:56 +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +#: views/generic/list.py:70 +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#: views/generic/list.py:77 +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#: views/generic/list.py:169 +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +#: views/static.py:48 +msgid "Directory indexes are not allowed here." +msgstr "" + +#: views/static.py:50 +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#: views/static.py:67 views/templates/directory_index.html:8 +#: views/templates/directory_index.html:11 +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +#: views/templates/default_urlconf.html:7 +#: views/templates/default_urlconf.html:220 +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#: views/templates/default_urlconf.html:206 +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#: views/templates/default_urlconf.html:221 +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" + +#: views/templates/default_urlconf.html:229 +msgid "Django Documentation" +msgstr "" + +#: views/templates/default_urlconf.html:230 +msgid "Topics, references, & how-to’s" +msgstr "" + +#: views/templates/default_urlconf.html:238 +msgid "Tutorial: A Polling App" +msgstr "" + +#: views/templates/default_urlconf.html:239 +msgid "Get started with Django" +msgstr "" + +#: views/templates/default_urlconf.html:247 +msgid "Django Community" +msgstr "" + +#: views/templates/default_urlconf.html:248 +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/en/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/en/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c64d22567035f16b3534cb554d2de7d511a7bf0 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFm?WzklEKF4PrfG^Jj;6y$_(;PI31Pfw#)?b?)5rt#8M^MS zujIC?d4pzFy%)cra|!4C&yVvz_j2P#qfVgp^RKh~!4bqCTohLY6`#?YOi_RYARq}y zSOFDC0SeN9hE-67HBf^LV3q`Af02MinM0XFxsGxj@_>go;088812!$9+sbO1u<8l! zfiyDiD0_mDQ4_(%VU<-Q2}*9pBQ>ViKBT~TS=WM*2p)AjX<|5Z`GfKG0kX@+B; z=2_tVWd#v2fRQcYw6hk&;TQ@<+p6ZSzYvTfIX^uKlO#jZ*9b=~5{U)|G zbRBtkncogQCkeNS_dQ&vu{VzAyC~eGiMI@sG>H9euv?e({o{j|Jf>m)DVTo?P?rZ+ z!Dbmt^LVq6*6}=8hf=ta7V$O;(q!L881B~LClc+Od_aM&(UrnOu?*W_d77as GEcFlU2kUGA literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/en/formats.py new file mode 100644 index 0000000..f9d143b --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/en/formats.py @@ -0,0 +1,65 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date + +# Formatting for date objects. +DATE_FORMAT = "N j, Y" +# Formatting for time objects. +TIME_FORMAT = "P" +# Formatting for datetime objects. +DATETIME_FORMAT = "N j, Y, P" +# Formatting for date objects when only the year and month are relevant. +YEAR_MONTH_FORMAT = "F Y" +# Formatting for date objects when only the month and day are relevant. +MONTH_DAY_FORMAT = "F j" +# Short formatting for date objects. +SHORT_DATE_FORMAT = "m/d/Y" +# Short formatting for datetime objects. +SHORT_DATETIME_FORMAT = "m/d/Y P" +# First day of week, to be used on calendars. +# 0 means Sunday, 1 means Monday... +FIRST_DAY_OF_WEEK = 0 + +# Formats to be used when parsing dates from input boxes, in order. +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# Note that these format strings are different from the ones to display dates. +# Kept ISO formats as they are in first position +DATE_INPUT_FORMATS = [ + "%Y-%m-%d", # '2006-10-25' + "%m/%d/%Y", # '10/25/2006' + "%m/%d/%y", # '10/25/06' + "%b %d %Y", # 'Oct 25 2006' + "%b %d, %Y", # 'Oct 25, 2006' + "%d %b %Y", # '25 Oct 2006' + "%d %b, %Y", # '25 Oct, 2006' + "%B %d %Y", # 'October 25 2006' + "%B %d, %Y", # 'October 25, 2006' + "%d %B %Y", # '25 October 2006' + "%d %B, %Y", # '25 October, 2006' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%m/%d/%Y %H:%M:%S", # '10/25/2006 14:30:59' + "%m/%d/%Y %H:%M:%S.%f", # '10/25/2006 14:30:59.000200' + "%m/%d/%Y %H:%M", # '10/25/2006 14:30' + "%m/%d/%y %H:%M:%S", # '10/25/06 14:30:59' + "%m/%d/%y %H:%M:%S.%f", # '10/25/06 14:30:59.000200' + "%m/%d/%y %H:%M", # '10/25/06 14:30' +] +TIME_INPUT_FORMATS = [ + "%H:%M:%S", # '14:30:59' + "%H:%M:%S.%f", # '14:30:59.000200' + "%H:%M", # '14:30' +] + +# Decimal separator symbol. +DECIMAL_SEPARATOR = "." +# Thousand separator symbol. +THOUSAND_SEPARATOR = "," +# Number of digits that will be together, when splitting them by +# THOUSAND_SEPARATOR. 0 means no grouping, 3 means splitting by thousands. +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..d31b977ad46257189b2c92d1d6888ef452938c25 GIT binary patch literal 25633 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po new file mode 100644 index 0000000..a0a3ed8 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/LC_MESSAGES/django.po @@ -0,0 +1,1299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Tom Fifield , 2014 +# Tom Fifield , 2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-18 21:19+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: English (Australia) (http://www.transifex.com/django/django/" +"language/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabic" + +msgid "Algerian Arabic" +msgstr "Algerian Arabic" + +msgid "Asturian" +msgstr "Asturian" + +msgid "Azerbaijani" +msgstr "Azerbaijani" + +msgid "Bulgarian" +msgstr "Bulgarian" + +msgid "Belarusian" +msgstr "Belarusian" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Breton" + +msgid "Bosnian" +msgstr "Bosnian" + +msgid "Catalan" +msgstr "Catalan" + +msgid "Czech" +msgstr "Czech" + +msgid "Welsh" +msgstr "Welsh" + +msgid "Danish" +msgstr "Danish" + +msgid "German" +msgstr "German" + +msgid "Lower Sorbian" +msgstr "Lower Sorbian" + +msgid "Greek" +msgstr "Greek" + +msgid "English" +msgstr "English" + +msgid "Australian English" +msgstr "Australian English" + +msgid "British English" +msgstr "British English" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spanish" + +msgid "Argentinian Spanish" +msgstr "Argentinian Spanish" + +msgid "Colombian Spanish" +msgstr "Colombian Spanish" + +msgid "Mexican Spanish" +msgstr "Mexican Spanish" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguan Spanish" + +msgid "Venezuelan Spanish" +msgstr "Venezuelan Spanish" + +msgid "Estonian" +msgstr "Estonian" + +msgid "Basque" +msgstr "Basque" + +msgid "Persian" +msgstr "Persian" + +msgid "Finnish" +msgstr "Finnish" + +msgid "French" +msgstr "French" + +msgid "Frisian" +msgstr "Frisian" + +msgid "Irish" +msgstr "Irish" + +msgid "Scottish Gaelic" +msgstr "Scottish Gaelic" + +msgid "Galician" +msgstr "Galician" + +msgid "Hebrew" +msgstr "Hebrew" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croatian" + +msgid "Upper Sorbian" +msgstr "Upper Sorbian" + +msgid "Hungarian" +msgstr "Hungarian" + +msgid "Armenian" +msgstr "Armenian" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesian" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Icelandic" + +msgid "Italian" +msgstr "Italian" + +msgid "Japanese" +msgstr "Japanese" + +msgid "Georgian" +msgstr "Georgian" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Kazakh" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Korean" + +msgid "Kyrgyz" +msgstr "Kyrgyz" + +msgid "Luxembourgish" +msgstr "Luxembourgish" + +msgid "Lithuanian" +msgstr "Lithuanian" + +msgid "Latvian" +msgstr "Latvian" + +msgid "Macedonian" +msgstr "Macedonian" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolian" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Burmese" + +msgid "Norwegian Bokmål" +msgstr "Norwegian Bokmål" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Dutch" + +msgid "Norwegian Nynorsk" +msgstr "Norwegian Nynorsk" + +msgid "Ossetic" +msgstr "Ossetic" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polish" + +msgid "Portuguese" +msgstr "Portuguese" + +msgid "Brazilian Portuguese" +msgstr "Brazilian Portuguese" + +msgid "Romanian" +msgstr "Romanian" + +msgid "Russian" +msgstr "Russian" + +msgid "Slovak" +msgstr "Slovak" + +msgid "Slovenian" +msgstr "Slovenian" + +msgid "Albanian" +msgstr "Albanian" + +msgid "Serbian" +msgstr "Serbian" + +msgid "Serbian Latin" +msgstr "Serbian Latin" + +msgid "Swedish" +msgstr "Swedish" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tajik" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "Turkmen" + +msgid "Turkish" +msgstr "Turkish" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "Ukrainian" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbek" + +msgid "Vietnamese" +msgstr "Vietnamese" + +msgid "Simplified Chinese" +msgstr "Simplified Chinese" + +msgid "Traditional Chinese" +msgstr "Traditional Chinese" + +msgid "Messages" +msgstr "Messages" + +msgid "Site Maps" +msgstr "Site Maps" + +msgid "Static Files" +msgstr "Static Files" + +msgid "Syndication" +msgstr "Syndication" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "That page number is not an integer" + +msgid "That page number is less than 1" +msgstr "That page number is less than 1" + +msgid "That page contains no results" +msgstr "That page contains no results" + +msgid "Enter a valid value." +msgstr "Enter a valid value." + +msgid "Enter a valid URL." +msgstr "Enter a valid URL." + +msgid "Enter a valid integer." +msgstr "Enter a valid integer." + +msgid "Enter a valid email address." +msgstr "Enter a valid email address." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." + +msgid "Enter a valid IPv4 address." +msgstr "Enter a valid IPv4 address." + +msgid "Enter a valid IPv6 address." +msgstr "Enter a valid IPv6 address." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Enter a valid IPv4 or IPv6 address." + +msgid "Enter only digits separated by commas." +msgstr "Enter only digits separated by commas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Ensure this value is %(limit_value)s (it is %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Ensure this value is less than or equal to %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Ensure this value is greater than or equal to %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgstr[1] "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgstr[1] "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Enter a number." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Ensure that there are no more than %(max)s digit in total." +msgstr[1] "Ensure that there are no more than %(max)s digits in total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Ensure that there are no more than %(max)s decimal place." +msgstr[1] "Ensure that there are no more than %(max)s decimal places." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgstr[1] "" +"Ensure that there are no more than %(max)s digits before the decimal point." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null characters are not allowed." + +msgid "and" +msgstr "and" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s with this %(field_labels)s already exists." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Value %(value)r is not a valid choice." + +msgid "This field cannot be null." +msgstr "This field cannot be null." + +msgid "This field cannot be blank." +msgstr "This field cannot be blank." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s with this %(field_label)s already exists." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Field of type: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” value must be either True or False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” value must be either True, False, or None." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Either True or False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (up to %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Comma-separated integers" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." + +msgid "Date (without time)" +msgstr "Date (without time)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." + +msgid "Date (with time)" +msgstr "Date (with time)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” value must be a decimal number." + +msgid "Decimal number" +msgstr "Decimal number" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." + +msgid "Duration" +msgstr "Duration" + +msgid "Email address" +msgstr "Email address" + +msgid "File path" +msgstr "File path" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” value must be a float." + +msgid "Floating point number" +msgstr "Floating point number" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” value must be an integer." + +msgid "Integer" +msgstr "Integer" + +msgid "Big (8 byte) integer" +msgstr "Big (8 byte) integer" + +msgid "Small integer" +msgstr "Small integer" + +msgid "IPv4 address" +msgstr "IPv4 address" + +msgid "IP address" +msgstr "IP address" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” value must be either None, True or False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (Either True, False or None)" + +msgid "Positive big integer" +msgstr "Positive big integer" + +msgid "Positive integer" +msgstr "Positive integer" + +msgid "Positive small integer" +msgstr "Positive small integer" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (up to %(max_length)s)" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." + +msgid "Time" +msgstr "Time" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Raw binary data" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” is not a valid UUID." + +msgid "Universally unique identifier" +msgstr "Universally unique identifier" + +msgid "File" +msgstr "File" + +msgid "Image" +msgstr "Image" + +msgid "A JSON object" +msgstr "A JSON object" + +msgid "Value must be valid JSON." +msgstr "Value must be valid JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s instance with %(field)s %(value)r does not exist." + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (type determined by related field)" + +msgid "One-to-one relationship" +msgstr "One-to-one relationship" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s relationship" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s relationships" + +msgid "Many-to-many relationship" +msgstr "Many-to-many relationship" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "This field is required." + +msgid "Enter a whole number." +msgstr "Enter a whole number." + +msgid "Enter a valid date." +msgstr "Enter a valid date." + +msgid "Enter a valid time." +msgstr "Enter a valid time." + +msgid "Enter a valid date/time." +msgstr "Enter a valid date/time." + +msgid "Enter a valid duration." +msgstr "Enter a valid duration." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "The number of days must be between {min_days} and {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "No file was submitted. Check the encoding type on the form." + +msgid "No file was submitted." +msgstr "No file was submitted." + +msgid "The submitted file is empty." +msgstr "The submitted file is empty." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Ensure this filename has at most %(max)d character (it has %(length)d)." +msgstr[1] "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Please either submit a file or check the clear checkbox, not both." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Select a valid choice. %(value)s is not one of the available choices." + +msgid "Enter a list of values." +msgstr "Enter a list of values." + +msgid "Enter a complete value." +msgstr "Enter a complete value." + +msgid "Enter a valid UUID." +msgstr "Enter a valid UUID." + +msgid "Enter a valid JSON." +msgstr "Enter a valid JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Hidden field %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "Please submit at most %d form." +msgstr[1] "Please submit at most %d forms." + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "Please submit at least %d form." +msgstr[1] "Please submit at least %d forms." + +msgid "Order" +msgstr "Order" + +msgid "Delete" +msgstr "Delete" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Please correct the duplicate data for %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Please correct the duplicate data for %(field)s, which must be unique." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Please correct the duplicate values below." + +msgid "The inline value did not match the parent instance." +msgstr "The inline value did not match the parent instance." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Select a valid choice. That choice is not one of the available choices." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” is not a valid value." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." + +msgid "Clear" +msgstr "Clear" + +msgid "Currently" +msgstr "Currently" + +msgid "Change" +msgstr "Change" + +msgid "Unknown" +msgstr "Unknown" + +msgid "Yes" +msgstr "Yes" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "yes,no,maybe" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "midnight" + +msgid "noon" +msgstr "noon" + +msgid "Monday" +msgstr "Monday" + +msgid "Tuesday" +msgstr "Tuesday" + +msgid "Wednesday" +msgstr "Wednesday" + +msgid "Thursday" +msgstr "Thursday" + +msgid "Friday" +msgstr "Friday" + +msgid "Saturday" +msgstr "Saturday" + +msgid "Sunday" +msgstr "Sunday" + +msgid "Mon" +msgstr "Mon" + +msgid "Tue" +msgstr "Tue" + +msgid "Wed" +msgstr "Wed" + +msgid "Thu" +msgstr "Thu" + +msgid "Fri" +msgstr "Fri" + +msgid "Sat" +msgstr "Sat" + +msgid "Sun" +msgstr "Sun" + +msgid "January" +msgstr "January" + +msgid "February" +msgstr "February" + +msgid "March" +msgstr "March" + +msgid "April" +msgstr "April" + +msgid "May" +msgstr "May" + +msgid "June" +msgstr "June" + +msgid "July" +msgstr "July" + +msgid "August" +msgstr "August" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "October" + +msgid "November" +msgstr "November" + +msgid "December" +msgstr "December" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "March" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "May" + +msgctxt "abbrev. month" +msgid "June" +msgstr "June" + +msgctxt "abbrev. month" +msgid "July" +msgstr "July" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "January" + +msgctxt "alt. month" +msgid "February" +msgstr "February" + +msgctxt "alt. month" +msgid "March" +msgstr "March" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "May" + +msgctxt "alt. month" +msgid "June" +msgstr "June" + +msgctxt "alt. month" +msgid "July" +msgstr "July" + +msgctxt "alt. month" +msgid "August" +msgstr "August" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "October" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "December" + +msgid "This is not a valid IPv6 address." +msgstr "This is not a valid IPv6 address." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "or" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "Forbidden" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF verification failed. Request aborted." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." + +msgid "More information is available with DEBUG=True." +msgstr "More information is available with DEBUG=True." + +msgid "No year specified" +msgstr "No year specified" + +msgid "Date out of range" +msgstr "Date out of range" + +msgid "No month specified" +msgstr "No month specified" + +msgid "No day specified" +msgstr "No day specified" + +msgid "No week specified" +msgstr "No week specified" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "No %(verbose_name_plural)s available" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Invalid date string “%(datestr)s” given format “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No %(verbose_name)s found matching the query" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Page is not “last”, nor can it be converted to an int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Invalid page (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Empty list and “%(class_name)s.allow_empty” is False." + +msgid "Directory indexes are not allowed here." +msgstr "Directory indexes are not allowed here." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” does not exist" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index of %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "The install worked successfully! Congratulations!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"View release notes for Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." + +msgid "Django Documentation" +msgstr "Django Documentation" + +msgid "Topics, references, & how-to’s" +msgstr "Topics, references, & how-to’s" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: A Polling App" + +msgid "Get started with Django" +msgstr "Get started with Django" + +msgid "Django Community" +msgstr "Django Community" + +msgid "Connect, get help, or contribute" +msgstr "Connect, get help, or contribute" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/en_AU/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c4f40b0fee3e1138ef1e737a62291fa9167ef9ca GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYF$UbGNFhG(e0RKE#JAR!E3?F^UT&GFX-ONqX+B zujFe_d4np4s$e?~G`rf_ncvQTW>?y5Fz6BG`0>Y$H*JFWT?O?)mchqz<&{AMBoKfA zk&r|bq!0~h)PgP4hHcb=9mJq+OhP6mQ12&zUBtp3>O&R{U>{xB#CV8XD^BCQJuoqI z@UA!$Qwrx{YQ-tIg@jb_aObdb=0n+&zzmNBJ{5TH?Cr)~JmS3xpH6th@$(t4&3GHX zeu1X^5??fFDLj>{3;#z)VS}E9yO+XeR2QD;9!wv>)dN+&MIR3!D~XOAD2Anp4rCow zI|sw+qz*=&ELwqP=+68}@ah;zqW45b_S~?XpkDROGisDmRLib1y}(d{FS7g@ULIts zZo1B?o(GvCdlP40h>k|Oh^Y_UzFb&>mVlow$ZY{G5Q@Ne(F`uSZEP42_Rx3J9e(JEZW znXt&#OCiY?VG;?^IuKo9nQhXr$fx(aJ@Y=z&^C!afUg`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYF1bHY_X^dv8@$h=CY2T*O5cBP2vU7{vh-8LTQiMAuzb z-Ssu{7~Xc32dGqaQFUvag+zWs6IuQWmYszkk!Se)aLR{;@_ zKmY#G-?kgltTp&JO?&P#1R4A?%_aJVZw}G3=MjlG8YE z3(S(;W$!q%q!i98sU@eBj3=Z5D%-n>GavAoM9K1=z^4L_aCY~Y4O``4PdR=z;k5~G zWAwEAf=*w#M*N~YePyiZQPYccqudsZepkP7|NVi&lRoUht|U5gpcs}WI=^F4b6HceM-I3N9_fHC6rcC$Vnfr|-hw z#dPAkd9=>`FHurtzLd>3X|yVGKaTPu%z|~eNgDap^=Ci7E+XMJoZp1l<)dY|inH-N zTP?;(HV>0%9Ib+>I9_DyG%WJb?cJ7rpJr&2L>~Y?I)94;&CsCUNrnXUKbEFh8nEC$ DJ0iRP literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_CA/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/en_CA/formats.py new file mode 100644 index 0000000..b34551d --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/en_CA/formats.py @@ -0,0 +1,31 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date + +DATE_FORMAT = "j M Y" # 25 Oct 2006 +TIME_FORMAT = "P" # 2:30 p.m. +DATETIME_FORMAT = "j M Y, P" # 25 Oct 2006, 2:30 p.m. +YEAR_MONTH_FORMAT = "F Y" # October 2006 +MONTH_DAY_FORMAT = "j F" # 25 October +SHORT_DATE_FORMAT = "Y-m-d" +SHORT_DATETIME_FORMAT = "Y-m-d P" +FIRST_DAY_OF_WEEK = 0 # Sunday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%Y-%m-%d", # '2006-05-15' + "%y-%m-%d", # '06-05-15' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-05-15 14:30:57' + "%y-%m-%d %H:%M:%S", # '06-05-15 14:30:57' + "%Y-%m-%d %H:%M:%S.%f", # '2006-05-15 14:30:57.000200' + "%y-%m-%d %H:%M:%S.%f", # '06-05-15 14:30:57.000200' + "%Y-%m-%d %H:%M", # '2006-05-15 14:30' + "%y-%m-%d %H:%M", # '06-05-15 14:30' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..bc4b2ccfaf2ee42c63bfbf95b4b94de5ee7f4e73 GIT binary patch literal 12108 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, 2011 +# jon_atkinson , 2011-2012 +# Ross Poulton , 2011-2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: English (United Kingdom) (http://www.transifex.com/django/" +"django/language/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "Arabic" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Azerbaijani" + +msgid "Bulgarian" +msgstr "Bulgarian" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "Bosnian" + +msgid "Catalan" +msgstr "Catalan" + +msgid "Czech" +msgstr "Czech" + +msgid "Welsh" +msgstr "Welsh" + +msgid "Danish" +msgstr "Danish" + +msgid "German" +msgstr "German" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Greek" + +msgid "English" +msgstr "English" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "British English" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spanish" + +msgid "Argentinian Spanish" +msgstr "Argentinian Spanish" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Mexican Spanish" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguan Spanish" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "Estonian" + +msgid "Basque" +msgstr "Basque" + +msgid "Persian" +msgstr "Persian" + +msgid "Finnish" +msgstr "Finnish" + +msgid "French" +msgstr "French" + +msgid "Frisian" +msgstr "Frisian" + +msgid "Irish" +msgstr "Irish" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Galician" + +msgid "Hebrew" +msgstr "Hebrew" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croatian" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Hungarian" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "Indonesian" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Icelandic" + +msgid "Italian" +msgstr "Italian" + +msgid "Japanese" +msgstr "Japanese" + +msgid "Georgian" +msgstr "Georgian" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Kazakh" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Korean" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "Lithuanian" + +msgid "Latvian" +msgstr "Latvian" + +msgid "Macedonian" +msgstr "Macedonian" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolian" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Dutch" + +msgid "Norwegian Nynorsk" +msgstr "Norwegian Nynorsk" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polish" + +msgid "Portuguese" +msgstr "Portuguese" + +msgid "Brazilian Portuguese" +msgstr "Brazilian Portuguese" + +msgid "Romanian" +msgstr "Romanian" + +msgid "Russian" +msgstr "Russian" + +msgid "Slovak" +msgstr "Slovak" + +msgid "Slovenian" +msgstr "Slovenian" + +msgid "Albanian" +msgstr "Albanian" + +msgid "Serbian" +msgstr "Serbian" + +msgid "Serbian Latin" +msgstr "Serbian Latin" + +msgid "Swedish" +msgstr "Swedish" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkish" +msgstr "Turkish" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "Ukrainian" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamese" + +msgid "Simplified Chinese" +msgstr "Simplified Chinese" + +msgid "Traditional Chinese" +msgstr "Traditional Chinese" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Enter a valid value." + +msgid "Enter a valid URL." +msgstr "Enter a valid URL." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Enter a valid IPv4 address." + +msgid "Enter a valid IPv6 address." +msgstr "Enter a valid IPv6 address." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Enter a valid IPv4 or IPv6 address." + +msgid "Enter only digits separated by commas." +msgstr "Enter only digits separated by commas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Ensure this value is %(limit_value)s (it is %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Ensure this value is less than or equal to %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Ensure this value is greater than or equal to %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "Enter a number." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "and" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "This field cannot be null." + +msgid "This field cannot be blank." +msgstr "This field cannot be blank." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s with this %(field_label)s already exists." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Field of type: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Either True or False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (up to %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Comma-separated integers" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Date (without time)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Date (with time)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Decimal number" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Email address" + +msgid "File path" +msgstr "File path" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Floating point number" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Integer" + +msgid "Big (8 byte) integer" +msgstr "Big (8 byte) integer" + +msgid "IPv4 address" +msgstr "IPv4 address" + +msgid "IP address" +msgstr "IP address" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (Either True, False or None)" + +msgid "Positive integer" +msgstr "Positive integer" + +msgid "Positive small integer" +msgstr "Positive small integer" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (up to %(max_length)s)" + +msgid "Small integer" +msgstr "Small integer" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Time" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "File" + +msgid "Image" +msgstr "Image" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (type determined by related field)" + +msgid "One-to-one relationship" +msgstr "One-to-one relationship" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Many-to-many relationship" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "This field is required." + +msgid "Enter a whole number." +msgstr "Enter a whole number." + +msgid "Enter a valid date." +msgstr "Enter a valid date." + +msgid "Enter a valid time." +msgstr "Enter a valid time." + +msgid "Enter a valid date/time." +msgstr "Enter a valid date/time." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "No file was submitted. Check the encoding type on the form." + +msgid "No file was submitted." +msgstr "No file was submitted." + +msgid "The submitted file is empty." +msgstr "The submitted file is empty." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Please either submit a file or check the clear checkbox, not both." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Select a valid choice. %(value)s is not one of the available choices." + +msgid "Enter a list of values." +msgstr "Enter a list of values." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Order" + +msgid "Delete" +msgstr "Delete" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Please correct the duplicate data for %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Please correct the duplicate data for %(field)s, which must be unique." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Please correct the duplicate values below." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Select a valid choice. That choice is not one of the available choices." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Clear" + +msgid "Currently" +msgstr "Currently" + +msgid "Change" +msgstr "Change" + +msgid "Unknown" +msgstr "Unknown" + +msgid "Yes" +msgstr "Yes" + +msgid "No" +msgstr "No" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "yes,no,maybe" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "midnight" + +msgid "noon" +msgstr "noon" + +msgid "Monday" +msgstr "Monday" + +msgid "Tuesday" +msgstr "Tuesday" + +msgid "Wednesday" +msgstr "Wednesday" + +msgid "Thursday" +msgstr "Thursday" + +msgid "Friday" +msgstr "Friday" + +msgid "Saturday" +msgstr "Saturday" + +msgid "Sunday" +msgstr "Sunday" + +msgid "Mon" +msgstr "Mon" + +msgid "Tue" +msgstr "Tue" + +msgid "Wed" +msgstr "Wed" + +msgid "Thu" +msgstr "Thu" + +msgid "Fri" +msgstr "Fri" + +msgid "Sat" +msgstr "Sat" + +msgid "Sun" +msgstr "Sun" + +msgid "January" +msgstr "January" + +msgid "February" +msgstr "February" + +msgid "March" +msgstr "March" + +msgid "April" +msgstr "April" + +msgid "May" +msgstr "May" + +msgid "June" +msgstr "June" + +msgid "July" +msgstr "July" + +msgid "August" +msgstr "August" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "October" + +msgid "November" +msgstr "November" + +msgid "December" +msgstr "December" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "March" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "May" + +msgctxt "abbrev. month" +msgid "June" +msgstr "June" + +msgctxt "abbrev. month" +msgid "July" +msgstr "July" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "January" + +msgctxt "alt. month" +msgid "February" +msgstr "February" + +msgctxt "alt. month" +msgid "March" +msgstr "March" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "May" + +msgctxt "alt. month" +msgid "June" +msgstr "June" + +msgctxt "alt. month" +msgid "July" +msgstr "July" + +msgctxt "alt. month" +msgid "August" +msgstr "August" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "October" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "December" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "or" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "No year specified" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "No month specified" + +msgid "No day specified" +msgstr "No day specified" + +msgid "No week specified" +msgstr "No week specified" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "No %(verbose_name_plural)s available" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No %(verbose_name)s found matching the query" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Directory indexes are not allowed here." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index of %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..093e815c0c142be0f59373f194c1fab69b67d45d GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYF$UbGM?ZB!Gj6%wLejN*cc3|3`6Nzc9Y zEBV?}zCo2kRj?fgnqBSe%x~vEyDLrF?{~3s{P^QUn-+%su7di&%ivSFvdSO~VhBKh zaEK!U5{QH(q9BD@u!Y*NjcC+~a7afO>iz_{iXrEYxn#^CmYYvGb;?=A z+gE79EsKjLErq9Yb>aW$C~VNPaQ9mHg6hH(-Gj*!xOybYzi6XAWJJN1d|5YD!G?^j zsOMl%oz%h5l?2mQbn6Ok=elDFnpk54%~5Y8)1R5TV<_6}7gjaa z(L610r=F9Ao6P$j#(C0+CN>pb(KFw29~-vryZ;oseV^|Jds96tn$Z$X*mp;fSs zQht%HmwcQqf;i;EwLiPzm+2-6@@(?3+tb%cinek1vFf1gLup8o1oeqiI3WMhJ(3{- G4gLYMSI95` literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/formats.py new file mode 100644 index 0000000..bc90da5 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/en_GB/formats.py @@ -0,0 +1,41 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j M Y" # '25 Oct 2006' +TIME_FORMAT = "P" # '2:30 p.m.' +DATETIME_FORMAT = "j M Y, P" # '25 Oct 2006, 2:30 p.m.' +YEAR_MONTH_FORMAT = "F Y" # 'October 2006' +MONTH_DAY_FORMAT = "j F" # '25 October' +SHORT_DATE_FORMAT = "d/m/Y" # '25/10/2006' +SHORT_DATETIME_FORMAT = "d/m/Y P" # '25/10/2006 2:30 p.m.' +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + # "%b %d %Y", # 'Oct 25 2006' + # "%b %d, %Y", # 'Oct 25, 2006' + # "%d %b %Y", # '25 Oct 2006' + # "%d %b, %Y", # '25 Oct, 2006' + # "%B %d %Y", # 'October 25 2006' + # "%B %d, %Y", # 'October 25, 2006' + # "%d %B %Y", # '25 October 2006' + # "%d %B, %Y", # '25 October, 2006' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' + "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' + "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' + "%d/%m/%y %H:%M", # '25/10/06 14:30' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_IE/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/en_IE/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_IE/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/en_IE/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..94c0bf7bde9370eba2e1ebbf320812792ede9038 GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFI~z zqFd@Ak2R%Wy5W_g4aG$C3bssm?~z1D4>|=SKv76U!K>5(D_*$c5o1d=#Il6b3QjQ` zuti_+MnW>eedQH~x=~#s;m7hu6jzR5zaJ137*ohmREc zZ)4B{+)Q%hKrt;{ascOOdR1KFojT}yvSbCiX*lY$;mxs{N!~N*+p1|fL4E4G7t|Q1 zXqJsTy}(q0ud@6FT$MJ>n7htto(}MB6;`S5cOSX|N0TaYNs( z@BD0?N2B|2@hwDMKHP-cRVpsh?NW@>MHok7v<);_T&BAu%(Lq;MZcpYUzV TKA=F;G+BQbnqg>;CK>V{wgb|# literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/en_IE/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/en_IE/formats.py new file mode 100644 index 0000000..81b8324 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/en_IE/formats.py @@ -0,0 +1,37 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j M Y" # '25 Oct 2006' +TIME_FORMAT = "H:i" # '14:30' +DATETIME_FORMAT = "j M Y, H:i" # '25 Oct 2006, 14:30' +YEAR_MONTH_FORMAT = "F Y" # 'October 2006' +MONTH_DAY_FORMAT = "j F" # '25 October' +SHORT_DATE_FORMAT = "d/m/Y" # '25/10/2006' +SHORT_DATETIME_FORMAT = "d/m/Y H:i" # '25/10/2006 14:30' +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + "%d %b %Y", # '25 Oct 2006' + "%d %b, %Y", # '25 Oct, 2006' + "%d %B %Y", # '25 October 2006' + "%d %B, %Y", # '25 October, 2006' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' + "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' + "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' + "%d/%m/%y %H:%M", # '25/10/06 14:30' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/eo/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..05260e5b049f420eec2387c91a681110388330ad GIT binary patch literal 27676 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, 2012-2013 +# Batist D 🐍 , 2013-2019 +# batisteo , 2011 +# Dinu Gherman , 2011 +# kristjan , 2011 +# Matthieu Desplantes , 2021 +# Meiyer , 2022 +# Nikolay Korotkiy , 2017-2018 +# Robin van der Vliet , 2019 +# Adamo Mesha , 2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-17 05:23-0500\n" +"PO-Revision-Date: 2022-05-25 06:49+0000\n" +"Last-Translator: Meiyer , 2022\n" +"Language-Team: Esperanto (http://www.transifex.com/django/django/language/" +"eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikansa" + +msgid "Arabic" +msgstr "Araba" + +msgid "Algerian Arabic" +msgstr "Alĝeria araba" + +msgid "Asturian" +msgstr "Asturia" + +msgid "Azerbaijani" +msgstr "Azerbajĝana" + +msgid "Bulgarian" +msgstr "Bulgara" + +msgid "Belarusian" +msgstr "Belorusa" + +msgid "Bengali" +msgstr "Bengala" + +msgid "Breton" +msgstr "Bretona" + +msgid "Bosnian" +msgstr "Bosnia" + +msgid "Catalan" +msgstr "Kataluna" + +msgid "Czech" +msgstr "Ĉeĥa" + +msgid "Welsh" +msgstr "Kimra" + +msgid "Danish" +msgstr "Dana" + +msgid "German" +msgstr "Germana" + +msgid "Lower Sorbian" +msgstr "Malsuprasaroba" + +msgid "Greek" +msgstr "Greka" + +msgid "English" +msgstr "Angla" + +msgid "Australian English" +msgstr "Angla (Aŭstralia)" + +msgid "British English" +msgstr "Angla (Brita)" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Hispana" + +msgid "Argentinian Spanish" +msgstr "Hispana (Argentinio)" + +msgid "Colombian Spanish" +msgstr "Hispana (Kolombio)" + +msgid "Mexican Spanish" +msgstr "Hispana (Meksiko)" + +msgid "Nicaraguan Spanish" +msgstr "Hispana (Nikaragvo)" + +msgid "Venezuelan Spanish" +msgstr "Hispana (Venezuelo)" + +msgid "Estonian" +msgstr "Estona" + +msgid "Basque" +msgstr "Eŭska" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finna" + +msgid "French" +msgstr "Franca" + +msgid "Frisian" +msgstr "Frisa" + +msgid "Irish" +msgstr "Irlanda" + +msgid "Scottish Gaelic" +msgstr "Skota gaela" + +msgid "Galician" +msgstr "Galega" + +msgid "Hebrew" +msgstr "Hebrea" + +msgid "Hindi" +msgstr "Hinda" + +msgid "Croatian" +msgstr "Kroata" + +msgid "Upper Sorbian" +msgstr "Suprasoraba" + +msgid "Hungarian" +msgstr "Hungara" + +msgid "Armenian" +msgstr "Armena" + +msgid "Interlingua" +msgstr "Interlingvaa" + +msgid "Indonesian" +msgstr "Indoneza" + +msgid "Igbo" +msgstr "Igba" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islanda" + +msgid "Italian" +msgstr "Itala" + +msgid "Japanese" +msgstr "Japana" + +msgid "Georgian" +msgstr "Kartvela" + +msgid "Kabyle" +msgstr "Kabila" + +msgid "Kazakh" +msgstr "Kazaĥa" + +msgid "Khmer" +msgstr "Kmera" + +msgid "Kannada" +msgstr "Kanara" + +msgid "Korean" +msgstr "Korea" + +msgid "Kyrgyz" +msgstr "Kirgiza" + +msgid "Luxembourgish" +msgstr "Luksemburga" + +msgid "Lithuanian" +msgstr "Litova" + +msgid "Latvian" +msgstr "Latva" + +msgid "Macedonian" +msgstr "Makedona" + +msgid "Malayalam" +msgstr "Malajala" + +msgid "Mongolian" +msgstr "Mongola" + +msgid "Marathi" +msgstr "Marata" + +msgid "Malay" +msgstr "Malaja" + +msgid "Burmese" +msgstr "Birma" + +msgid "Norwegian Bokmål" +msgstr "Norvega (bokmål)" + +msgid "Nepali" +msgstr "Nepala" + +msgid "Dutch" +msgstr "Nederlanda" + +msgid "Norwegian Nynorsk" +msgstr "Norvega (nynorsk)" + +msgid "Ossetic" +msgstr "Oseta" + +msgid "Punjabi" +msgstr "Panĝaba" + +msgid "Polish" +msgstr "Pola" + +msgid "Portuguese" +msgstr "Portugala" + +msgid "Brazilian Portuguese" +msgstr "Portugala (Brazilo)" + +msgid "Romanian" +msgstr "Rumana" + +msgid "Russian" +msgstr "Rusa" + +msgid "Slovak" +msgstr "Slovaka" + +msgid "Slovenian" +msgstr "Slovena" + +msgid "Albanian" +msgstr "Albana" + +msgid "Serbian" +msgstr "Serba" + +msgid "Serbian Latin" +msgstr "Serba (latina)" + +msgid "Swedish" +msgstr "Sveda" + +msgid "Swahili" +msgstr "Svahila" + +msgid "Tamil" +msgstr "Tamila" + +msgid "Telugu" +msgstr "Telugua" + +msgid "Tajik" +msgstr "Taĝika" + +msgid "Thai" +msgstr "Taja" + +msgid "Turkmen" +msgstr "Turkmena" + +msgid "Turkish" +msgstr "Turka" + +msgid "Tatar" +msgstr "Tatara" + +msgid "Udmurt" +msgstr "Udmurta" + +msgid "Ukrainian" +msgstr "Ukraina" + +msgid "Urdu" +msgstr "Urdua" + +msgid "Uzbek" +msgstr "Uzbeka" + +msgid "Vietnamese" +msgstr "Vjetnama" + +msgid "Simplified Chinese" +msgstr "Ĉina (simpligite)" + +msgid "Traditional Chinese" +msgstr "Ĉina (tradicie)" + +msgid "Messages" +msgstr "Mesaĝoj" + +msgid "Site Maps" +msgstr "Retejaj mapoj" + +msgid "Static Files" +msgstr "Statikaj dosieroj" + +msgid "Syndication" +msgstr "Abonrilato" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Tia paĝnumero ne estas entjero" + +msgid "That page number is less than 1" +msgstr "La paĝnumero estas malpli ol 1" + +msgid "That page contains no results" +msgstr "Tiu paĝo ne enhavas rezultojn" + +msgid "Enter a valid value." +msgstr "Enigu ĝustan valoron." + +msgid "Enter a valid URL." +msgstr "Enigu ĝustan retadreson." + +msgid "Enter a valid integer." +msgstr "Enigu ĝustaforman entjeron." + +msgid "Enter a valid email address." +msgstr "Enigu ĝustaforman retpoŝtan adreson." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Enigu ĝustan “ĵetonvorton” konsistantan el latinaj literoj, ciferoj, " +"substrekoj, aŭ dividstrekoj." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Enigu ĝustan “ĵetonvorton” konsistantan el Unikodaj literoj, ciferoj, " +"substrekoj, aŭ dividstrekoj." + +msgid "Enter a valid IPv4 address." +msgstr "Enigu ĝustaforman IPv4-adreson." + +msgid "Enter a valid IPv6 address." +msgstr "Enigu ĝustaforman IPv6-adreson." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Enigu ĝustaforman IPv4- aŭ IPv6-adreson." + +msgid "Enter only digits separated by commas." +msgstr "Enigu nur ciferojn apartigitajn per komoj." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Certigu ke ĉi tiu valoro estas %(limit_value)s (ĝi estas %(show_value)s). " + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Certigu ke ĉi tiu valoro estas malpli ol aŭ egala al %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Certigu ke ĉi tiu valoro estas pli ol aŭ egala al %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Certigu ke ĉi tiu valoro estas oblo de paŝo-grando %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Certigu, ke tiu valoro havas %(limit_value)d signon (ĝi havas " +"%(show_value)d)." +msgstr[1] "" +"Certigu ke ĉi tiu valoro enhavas almenaŭ %(limit_value)d signojn (ĝi havas " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Certigu, ke tio valuto maksimume havas %(limit_value)d karakterojn (ĝi havas " +"%(show_value)d)." +msgstr[1] "" +"Certigu ke ĉi tiu valoro maksimume enhavas %(limit_value)d signojn (ĝi havas " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Enigu nombron." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Certigu ke ne estas pli ol %(max)s cifero entute." +msgstr[1] "Certigu ke ne estas pli ol %(max)s ciferoj entute." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Certigu, ke ne estas pli ol %(max)s dekumaj lokoj." +msgstr[1] "Certigu, ke ne estas pli ol %(max)s dekumaj lokoj." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Certigu ke ne estas pli ol %(max)s ciferoj antaŭ la dekuma punkto." +msgstr[1] "Certigu ke ne estas pli ol %(max)s ciferoj antaŭ la dekuma punkto." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Sufikso “%(extension)s” de dosiernomo ne estas permesita. Eblaj sufiksoj " +"estas: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Nulsignoj ne estas permesitaj." + +msgid "and" +msgstr "kaj" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s kun tiuj %(field_labels)s jam ekzistas." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Limigo “%(name)s” estas malobservita." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Valoro %(value)r ne estas ebla elekto." + +msgid "This field cannot be null." +msgstr "Tiu ĉi kampo ne povas esti senvalora (null)." + +msgid "This field cannot be blank." +msgstr "Tiu ĉi kampo ne povas esti malplena." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s kun tiu %(field_label)s jam ekzistas." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s devas esti unika por %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Kampo de tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "La valoro “%(value)s” devas esti aŭ Vera (True) aŭ Malvera (False)." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" +"La valoro “%(value)s” devas esti Vera (True), Malvera (False), aŭ Nenia " +"(None)." + +msgid "Boolean (Either True or False)" +msgstr "Bulea (Vera aŭ Malvera)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Ĉeno (ĝis %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Perkome disigitaj entjeroj" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"La valoro “%(value)s” havas malĝustan datformaton. Ĝi devas esti en la " +"formato JJJJ-MM-TT." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"La valoro “%(value)s” havas la ĝustan formaton (JJJJ-MM-TT), sed ĝi estas " +"neekzistanta dato." + +msgid "Date (without time)" +msgstr "Dato (sen horo)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"La valoro “%(value)s” havas malĝustan formaton. Ĝi devas esti en la formato " +"JJJJ-MM-TT HH:MM[:ss[.µµµµµµ]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"La valoro “%(value)s” havas la ĝustan formaton (JJJJ-MM-TT HH:MM[:ss[." +"µµµµµµ]][TZ]), sed ĝi estas neekzistanta dato/tempo." + +msgid "Date (with time)" +msgstr "Dato (kun horo)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "La valoro “%(value)s” devas esti dekuma frakcio." + +msgid "Decimal number" +msgstr "Dekuma nombro" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"La valoro “%(value)s” havas malĝustan formaton. Ĝi devas esti en la formato " +"[TT] [[HH:]MM:]ss[.µµµµµµ]." + +msgid "Duration" +msgstr "Daŭro" + +msgid "Email address" +msgstr "Retpoŝtadreso" + +msgid "File path" +msgstr "Dosierindiko" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "La valoro “%(value)s” devas esti glitpunkta nombro." + +msgid "Floating point number" +msgstr "Glitpunkta nombro" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "La valoro “%(value)s” devas esti entjero." + +msgid "Integer" +msgstr "Entjero" + +msgid "Big (8 byte) integer" +msgstr "Granda (8–bitoka) entjero" + +msgid "Small integer" +msgstr "Malgranda entjero" + +msgid "IPv4 address" +msgstr "IPv4-adreso" + +msgid "IP address" +msgstr "IP-adreso" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" +"La valoro “%(value)s” devas esti Nenia (None), Vera (True), aŭ Malvera " +"(False)." + +msgid "Boolean (Either True, False or None)" +msgstr "Buleo (Vera, Malvera, aŭ Nenia)" + +msgid "Positive big integer" +msgstr "Pozitiva granda entjero" + +msgid "Positive integer" +msgstr "Pozitiva entjero" + +msgid "Positive small integer" +msgstr "Pozitiva malgranda entjero" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Ĵetonvorto (ĝis %(max_length)s)" + +msgid "Text" +msgstr "Teksto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"La valoro “%(value)s” havas malĝustan formaton. Ĝi devas esti en la formato " +"HH:MM[:ss[.µµµµµµ]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"La valoro “%(value)s” havas la (HH:MM[:ss[.µµµµµµ]]), sed tio estas " +"neekzistanta tempo." + +msgid "Time" +msgstr "Horo" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Kruda duuma datumo" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” ne estas ĝustaforma UUID." + +msgid "Universally unique identifier" +msgstr "Universale unika identigilo" + +msgid "File" +msgstr "Dosiero" + +msgid "Image" +msgstr "Bildo" + +msgid "A JSON object" +msgstr "JSON-objekto" + +msgid "Value must be valid JSON." +msgstr "La valoro devas esti ĝustaforma JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Ekzemplero de %(model)s kun %(field)s egala al %(value)r ne ekzistas." + +msgid "Foreign Key (type determined by related field)" +msgstr "Fremda ŝlosilo (tipo determinita per rilata kampo)" + +msgid "One-to-one relationship" +msgstr "Unu-al-unu rilato" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s rilato" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s rilatoj" + +msgid "Many-to-many relationship" +msgstr "Mult-al-multa rilato" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Ĉi tiu kampo estas deviga." + +msgid "Enter a whole number." +msgstr "Enigu plenan nombron." + +msgid "Enter a valid date." +msgstr "Enigu ĝustan daton." + +msgid "Enter a valid time." +msgstr "Enigu ĝustan horon." + +msgid "Enter a valid date/time." +msgstr "Enigu ĝustan daton/tempon." + +msgid "Enter a valid duration." +msgstr "Enigu ĝustan daŭron." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "La nombro de tagoj devas esti inter {min_days} kaj {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Neniu dosiero estis alŝutita. Kontrolu la kodoprezentan tipon en la " +"formularo." + +msgid "No file was submitted." +msgstr "Neniu dosiero estis alŝutita." + +msgid "The submitted file is empty." +msgstr "La alŝutita dosiero estas malplena." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Certigu, ke tio dosiernomo maksimume havas %(max)d karakteron (ĝi havas " +"%(length)d)." +msgstr[1] "" +"Certigu ke la dosiernomo maksimume havas %(max)d signojn (ĝi havas " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Bonvolu aŭ alŝuti dosieron, aŭ elekti la vakigan markobutonon, sed ne ambaŭ." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Alŝutu ĝustaforman bildon. La alŝutita dosiero ne estas bildo aŭ estas " +"difektita bildo." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Elektu ekzistantan opcion. %(value)s ne estas el la eblaj elektoj." + +msgid "Enter a list of values." +msgstr "Enigu liston de valoroj." + +msgid "Enter a complete value." +msgstr "Enigu kompletan valoron." + +msgid "Enter a valid UUID." +msgstr "Enigu ĝustaforman UUID." + +msgid "Enter a valid JSON." +msgstr "Enigu ĝustaforman JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Kaŝita kampo %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"La datumoj de la mastruma ManagementForm mankas aŭ estis malice modifitaj. " +"Mankas la kampoj: %(field_names)s. Se la problemo plu okazas, vi poveble " +"devintus raporti cimon." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Bonvolu forsendi maksimume %(num)d formularon." +msgstr[1] "Bonvolu forsendi maksimume %(num)d formularojn." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Bonvolu forsendi almenaŭ %(num)d formularon." +msgstr[1] "Bonvolu forsendi almenaŭ %(num)d formularojn." + +msgid "Order" +msgstr "Ordo" + +msgid "Delete" +msgstr "Forigi" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Bonvolu ĝustigi la duoblan datumon por %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Bonvolu ĝustigi la duoblan datumon por %(field)s, kiu devas esti unika." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Bonvolu ĝustigi la duoblan datumon por %(field_name)s, kiu devas esti unika " +"por la %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Bonvolu ĝustigi la duoblan valoron sube." + +msgid "The inline value did not match the parent instance." +msgstr "La enteksta valoro ne egalas la patran ekzempleron." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Elektu ekzistantan opcion. Ĉi tiu opcio ne estas el la eblaj elektoj." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” estas neakceptebla valoro." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"Ne eblis interpreti %(datetime)s en la tempo-zono %(current_timezone)s. Ĝi " +"eble estas ambigua aŭ ne ekzistas en tiu tempo-zono." + +msgid "Clear" +msgstr "Vakigi" + +msgid "Currently" +msgstr "Nuntempe" + +msgid "Change" +msgstr "Ŝanĝi" + +msgid "Unknown" +msgstr "Nekonate" + +msgid "Yes" +msgstr "Jes" + +msgid "No" +msgstr "Ne" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "jes,ne,eble" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bitoko" +msgstr[1] "%(size)d bitokoj" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "ptm" + +msgid "a.m." +msgstr "atm" + +msgid "PM" +msgstr "PTM" + +msgid "AM" +msgstr "ATM" + +msgid "midnight" +msgstr "noktomezo" + +msgid "noon" +msgstr "tagmezo" + +msgid "Monday" +msgstr "lundo" + +msgid "Tuesday" +msgstr "mardo" + +msgid "Wednesday" +msgstr "merkredo" + +msgid "Thursday" +msgstr "ĵaŭdo" + +msgid "Friday" +msgstr "vendredo" + +msgid "Saturday" +msgstr "sabato" + +msgid "Sunday" +msgstr "dimanĉo" + +msgid "Mon" +msgstr "lun" + +msgid "Tue" +msgstr "mar" + +msgid "Wed" +msgstr "mer" + +msgid "Thu" +msgstr "ĵaŭ" + +msgid "Fri" +msgstr "ven" + +msgid "Sat" +msgstr "sab" + +msgid "Sun" +msgstr "dim" + +msgid "January" +msgstr "januaro" + +msgid "February" +msgstr "februaro" + +msgid "March" +msgstr "marto" + +msgid "April" +msgstr "aprilo" + +msgid "May" +msgstr "majo" + +msgid "June" +msgstr "junio" + +msgid "July" +msgstr "julio" + +msgid "August" +msgstr "aŭgusto" + +msgid "September" +msgstr "septembro" + +msgid "October" +msgstr "oktobro" + +msgid "November" +msgstr "novembro" + +msgid "December" +msgstr "decembro" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "maj" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aŭg" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mar." + +msgctxt "abbrev. month" +msgid "April" +msgstr "apr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "majo" + +msgctxt "abbrev. month" +msgid "June" +msgstr "jun." + +msgctxt "abbrev. month" +msgid "July" +msgstr "jul." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aŭg." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Januaro" + +msgctxt "alt. month" +msgid "February" +msgstr "Februaro" + +msgctxt "alt. month" +msgid "March" +msgstr "Marto" + +msgctxt "alt. month" +msgid "April" +msgstr "Aprilo" + +msgctxt "alt. month" +msgid "May" +msgstr "Majo" + +msgctxt "alt. month" +msgid "June" +msgstr "Junio" + +msgctxt "alt. month" +msgid "July" +msgstr "Julio" + +msgctxt "alt. month" +msgid "August" +msgstr "Aŭgusto" + +msgctxt "alt. month" +msgid "September" +msgstr "Septembro" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktobro" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembro" + +msgctxt "alt. month" +msgid "December" +msgstr "Decembro" + +msgid "This is not a valid IPv6 address." +msgstr "Tio ne estas ĝustaforma IPv6-adreso." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "aŭ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d jaro" +msgstr[1] "%(num)d jaroj" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d monato" +msgstr[1] "%(num)d monatoj" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d semajno" +msgstr[1] "%(num)d semajnoj" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d tago" +msgstr[1] "%(num)d tagoj" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d horo" +msgstr[1] "%(num)d horoj" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuto" +msgstr[1] "%(num)d minutoj" + +msgid "Forbidden" +msgstr "Malpermesita" + +msgid "CSRF verification failed. Request aborted." +msgstr "Kontrolo de CSRF malsukcesis. Peto ĉesigita." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Vi vidas tiun ĉi mesaĝon ĉar ĉi-tiu HTTPS-retejo postulas ricevi la " +"kapinstrukcion “Referer” de via retumilo, sed neniu estis sendita. Tia " +"kapinstrukcio estas bezonata pro sekurecaj kialoj, por certigi ke via " +"retumilo ne agas laŭ nedezirataj instrukcioj de maliculoj." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Se la agordoj de via retumilo malebligas la kapinstrukciojn “Referer”, " +"bonvolu ebligi ilin por tiu ĉi retejo, aŭ por HTTPS-konektoj, aŭ por petoj " +"el sama fonto (“same-origin”)." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Se vi uzas la etikedon aŭ " +"sendas la kapinstrukcion “Referrer-Policy: no-referrer”, bonvolu forigi " +"ilin. La protekto kontraŭ CSRF postulas la ĉeeston de la kapinstrukcio " +"“Referer”, kaj strikte kontrolas la referencantan fonton. Se vi zorgas pri " +"privateco, uzu alternativojn kiajn por ligiloj al " +"eksteraj retejoj." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Vi vidas tiun ĉi mesaĝon ĉar ĉi-tiu retejo postulas ke CSRF-kuketo estu " +"sendita kune kun la formularoj. Tia kuketo estas bezonata pro sekurecaj " +"kialoj, por certigi ke via retumilo ne agas laŭ nedezirataj instrukcioj de " +"maliculoj." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Se la agordoj de via retumilo malebligas kuketojn, bonvolu ebligi ilin por " +"tiu ĉi retejo aŭ por petoj el sama fonto (“same-origin”)." + +msgid "More information is available with DEBUG=True." +msgstr "Pliaj informoj estas videblaj kun DEBUG=True." + +msgid "No year specified" +msgstr "Neniu jaro indikita" + +msgid "Date out of range" +msgstr "Dato ne en la intervalo" + +msgid "No month specified" +msgstr "Neniu monato indikita" + +msgid "No day specified" +msgstr "Neniu tago indikita" + +msgid "No week specified" +msgstr "Neniu semajno indikita" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Neniuj %(verbose_name_plural)s estas disponeblaj" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Estontaj %(verbose_name_plural)s ne disponeblas ĉar %(class_name)s." +"allow_future estas Malvera." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Erarforma dato-ĉeno “%(datestr)s” se uzi la formaton “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Neniu %(verbose_name)s trovita kongrua kun la informpeto" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Paĝo ne estas “lasta”, nek eblas konverti ĝin en entjeron." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Malĝusta paĝo (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" +"La listo estas malplena dum “%(class_name)s.allow_empty” estas Malvera." + +msgid "Directory indexes are not allowed here." +msgstr "Dosierujaj indeksoj ne estas permesitaj ĉi tie." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” ne ekzistas" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indekso de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "La instalado sukcesis! Gratulojn!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Vidu eldonajn notojn por Dĵango %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Vi vidas ĉi tiun paĝon ĉar DEBUG = " +"True estas en via agorda dosiero kaj vi ne agordis ajnan URL." + +msgid "Django Documentation" +msgstr "Dĵanga dokumentaro" + +msgid "Topics, references, & how-to’s" +msgstr "Temoj, referencoj, kaj instruiloj" + +msgid "Tutorial: A Polling App" +msgstr "Instruilo: apo pri enketoj" + +msgid "Get started with Django" +msgstr "Komencu kun Dĵango" + +msgid "Django Community" +msgstr "Dĵanga komunumo" + +msgid "Connect, get help, or contribute" +msgstr "Konektiĝu, ricevu helpon aŭ kontribuu" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/eo/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/eo/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/eo/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..62ced76826ecac2d4f045db79a5e5e66b571e451 GIT binary patch literal 193 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 Ua=az}?^&wT4>9NEayjq+1Kta);{X5v literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po new file mode 100644 index 0000000..77ec5f4 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es/LC_MESSAGES/django.po @@ -0,0 +1,1412 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# 8cb2d5a716c3c9a99b6d20472609a4d5_6d03802 , 2011 +# Abe Estrada, 2013 +# Abe Estrada, 2013 +# albertoalcolea , 2014 +# albertoalcolea , 2014 +# Amanda Copete, 2017 +# Amanda Copete, 2017 +# Antoni Aloy , 2011-2014,2017,2019 +# Claude Paroz , 2020 +# Diego Andres Sanabria Martin , 2012 +# Diego Schulz , 2012 +# e4db27214f7e7544f2022c647b585925_bb0e321, 2014,2020 +# e4db27214f7e7544f2022c647b585925_bb0e321, 2015-2016 +# e4db27214f7e7544f2022c647b585925_bb0e321, 2014 +# e4db27214f7e7544f2022c647b585925_bb0e321, 2020 +# Ernesto Rico Schmidt , 2017 +# Ernesto Rico Schmidt , 2017 +# 8cb2d5a716c3c9a99b6d20472609a4d5_6d03802 , 2011 +# Ignacio José Lizarán Rus , 2019 +# Igor Támara , 2015 +# Jannis Leidel , 2011 +# Jorge Andres Bravo Meza, 2024 +# José Luis , 2016 +# José Luis , 2016 +# Josue Naaman Nistal Guerra , 2014 +# Leonardo J. Caballero G. , 2011,2013 +# Luigy, 2019 +# Luigy, 2019 +# Marc Garcia , 2011 +# Mariusz Felisiak , 2021 +# mpachas , 2022 +# monobotsoft , 2012 +# Natalia, 2024 +# ntrrgc , 2013 +# ntrrgc , 2013 +# Pablo, 2015 +# Pablo, 2015 +# Sebastián Magrí, 2013 +# Sebastián Magrí, 2013 +# Uriel Medina , 2020-2021,2023 +# Veronicabh , 2015 +# Veronicabh , 2015 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Jorge Andres Bravo Meza, 2024\n" +"Language-Team: Spanish (http://app.transifex.com/django/django/language/" +"es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? " +"1 : 2;\n" + +msgid "Afrikaans" +msgstr "Africano" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Algerian Arabic" +msgstr "Árabe argelino" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azerbaiyán" + +msgid "Bulgarian" +msgstr "Búlgaro" + +msgid "Belarusian" +msgstr "Bielorruso" + +msgid "Bengali" +msgstr "Bengalí" + +msgid "Breton" +msgstr "Bretón" + +msgid "Bosnian" +msgstr "Bosnio" + +msgid "Catalan" +msgstr "Catalán" + +msgid "Central Kurdish (Sorani)" +msgstr "Kurdo central (Sorani)" + +msgid "Czech" +msgstr "Checo" + +msgid "Welsh" +msgstr "Galés" + +msgid "Danish" +msgstr "Danés" + +msgid "German" +msgstr "Alemán" + +msgid "Lower Sorbian" +msgstr "Bajo sorbio" + +msgid "Greek" +msgstr "Griego" + +msgid "English" +msgstr "Inglés" + +msgid "Australian English" +msgstr "Inglés australiano" + +msgid "British English" +msgstr "Inglés británico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Español" + +msgid "Argentinian Spanish" +msgstr "Español de Argentina" + +msgid "Colombian Spanish" +msgstr "Español de Colombia" + +msgid "Mexican Spanish" +msgstr "Español de México" + +msgid "Nicaraguan Spanish" +msgstr "Español de Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Español de Venezuela" + +msgid "Estonian" +msgstr "Estonio" + +msgid "Basque" +msgstr "Vasco" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finés" + +msgid "French" +msgstr "Francés" + +msgid "Frisian" +msgstr "Frisón" + +msgid "Irish" +msgstr "Irlandés" + +msgid "Scottish Gaelic" +msgstr "Gaélico Escocés" + +msgid "Galician" +msgstr "Gallego" + +msgid "Hebrew" +msgstr "Hebreo" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "Alto sorbio" + +msgid "Hungarian" +msgstr "Húngaro" + +msgid "Armenian" +msgstr "Armenio" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesio" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandés" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Japonés" + +msgid "Georgian" +msgstr "Georgiano" + +msgid "Kabyle" +msgstr "Cabilio" + +msgid "Kazakh" +msgstr "Kazajo" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Coreano" + +msgid "Kyrgyz" +msgstr "Kirguís" + +msgid "Luxembourgish" +msgstr "Luxenburgués" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Letón" + +msgid "Macedonian" +msgstr "Macedonio" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "Maratí" + +msgid "Malay" +msgstr "Malayo" + +msgid "Burmese" +msgstr "Birmano" + +msgid "Norwegian Bokmål" +msgstr "Bokmål noruego" + +msgid "Nepali" +msgstr "Nepalí" + +msgid "Dutch" +msgstr "Holandés" + +msgid "Norwegian Nynorsk" +msgstr "Nynorsk" + +msgid "Ossetic" +msgstr "Osetio" + +msgid "Punjabi" +msgstr "Panyabí" + +msgid "Polish" +msgstr "Polaco" + +msgid "Portuguese" +msgstr "Portugués" + +msgid "Brazilian Portuguese" +msgstr "Portugués de Brasil" + +msgid "Romanian" +msgstr "Rumano" + +msgid "Russian" +msgstr "Ruso" + +msgid "Slovak" +msgstr "Eslovaco" + +msgid "Slovenian" +msgstr "Esloveno" + +msgid "Albanian" +msgstr "Albanés" + +msgid "Serbian" +msgstr "Serbio" + +msgid "Serbian Latin" +msgstr "Serbio latino" + +msgid "Swedish" +msgstr "Sueco" + +msgid "Swahili" +msgstr "Suajili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tayiko" + +msgid "Thai" +msgstr "Tailandés" + +msgid "Turkmen" +msgstr "Turcomanos" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tártaro" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Uigur" + +msgid "Ukrainian" +msgstr "Ucraniano" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbeko" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chino simplificado" + +msgid "Traditional Chinese" +msgstr "Chino tradicional" + +msgid "Messages" +msgstr "Mensajes" + +msgid "Site Maps" +msgstr "Mapas del sitio" + +msgid "Static Files" +msgstr "Archivos estáticos" + +msgid "Syndication" +msgstr "Sindicación" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Este número de página no es un entero" + +msgid "That page number is less than 1" +msgstr "Este número de página es menor que 1" + +msgid "That page contains no results" +msgstr "Esa página no contiene resultados" + +msgid "Enter a valid value." +msgstr "Introduzca un valor válido." + +msgid "Enter a valid domain name." +msgstr "Ingrese un nombre de dominio válido." + +msgid "Enter a valid URL." +msgstr "Introduzca una URL válida." + +msgid "Enter a valid integer." +msgstr "Introduzca un número entero válido." + +msgid "Enter a valid email address." +msgstr "Introduzca una dirección de correo electrónico válida." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Introduzca un 'slug' válido, consistente en letras, números, guiones bajos o " +"medios." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Introduzca un 'slug' válido, consistente en letras, números, guiones bajos o " +"medios de Unicode." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Ingrese una dirección de %(protocol)s válida." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 o IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Introduzca sólo dígitos separados por comas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Asegúrese de que este valor es %(limit_value)s (actualmente es " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor es menor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor es mayor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Asegúrese de que este valor es múltiplo de %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Asegúrese de que este valor sea un múltiplo del tamaño del " +"paso%(limit_value)s, comenzando en%(offset)s, p.ej. %(offset)s, " +"%(valid_value1)s, %(valid_value2)s, etcétera." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga al menos %(limit_value)d caracter (tiene " +"%(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga al menos %(limit_value)d carácter(es) " +"(tiene%(show_value)d)." +msgstr[2] "" +"Asegúrese de que este valor tenga al menos %(limit_value)d carácter(es) " +"(tiene%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga menos de %(limit_value)d caracter (tiene " +"%(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga menos de %(limit_value)d caracteres (tiene " +"%(show_value)d)." +msgstr[2] "" +"Asegúrese de que este valor tenga menos de %(limit_value)d caracteres (tiene " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Introduzca un número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asegúrese de que no hay más de %(max)s dígito en total." +msgstr[1] "Asegúrese de que no haya más de %(max)s dígitos en total." +msgstr[2] "Asegúrese de que no haya más de %(max)s dígitos en total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Asegúrese de que no haya más de %(max)s dígito decimal." +msgstr[1] "Asegúrese de que no haya más de %(max)s dígitos decimales." +msgstr[2] "Asegúrese de que no haya más de %(max)s dígitos decimales." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Asegúrese de que no haya más de %(max)s dígito antes del punto decimal" +msgstr[1] "" +"Asegúrese de que no haya más de %(max)s dígitos antes del punto decimal." +msgstr[2] "" +"Asegúrese de que no haya más de %(max)s dígitos antes del punto decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"La extensión de archivo “%(extension)s” no esta permitida. Las extensiones " +"permitidas son: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Los caracteres nulos no están permitidos." + +msgid "and" +msgstr "y" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s con este %(field_labels)s ya existe." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "No se cumple la restricción \"%(name)s\"." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Valor %(value)r no es una opción válida." + +msgid "This field cannot be null." +msgstr "Este campo no puede ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo no puede estar vacío." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Ya existe %(model_name)s con este %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s debe ser único para %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo de tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s”: el valor debe ser Verdadero o Falso." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s”: el valor debe ser Verdadero, Falso o Nulo." + +msgid "Boolean (Either True or False)" +msgstr "Booleano (Verdadero o Falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadena (máximo %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Cadena (ilimitado)" + +msgid "Comma-separated integers" +msgstr "Enteros separados por coma" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” : el valor tiene un formato de fecha inválido. Debería estar en " +"el formato YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” : el valor tiene el formato correcto (YYYY-MM-DD) pero es una " +"fecha inválida." + +msgid "Date (without time)" +msgstr "Fecha (sin hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s”: el valor tiene un formato inválido. Debería estar en el formato " +"YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s”: el valor tiene el formato correcto (YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ]) pero es una fecha inválida." + +msgid "Date (with time)" +msgstr "Fecha (con hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s”: el valor debe ser un número decimal." + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s”: el valor tiene un formato inválido. Debería estar en el formato " +"[DD] [[HH:]MM:]ss[.uuuuuu]" + +msgid "Duration" +msgstr "Duración" + +msgid "Email address" +msgstr "Correo electrónico" + +msgid "File path" +msgstr "Ruta de fichero" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s”: el valor debería ser un número de coma flotante." + +msgid "Floating point number" +msgstr "Número en coma flotante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s”: el valor debería ser un numero entero" + +msgid "Integer" +msgstr "Entero" + +msgid "Big (8 byte) integer" +msgstr "Entero grande (8 bytes)" + +msgid "Small integer" +msgstr "Entero corto" + +msgid "IPv4 address" +msgstr "Dirección IPv4" + +msgid "IP address" +msgstr "Dirección IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s”: el valor debería ser None, Verdadero o Falso." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (Verdadero, Falso o Nulo)" + +msgid "Positive big integer" +msgstr "Entero grande positivo" + +msgid "Positive integer" +msgstr "Entero positivo" + +msgid "Positive small integer" +msgstr "Entero positivo corto" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (hasta %(max_length)s)" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s”: el valor tiene un formato inválido. Debería estar en el formato " +"HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” : el valor tiene el formato correcto (HH:MM[:ss[.uuuuuu]]) pero " +"es un tiempo inválido." + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datos binarios en bruto" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” no es un UUID válido." + +msgid "Universally unique identifier" +msgstr "Identificador universal único" + +msgid "File" +msgstr "Archivo" + +msgid "Image" +msgstr "Imagen" + +msgid "A JSON object" +msgstr "Un objeto JSON" + +msgid "Value must be valid JSON." +msgstr "El valor debe ser un objeto JSON válido." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "La instancia de %(model)s con %(field)s %(value)r no existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clave foránea (tipo determinado por el campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relación uno-a-uno" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "relación %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "relaciones %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relación muchos-a-muchos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Este campo es obligatorio." + +msgid "Enter a whole number." +msgstr "Introduzca un número entero." + +msgid "Enter a valid date." +msgstr "Introduzca una fecha válida." + +msgid "Enter a valid time." +msgstr "Introduzca una hora válida." + +msgid "Enter a valid date/time." +msgstr "Introduzca una fecha/hora válida." + +msgid "Enter a valid duration." +msgstr "Introduzca una duración válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "El número de días debe estar entre {min_days} y {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"No se ha enviado ningún fichero. Compruebe el tipo de codificación en el " +"formulario." + +msgid "No file was submitted." +msgstr "No se ha enviado ningún fichero" + +msgid "The submitted file is empty." +msgstr "El fichero enviado está vacío." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracter " +"(tiene %(length)d)." +msgstr[1] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d " +"carácter(es) (tiene %(length)d)." +msgstr[2] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d " +"carácter(es) (tiene %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Por favor envíe un fichero o marque la casilla de limpiar, pero no ambos." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Envíe una imagen válida. El fichero que ha enviado no era una imagen o se " +"trataba de una imagen corrupta." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Escoja una opción válida. %(value)s no es una de las opciones disponibles." + +msgid "Enter a list of values." +msgstr "Introduzca una lista de valores." + +msgid "Enter a complete value." +msgstr "Introduzca un valor completo." + +msgid "Enter a valid UUID." +msgstr "Introduzca un UUID válido." + +msgid "Enter a valid JSON." +msgstr "Ingresa un JSON válido." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) *%(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Los datos de ManagementForm faltan o han sido alterados. Campos que faltan: " +"%(field_names)s. Es posible que deba presentar un informe de error si el " +"problema persiste." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Por favor, envíe %(num)d formulario como máximo." +msgstr[1] "Por favor, envíe %(num)d formularios como máximo." +msgstr[2] "Por favor, envíe %(num)d formularios como máximo." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Por favor, envíe %(num)d formulario como mínimo." +msgstr[1] "Por favor, envíe %(num)d formularios como mínimo." +msgstr[2] "Por favor, envíe %(num)d formularios como mínimo." + +msgid "Order" +msgstr "Orden" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor, corrija el dato duplicado para %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor corrija el dato duplicado para %(field)s, ya que debe ser único." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor corrija los datos duplicados para %(field_name)s ya que debe ser " +"único para %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Por favor, corrija los valores duplicados abajo." + +msgid "The inline value did not match the parent instance." +msgstr "El valor en línea no coincide con la instancia padre." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Escoja una opción válida. Esa opción no está entre las disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” no es un valor válido." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s no pudo ser interpretado en la zona horaria " +"%(current_timezone)s; podría ser ambiguo o no existir." + +msgid "Clear" +msgstr "Limpiar" + +msgid "Currently" +msgstr "Actualmente" + +msgid "Change" +msgstr "Modificar" + +msgid "Unknown" +msgstr "Desconocido" + +msgid "Yes" +msgstr "Sí" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "sí,no,quizás" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" +msgstr[2] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "medianoche" + +msgid "noon" +msgstr "mediodía" + +msgid "Monday" +msgstr "lunes" + +msgid "Tuesday" +msgstr "martes" + +msgid "Wednesday" +msgstr "miércoles" + +msgid "Thursday" +msgstr "jueves" + +msgid "Friday" +msgstr "viernes" + +msgid "Saturday" +msgstr "sábado" + +msgid "Sunday" +msgstr "domingo" + +msgid "Mon" +msgstr "lun" + +msgid "Tue" +msgstr "mar" + +msgid "Wed" +msgstr "mié" + +msgid "Thu" +msgstr "jue" + +msgid "Fri" +msgstr "vie" + +msgid "Sat" +msgstr "sáb" + +msgid "Sun" +msgstr "dom" + +msgid "January" +msgstr "enero" + +msgid "February" +msgstr "febrero" + +msgid "March" +msgstr "marzo" + +msgid "April" +msgstr "abril" + +msgid "May" +msgstr "mayo" + +msgid "June" +msgstr "junio" + +msgid "July" +msgstr "julio" + +msgid "August" +msgstr "agosto" + +msgid "September" +msgstr "septiembre" + +msgid "October" +msgstr "octubre" + +msgid "November" +msgstr "noviembre" + +msgid "December" +msgstr "diciembre" + +msgid "jan" +msgstr "ene" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dic" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ene." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "marzo" + +msgctxt "abbrev. month" +msgid "April" +msgstr "abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "mayo" + +msgctxt "abbrev. month" +msgid "June" +msgstr "junio" + +msgctxt "abbrev. month" +msgid "July" +msgstr "julio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dic." + +msgctxt "alt. month" +msgid "January" +msgstr "enero" + +msgctxt "alt. month" +msgid "February" +msgstr "febrero" + +msgctxt "alt. month" +msgid "March" +msgstr "marzo" + +msgctxt "alt. month" +msgid "April" +msgstr "abril" + +msgctxt "alt. month" +msgid "May" +msgstr "mayo" + +msgctxt "alt. month" +msgid "June" +msgstr "junio" + +msgctxt "alt. month" +msgid "July" +msgstr "julio" + +msgctxt "alt. month" +msgid "August" +msgstr "agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "septiembre" + +msgctxt "alt. month" +msgid "October" +msgstr "octubre" + +msgctxt "alt. month" +msgid "November" +msgstr "noviembre" + +msgctxt "alt. month" +msgid "December" +msgstr "diciembre" + +msgid "This is not a valid IPv6 address." +msgstr "No es una dirección IPv6 válida." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d año" +msgstr[1] "%(num)d años" +msgstr[2] "%(num)d años" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mes" +msgstr[1] "%(num)d meses" +msgstr[2] "%(num)d meses" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d semana" +msgstr[1] "%(num)d semanas" +msgstr[2] "%(num)d semanas" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d día" +msgstr[1] "%(num)d días" +msgstr[2] "%(num)d días" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hora" +msgstr[1] "%(num)d horas" +msgstr[2] "%(num)d horas" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuto" +msgstr[1] "%(num)d minutos" +msgstr[2] "%(num)d minutos" + +msgid "Forbidden" +msgstr "Prohibido" + +msgid "CSRF verification failed. Request aborted." +msgstr "La verificación CSRF ha fallado. Solicitud abortada." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Estás viendo este mensaje porque este sitio HTTPS requiere que tu navegador " +"web envíe un \"encabezado de referencia\", pero no se envió ninguno. Este " +"encabezado es necesario por razones de seguridad, para garantizar que su " +"navegador no sea secuestrado por terceros." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Si ha configurado su navegador para deshabilitar los encabezados " +"\"Referer\", vuelva a habilitarlos, al menos para este sitio, o para " +"conexiones HTTPS, o para solicitudes del \"mismo origen\"." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Si esta utilizando la etiqueta o incluyendo el encabezado \"Referrer-Policy: no-referrer\", " +"elimínelos. La protección CSRF requiere que el encabezado \"Referer\" " +"realice una comprobación estricta del referente. Si le preocupa la " +"privacidad, utilice alternativas como para los " +"enlaces a sitios de terceros." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Estás viendo este mensaje porqué esta web requiere una cookie CSRF cuando se " +"envían formularios. Esta cookie se necesita por razones de seguridad, para " +"asegurar que tu navegador no ha sido comprometido por terceras partes." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Si ha configurado su navegador para deshabilitar las cookies, vuelva a " +"habilitarlas, al menos para este sitio o para solicitudes del \"mismo " +"origen\"." + +msgid "More information is available with DEBUG=True." +msgstr "Más información disponible si se establece DEBUG=True." + +msgid "No year specified" +msgstr "No se ha indicado el año" + +msgid "Date out of range" +msgstr "Fecha fuera de rango" + +msgid "No month specified" +msgstr "No se ha indicado el mes" + +msgid "No day specified" +msgstr "No se ha indicado el día" + +msgid "No week specified" +msgstr "No se ha indicado la semana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "No %(verbose_name_plural)s disponibles" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Los futuros %(verbose_name_plural)s no están disponibles porque " +"%(class_name)s.allow_future es Falso." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Cadena de fecha no valida “%(datestr)s” dado el formato “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No se encontró ningún %(verbose_name)s coincidente con la consulta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "La página no es la \"última\", ni se puede convertir a un entero." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Página inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Lista vacía y “%(class_name)s.allow_empty” es Falso" + +msgid "Directory indexes are not allowed here." +msgstr "Los índices de directorio no están permitidos." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” no existe" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índice de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "¡La instalación funcionó con éxito! ¡Felicitaciones!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Ve la notas de la versión de Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Estás viendo esta página porque DEBUG=True está en su archivo de configuración y no ha " +"configurado ninguna URL." + +msgid "Django Documentation" +msgstr "Documentación de Django" + +msgid "Topics, references, & how-to’s" +msgstr "Temas, referencias, & como hacer" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: Una aplicación de encuesta" + +msgid "Get started with Django" +msgstr "Comienza con Django" + +msgid "Django Community" +msgstr "Comunidad Django" + +msgid "Connect, get help, or contribute" +msgstr "Conéctate, obtén ayuda o contribuye" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/es/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..06a32d78e8bc5d1273935acb12847ac88ad394fd GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF@KR!M)FS8^*Uaz3?7Kcr4eoARhsvXGoVkRKL!TN|L5&s%^JTTsTD9$~~H<(LxGZfrvkvuq+{#m!NbIs+edBpJc~r zw|$L$gdKO?sUKj{)WbAL8%kDNe(m??=XqsY&ief>RkqK6y!c0pqJC9LvoU4zwj87i zKp_ffL<55uXrUIchy@OD&_-=IKnK7>CuR^IQ_%fNqYm^?7YQ>Ji|&hTc^=7CpeBs9%jKRTqk?$%f$yw7J2mQI-GqB zOBIHza2aRPEL+Z{B%6gvBt=A;XR9>K$?5gxC;vLlV4Xy7s-Hk!l!0Ygy4e|yq1nGY K%knJE)BgbTuF4<) literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/es/formats.py new file mode 100644 index 0000000..f2716bb --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es/formats.py @@ -0,0 +1,30 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = r"j \d\e F \d\e Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" +YEAR_MONTH_FORMAT = r"F \d\e Y" +MONTH_DAY_FORMAT = r"j \d\e F" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '31/12/2009' + "%d/%m/%y", # '31/12/09' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", + "%d/%m/%Y %H:%M:%S.%f", + "%d/%m/%Y %H:%M", + "%d/%m/%y %H:%M:%S", + "%d/%m/%y %H:%M:%S.%f", + "%d/%m/%y %H:%M", +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..cdb8444a35e3dbc7b389884e9af7fe6f0d775c89 GIT binary patch literal 29668 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po new file mode 100644 index 0000000..17680c6 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po @@ -0,0 +1,1377 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel , 2011 +# lardissone , 2014 +# Natalia, 2023 +# poli , 2014 +# Ramiro Morales, 2013-2024 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Ramiro Morales, 2013-2024\n" +"Language-Team: Spanish (Argentina) (http://app.transifex.com/django/django/" +"language/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "afrikáans" + +msgid "Arabic" +msgstr "árabe" + +msgid "Algerian Arabic" +msgstr "Árabe de Argelia" + +msgid "Asturian" +msgstr "asturiano" + +msgid "Azerbaijani" +msgstr "azerbaiyán" + +msgid "Bulgarian" +msgstr "búlgaro" + +msgid "Belarusian" +msgstr "bielorruso" + +msgid "Bengali" +msgstr "bengalí" + +msgid "Breton" +msgstr "bretón" + +msgid "Bosnian" +msgstr "bosnio" + +msgid "Catalan" +msgstr "catalán" + +msgid "Central Kurdish (Sorani)" +msgstr "Kurdo central (Sorani)" + +msgid "Czech" +msgstr "checo" + +msgid "Welsh" +msgstr "galés" + +msgid "Danish" +msgstr "danés" + +msgid "German" +msgstr "alemán" + +msgid "Lower Sorbian" +msgstr "bajo sorabo" + +msgid "Greek" +msgstr "griego" + +msgid "English" +msgstr "inglés" + +msgid "Australian English" +msgstr "inglés australiano" + +msgid "British English" +msgstr "inglés británico" + +msgid "Esperanto" +msgstr "esperanto" + +msgid "Spanish" +msgstr "español" + +msgid "Argentinian Spanish" +msgstr "español (Argentina)" + +msgid "Colombian Spanish" +msgstr "español (Colombia)" + +msgid "Mexican Spanish" +msgstr "español (México)" + +msgid "Nicaraguan Spanish" +msgstr "español (Nicaragua)" + +msgid "Venezuelan Spanish" +msgstr "español (Venezuela)" + +msgid "Estonian" +msgstr "estonio" + +msgid "Basque" +msgstr "vasco" + +msgid "Persian" +msgstr "persa" + +msgid "Finnish" +msgstr "finlandés" + +msgid "French" +msgstr "francés" + +msgid "Frisian" +msgstr "frisón" + +msgid "Irish" +msgstr "irlandés" + +msgid "Scottish Gaelic" +msgstr "gaélico escocés" + +msgid "Galician" +msgstr "gallego" + +msgid "Hebrew" +msgstr "hebreo" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "croata" + +msgid "Upper Sorbian" +msgstr "alto sorabo" + +msgid "Hungarian" +msgstr "húngaro" + +msgid "Armenian" +msgstr "armenio" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "indonesio" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "ido" + +msgid "Icelandic" +msgstr "islandés" + +msgid "Italian" +msgstr "italiano" + +msgid "Japanese" +msgstr "japonés" + +msgid "Georgian" +msgstr "georgiano" + +msgid "Kabyle" +msgstr "cabilio" + +msgid "Kazakh" +msgstr "kazajo" + +msgid "Khmer" +msgstr "jémer" + +msgid "Kannada" +msgstr "canarés" + +msgid "Korean" +msgstr "coreano" + +msgid "Kyrgyz" +msgstr "kirguís" + +msgid "Luxembourgish" +msgstr "luxemburgués" + +msgid "Lithuanian" +msgstr "lituano" + +msgid "Latvian" +msgstr "letón" + +msgid "Macedonian" +msgstr "macedonio" + +msgid "Malayalam" +msgstr "malabar" + +msgid "Mongolian" +msgstr "mongol" + +msgid "Marathi" +msgstr "maratí" + +msgid "Malay" +msgstr "malayo" + +msgid "Burmese" +msgstr "burmés" + +msgid "Norwegian Bokmål" +msgstr "bokmål noruego" + +msgid "Nepali" +msgstr "nepalés" + +msgid "Dutch" +msgstr "holandés" + +msgid "Norwegian Nynorsk" +msgstr "nynorsk" + +msgid "Ossetic" +msgstr "osetio" + +msgid "Punjabi" +msgstr "panyabí" + +msgid "Polish" +msgstr "polaco" + +msgid "Portuguese" +msgstr "portugués" + +msgid "Brazilian Portuguese" +msgstr "portugués de Brasil" + +msgid "Romanian" +msgstr "rumano" + +msgid "Russian" +msgstr "ruso" + +msgid "Slovak" +msgstr "eslovaco" + +msgid "Slovenian" +msgstr "esloveno" + +msgid "Albanian" +msgstr "albanés" + +msgid "Serbian" +msgstr "serbio" + +msgid "Serbian Latin" +msgstr "latín de Serbia" + +msgid "Swedish" +msgstr "sueco" + +msgid "Swahili" +msgstr "suajili" + +msgid "Tamil" +msgstr "tamil" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "tayiko" + +msgid "Thai" +msgstr "tailandés" + +msgid "Turkmen" +msgstr "turcomano" + +msgid "Turkish" +msgstr "turco" + +msgid "Tatar" +msgstr "tártaro" + +msgid "Udmurt" +msgstr "udmurto" + +msgid "Uyghur" +msgstr "Uigur" + +msgid "Ukrainian" +msgstr "ucraniano" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "uzbeko" + +msgid "Vietnamese" +msgstr "vietnamita" + +msgid "Simplified Chinese" +msgstr "chino simplificado" + +msgid "Traditional Chinese" +msgstr "chino tradicional" + +msgid "Messages" +msgstr "Mensajes" + +msgid "Site Maps" +msgstr "Mapas de sitio" + +msgid "Static Files" +msgstr "Archivos estáticos" + +msgid "Syndication" +msgstr "Sindicación" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "El número de página no es un entero" + +msgid "That page number is less than 1" +msgstr "El número de página es menor a 1" + +msgid "That page contains no results" +msgstr "Esa página no contiene resultados" + +msgid "Enter a valid value." +msgstr "Introduzca un valor válido." + +msgid "Enter a valid domain name." +msgstr "Introduzca un nombre de dominio válido." + +msgid "Enter a valid URL." +msgstr "Introduzca una URL válida." + +msgid "Enter a valid integer." +msgstr "Introduzca un valor numérico entero válido." + +msgid "Enter a valid email address." +msgstr "Introduzca una dirección de email válida." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "Introduzca un “slug” válido compuesto por letras, números o guiones." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Introduzca un “slug” compuesto por letras Unicode, números, guiones bajos o " +"guiones." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Introduzca una dirección de %(protocol)s válida." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 o IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Introduzca sólo dígitos separados por comas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Asegúrese de que este valor sea %(limit_value)s (actualmente es " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor sea menor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor sea mayor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Asegúrese de que este valor sea múltiplo de %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Confirme que este valor sea un múltiplo del tamaño del paso %(limit_value)s, " +"empezando por %(offset)s, por ejemplo %(offset)s, %(valid_value1)s, " +"%(valid_value2)s, y así sucesivamente." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d caracter " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d caracteres " +"(tiene %(show_value)d)." +msgstr[2] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d caracter " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " +"(tiene %(show_value)d)." +msgstr[2] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +msgid "Enter a number." +msgstr "Introduzca un número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asegúrese de que no exista en total mas de %(max)s dígito." +msgstr[1] "Asegúrese de que no existan en total mas de %(max)s dígitos." +msgstr[2] "Asegúrese de que no existan en total mas de %(max)s dígitos." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Asegúrese de que no exista mas de %(max)s lugar decimal." +msgstr[1] "Asegúrese de que no existan mas de %(max)s lugares decimales." +msgstr[2] "Asegúrese de que no existan mas de %(max)s lugares decimales." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Asegúrese de que no exista mas de %(max)s dígito antes del punto decimal." +msgstr[1] "" +"Asegúrese de que no existan mas de %(max)s dígitos antes del punto decimal." +msgstr[2] "" +"Asegúrese de que no existan mas de %(max)s dígitos antes del punto decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"La extensión de archivo “%(extension)s” no está permitida. Las extensiones " +"aceptadas son: “%(allowed_extensions)s”." + +msgid "Null characters are not allowed." +msgstr "No se admiten caracteres nulos." + +msgid "and" +msgstr "y" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Ya existe un/a %(model_name)s con este/a %(field_labels)s." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "No se cumple la restricción “%(name)s”." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "El valor %(value)r no es una opción válida." + +msgid "This field cannot be null." +msgstr "Este campo no puede ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo no puede estar en blanco." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Ya existe un/a %(model_name)s con este/a %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s debe ser único/a para un %(lookup_type)s " +"%(date_field_label)s determinado." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "El valor de “%(value)s” debe ser Verdadero o Falso." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "El valor de “%(value)s” debe ser Verdadero, Falso o None." + +msgid "Boolean (Either True or False)" +msgstr "Booleano (Verdadero o Falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadena (máximo %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Cadena (ilimitado)" + +msgid "Comma-separated integers" +msgstr "Enteros separados por comas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"El valor de “%(value)s” tiene un formato de fecha inválido. Debe usar el " +"formato AAAA-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"El valor de “%(value)s” tiene un formato de fecha correcto (AAAA-MM-DD) pero " +"representa una fecha inválida." + +msgid "Date (without time)" +msgstr "Fecha (sin hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"El valor de “%(value)s” tiene un formato inválido. Debe usar el formato AAAA-" +"MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"El valor de “%(value)s” tiene un formato correcto (AAAA-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ]) pero representa una fecha/hora inválida." + +msgid "Date (with time)" +msgstr "Fecha (con hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "El valor de “%(value)s” debe ser un número decimal." + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"El valor de “%(value)s” tiene un formato inválido. Debe usar el formato [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Duración" + +msgid "Email address" +msgstr "Dirección de correo electrónico" + +msgid "File path" +msgstr "Ruta de archivo" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "El valor de “%(value)s” debe ser un número de coma flotante." + +msgid "Floating point number" +msgstr "Número de coma flotante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "El valor de “%(value)s” debe ser un número entero." + +msgid "Integer" +msgstr "Entero" + +msgid "Big (8 byte) integer" +msgstr "Entero grande (8 bytes)" + +msgid "Small integer" +msgstr "Entero pequeño" + +msgid "IPv4 address" +msgstr "Dirección IPv4" + +msgid "IP address" +msgstr "Dirección IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "El valor de “%(value)s” debe ser None, Verdadero o Falso." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (Verdadero, Falso o Nulo)" + +msgid "Positive big integer" +msgstr "Entero grande positivo" + +msgid "Positive integer" +msgstr "Entero positivo" + +msgid "Positive small integer" +msgstr "Entero pequeño positivo" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (de hasta %(max_length)s caracteres)" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"El valor de “%(value)s” tiene un formato inválido. Debe usar el formato HH:" +"MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"El valor de “%(value)s” tiene un formato correcto (HH:MM[:ss[.uuuuuu]]) pero " +"representa una hora inválida." + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datos binarios crudos" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” no es un UUID válido." + +msgid "Universally unique identifier" +msgstr "Identificador universalmente único" + +msgid "File" +msgstr "Archivo" + +msgid "Image" +msgstr "Imagen" + +msgid "A JSON object" +msgstr "Un objeto JSON" + +msgid "Value must be valid JSON." +msgstr "El valor debe ser JSON válido." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "No existe una instancia de %(model)s con %(field)s %(value)r." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clave foránea (el tipo está determinado por el campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relación uno-a-uno" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "relación %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "relaciones %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relación muchos-a-muchos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Este campo es obligatorio." + +msgid "Enter a whole number." +msgstr "Introduzca un número entero." + +msgid "Enter a valid date." +msgstr "Introduzca una fecha válida." + +msgid "Enter a valid time." +msgstr "Introduzca un valor de hora válido." + +msgid "Enter a valid date/time." +msgstr "Introduzca un valor de fecha/hora válido." + +msgid "Enter a valid duration." +msgstr "Introduzca una duración válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "La cantidad de días debe tener valores entre {min_days} y {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"No se envió un archivo. Verifique el tipo de codificación en el formulario." + +msgid "No file was submitted." +msgstr "No se envió ningún archivo." + +msgid "The submitted file is empty." +msgstr "El archivo enviado está vacío." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracter " +"(tiene %(length)d)." +msgstr[1] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracteres " +"(tiene %(length)d)." +msgstr[2] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracteres " +"(tiene %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Por favor envíe un archivo o active el checkbox, pero no ambas cosas." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Seleccione una imagen válida. El archivo que ha seleccionado no es una " +"imagen o es un archivo de imagen corrupto." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Seleccione una opción válida. %(value)s no es una de las opciones " +"disponibles." + +msgid "Enter a list of values." +msgstr "Introduzca una lista de valores." + +msgid "Enter a complete value." +msgstr "Introduzca un valor completo." + +msgid "Enter a valid UUID." +msgstr "Introduzca un UUID válido." + +msgid "Enter a valid JSON." +msgstr "Introduzca JSON válido." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Los datos de ManagementForm faltan o han sido alterados. Campos faltantes: " +"%(field_names)s. Si el problema persiste es posible que deba reportarlo como " +"un error." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Por favor envíe un máximo de %(num)d formulario." +msgstr[1] "Por favor envíe un máximo de %(num)d formularios." +msgstr[2] "Por favor envíe un máximo de %(num)d formularios." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Por favor envíe %(num)d o mas formularios." +msgstr[1] "Por favor envíe %(num)d o mas formularios." +msgstr[2] "Por favor envíe %(num)d o mas formularios." + +msgid "Order" +msgstr "Ordenar" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor, corrija la información duplicada en %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor corrija la información duplicada en %(field)s, que debe ser única." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor corrija la información duplicada en %(field_name)s que debe ser " +"única para el %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Por favor, corrija los valores duplicados detallados mas abajo." + +msgid "The inline value did not match the parent instance." +msgstr "El valor inline no coincide con el de la instancia padre." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Seleccione una opción válida. La opción seleccionada no es una de las " +"disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” no es un valor válido." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s no puede ser interpretado en la zona horaria " +"%(current_timezone)s; ya que podría ser ambiguo o podría no existir." + +msgid "Clear" +msgstr "Eliminar" + +msgid "Currently" +msgstr "Actualmente" + +msgid "Change" +msgstr "Modificar" + +msgid "Unknown" +msgstr "Desconocido" + +msgid "Yes" +msgstr "Sí" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "si,no,talvez" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" +msgstr[2] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "medianoche" + +msgid "noon" +msgstr "mediodía" + +msgid "Monday" +msgstr "lunes" + +msgid "Tuesday" +msgstr "martes" + +msgid "Wednesday" +msgstr "miércoles" + +msgid "Thursday" +msgstr "jueves" + +msgid "Friday" +msgstr "viernes" + +msgid "Saturday" +msgstr "sábado" + +msgid "Sunday" +msgstr "Domingo" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mie" + +msgid "Thu" +msgstr "Jue" + +msgid "Fri" +msgstr "Vie" + +msgid "Sat" +msgstr "Sab" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "enero" + +msgid "February" +msgstr "febrero" + +msgid "March" +msgstr "marzo" + +msgid "April" +msgstr "abril" + +msgid "May" +msgstr "mayo" + +msgid "June" +msgstr "junio" + +msgid "July" +msgstr "julio" + +msgid "August" +msgstr "agosto" + +msgid "September" +msgstr "setiembre" + +msgid "October" +msgstr "octubre" + +msgid "November" +msgstr "noviembre" + +msgid "December" +msgstr "diciembre" + +msgid "jan" +msgstr "ene" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "set" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dic" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Enero" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marzo" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mayo" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junio" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Set." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dic." + +msgctxt "alt. month" +msgid "January" +msgstr "enero" + +msgctxt "alt. month" +msgid "February" +msgstr "febrero" + +msgctxt "alt. month" +msgid "March" +msgstr "marzo" + +msgctxt "alt. month" +msgid "April" +msgstr "abril" + +msgctxt "alt. month" +msgid "May" +msgstr "mayo" + +msgctxt "alt. month" +msgid "June" +msgstr "junio" + +msgctxt "alt. month" +msgid "July" +msgstr "julio" + +msgctxt "alt. month" +msgid "August" +msgstr "agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "setiembre" + +msgctxt "alt. month" +msgid "October" +msgstr "octubre" + +msgctxt "alt. month" +msgid "November" +msgstr "noviembre" + +msgctxt "alt. month" +msgid "December" +msgstr "diciembre" + +msgid "This is not a valid IPv6 address." +msgstr "Esta no es una dirección IPv6 válida." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d año" +msgstr[1] "%(num)d años" +msgstr[2] "%(num)d años" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mes" +msgstr[1] "%(num)d meses" +msgstr[2] "%(num)d meses" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d semana" +msgstr[1] "%(num)d semanas" +msgstr[2] "%(num)d semanas" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d día" +msgstr[1] "%(num)d días" +msgstr[2] "%(num)d días" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hora" +msgstr[1] "%(num)d horas" +msgstr[2] "%(num)d horas" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuto" +msgstr[1] "%(num)d minutos" +msgstr[2] "%(num)d minutos" + +msgid "Forbidden" +msgstr "Prohibido" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verificación CSRF fallida. Petición abortada." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Ud. está viendo este mensaje porque este sitio HTTPS tiene como " +"requerimiento que su navegador web envíe un encabezado “Referer” pero el " +"mismo no ha enviado uno. El hecho de que este encabezado sea obligatorio es " +"una medida de seguridad para comprobar que su navegador no está siendo " +"controlado por terceros." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Si ha configurado su browser para deshabilitar las cabeceras “Referer”, por " +"favor activelas al menos para este sitio, o para conexiones HTTPS o para " +"peticiones generadas desde el mismo origen." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Si está usando la etiqueta " +"o está incluyendo el encabezado “Referrer-Policy: no-referrer” por favor " +"quitelos. La protección CSRF necesita el encabezado “Referer” para realizar " +"una comprobación estricta de los referers. Si le preocupa la privacidad " +"tiene alternativas tales como usar en los enlaces a " +"sitios de terceros." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Ud. está viendo este mensaje porque este sitio tiene como requerimiento el " +"uso de una 'cookie' CSRF cuando se envíen formularios. El hecho de que esta " +"'cookie' sea obligatoria es una medida de seguridad para comprobar que su " +"browser no está siendo controlado por terceros." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Si ha configurado su browser para deshabilitar “cookies”, por favor " +"activelas al menos para este sitio o para peticiones generadas desde el " +"mismo origen." + +msgid "More information is available with DEBUG=True." +msgstr "Hay mas información disponible. Para ver la misma use DEBUG=True." + +msgid "No year specified" +msgstr "No se ha especificado el valor año" + +msgid "Date out of range" +msgstr "Fecha fuera de rango" + +msgid "No month specified" +msgstr "No se ha especificado el valor mes" + +msgid "No day specified" +msgstr "No se ha especificado el valor día" + +msgid "No week specified" +msgstr "No se ha especificado el valor semana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "No hay %(verbose_name_plural)s disponibles" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"No hay %(verbose_name_plural)s futuros disponibles porque %(class_name)s." +"allow_future tiene el valor False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Cadena de fecha inválida “%(datestr)s”, formato “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No se han encontrado %(verbose_name)s que coincidan con la consulta " + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Página debe tener el valor “last” o un valor número entero." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Página inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Lista vacía y “%(class_name)s.allow_empty” tiene el valor False." + +msgid "Directory indexes are not allowed here." +msgstr "" +"No está habilitada la generación de listados de directorios en esta " +"ubicación." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” no existe" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Listado de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "La instalación ha sido exitosa. ¡Felicitaciones!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Ver las release notes de Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Está viendo esta página porque el archivo de configuración contiene DEBUG=True y no ha configurado " +"ninguna URL." + +msgid "Django Documentation" +msgstr "Documentación de Django" + +msgid "Topics, references, & how-to’s" +msgstr "Tópicos, referencia & how-to’s" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: Una app de encuesta" + +msgid "Get started with Django" +msgstr "Comience a aprender Django" + +msgid "Django Community" +msgstr "Comunidad Django" + +msgid "Connect, get help, or contribute" +msgstr "Conéctese, consiga ayuda o contribuya" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a9e73cdc4fc2f6b820c9c33a2aa720a365439cd GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFj-Z4l&K0Y%qvm`!Vub}c4hfQvNN@-529moO2OhAH#0RV3u BHE#d_ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..232a42cfb82074c0a2d89b3857d8c59ce4cc39b4 GIT binary patch literal 729 zcmZXQ&2F1O5XYA<2itL6M{SQ47Y>$MbGM?ZG(bQNVDX{KD!3Mk5_}-5s0|>DfWj2e zm<9$jz+x6S%s~sc;0&Ju5AB4;e1f3!gTig-;trhSF7)s@T)1f1uehaP3Db(v$BU}H z^M%@FGy?gh5I_(MTE&5sNzOoZuRmR z8j17j;*=hR+vmb3)D-UNBlY&48as>)7i z+Losu1TX$aiab4#fvek&7dETDdO|1VG{bT0%xP$A;b&F-gfDk8!V!9r?N1Er<`-IX*RhGjhjo(wGb@7H6mSw5tq&b>m|MD!$vlLJL1BeB_5C8xG literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/formats.py new file mode 100644 index 0000000..601b458 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es_AR/formats.py @@ -0,0 +1,30 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = r"j N Y" +TIME_FORMAT = r"H:i" +DATETIME_FORMAT = r"j N Y H:i" +YEAR_MONTH_FORMAT = r"F Y" +MONTH_DAY_FORMAT = r"j \d\e F" +SHORT_DATE_FORMAT = r"d/m/Y" +SHORT_DATETIME_FORMAT = r"d/m/Y H:i" +FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '31/12/2009' + "%d/%m/%y", # '31/12/09' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", + "%d/%m/%Y %H:%M:%S.%f", + "%d/%m/%Y %H:%M", + "%d/%m/%y %H:%M:%S", + "%d/%m/%y %H:%M:%S.%f", + "%d/%m/%y %H:%M", +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..678fdc715bd2c8520453f41bbc4e7a5328af9e8d GIT binary patch literal 18079 zcmcJV37i~NoyQ-La74}k${|poff>k52qNGh!AuU4kO^aE!l6j4?yl*sOm|gV)jg95 zx-Ke;h^Xs@u2=9t#K6uIdVcq)7zrR(l z-h1`#_kaKYe1HC&Hyf^lcQfXx@Rq%eNx5HpkV1{w`zgk(g8RTT;d*!myc#|WehDhw zZigAOKRg;92z%fma0#3bhkW>m=Qx~8_!XX4d%nr@?Vj&}#}e-YaCdkoqf6?u?8yr zkbnOIsQimi?Ys%9UYA0}e;rgmTmu#FI(P#7h=2cWsPEhl_k#~ZmFw5A0sjQw0_#T_ zGY0pfb6*et0lp6&aFj9E!du|8;RQ6t68I*l@o^7iNSFhTaXbO49nOYiY0iUBgQNcW zbx`ep15`b3_xvVQJNyVLzrR6^v!?{cJQU&@Gyc;Ur zz0kJ1e}33MKLYigUqOwxKf`_DUdOrcL!iEQG*tTIpz7ZR75{9g@2`Oxzw6;i@Dix_ zSNiv__q+zGeD8s(|Mi|9@$YYjD(|PE(%<2q@AU8QhWhSzpvKRG{`pa;di)8V0q4@m z3~{prs(cqh<@Z9k2ONPa$0n%pk^AtMLw)~MQ2AXA)&AG`@Gn7)m#@Ly;Sb4#^)rSMXCHoOh)3I77so^wucK$Y)2 zAATX+gXb6e@Dg0Xa}AyYZ-%x%;9fk>?Q;FKA5=RW3H81gsvKwd=d+>a>1wF{jiA!! zP~-AasQGgR)b~FCmHtCe@ow_`6x4Y99Gna9^1KHs{&(RV_<-lbQ1knzP~YFHn>L0| zgX)JRkf~wLhx+bjxHo(;R6dtOtp`{7_wRx#&$XT(^5Gwa`u@k^KJYfEcwd4S!MmaI z>!$OLhrLkkwE?Q1Dp23gq0)~-)$cMN{wjDE&#!^X=OQMf%5@1;KAGp`p4WKZ;CZ{} zH=xoz1T|j&;KS!J*p<&wQ14HM8t==Y;%)HZWzS2Y;=c}R99`@AQK)oxK39ep?CEKIi%HVb2Sp=GVpk{YD>N zg8LF)fz{oNX~H!;Kgi;67VKH%^pR26$MgH4#?u2(_56$H{!CKU>lkuhhX?X} z5mbL}@~nG~dA`{5W$-xST>&YMxxsTARK0G5s>dyG9{dDUz3+g^|Eo~r@EcJ3&Am|L z>E}ND4^aK_H~)O_Vwdg+sQdz`{7!h)r%_I@SQci#f3 znt8W>|8>v%pyv5QQ03k88Po;t58nzm!_Dx(Qz<)qwdcBLy61yWbL;WFa4GMPIo&aY zT2I~!wSL_W)xO_@Plt~}rkFXD%}dWq;bCyZ^QBPfuYsr{=4ObhWA1@`%KXZ|?|zos z_m+EJ0+ntvWJxe@gldo5q3U<1=hvaib+3Q^9aMY$6{@}WXHXvw4~0s<2=Zs1#gE#v z0ktl@1S;RlJYNk*cz%O_{sUBcZHkIF4=Vrpo`*yAX8@J&@o+!52&z11L8Tvn`rZXl z>7Ne|g9ZQoQXhUf)Ht~cs=u%C@4pO{|2;2xI`+FYZc?4Ac0aUsLQ0W#y)%SF`8|;Uw-*V4Yo@+e^J%>Fn z^t{;fg`Op-d@E4j%YFDuJTHU#-sMo`dX*2q3QB)^y?_4mWZ|I)uImi~|$q2*Dycc0RGYgPCiF<%P%%%CU8~1O4|A9OeK~1ygqY}Iw*_ZbR zA#;%nc-Gk2n|sZ9UHftWRrr16>&O72OJn()_Kvj=eiV5%vK4tV@=4?`i01Mk$Ro(3 z$Y+pAPsPh<`9eB?|-Yr#8^E0Naq8gBlEXg$0aIUd;^(e+~o`}-|^wHCIntNqO% z;U)h56Y#CbAaXzQAfoFxh-_)CtI5rw$kST^@E`sCWu6bfJCNV|=NH4X{rx-PP5xf^ z1M)8atoiT;MB`7_5(g8&5cvS|5kyxFd6Kv9LP82%O+LN*}(g8Vyj1M+XklYCkKllwm8xk&4} zg_{GBA0bz?0zF^lS%m-W@2`cMkvYi4$k&iXh_3e`*CPdF6S4xi895C(8aW-wk$*z| z71^C~jlsVnZ$flk?|hK^U-{=2_96ajd3Xh~ zt`*q9D))PLJTK$^yU2XsZ+f*q_rHL*A%`KqMq1ZT{muK~Qslpok0Y-{bRCJTvUkQL z@C4*I6zN62GV!1tVz|Ea)nQjcDWacni9! zX*$}hZ){A|qwc)dEadW3g7XRn+2ty z6i#^9$4c7F^eozdTAVbMuoSpE7nmlEiVf3^4H}Q4QH6*$U?K`_P9gz$a8AE|&$Yh; z_IJ?!4)>d`RdJ~lC4p@O8pE|uH+NB%rCE1w76wf1zO#FeHA@G~(vd744Z|ciORI%2 ziNnM!t!Hu7EX~3~TmOOzGD zcoPXsf0#2YOn+1jvu3Vz{ZUdTzUhz4LDw0!IlF^6X+-5HGyQ2=jmWBN1w$dqg5iuY z#gJMVR`aNP*4GQ&OT}83CN@%TtJ0r^TVh+V!8B`7+9;4zFYP-n&&1yNc z)#`6%HAP%Dw0>nU7G?2BTnrm=N~4BxH7fN6>mzE!pbraVOMqDxHo_`3TUH5^GAXG+ zW|pP3TG*3E^)O>Hlv*{+&9W>dKSgh58O>XrFw3??#fn+(8hAO;gDyK28ZpD0@K!+D zYy>_mDn_*e4YoWg#9Z(926^2`}!OZERO%#K5mkHOXbeFn2%J8`J$sao-yGXZ6!`QdQsm8UqvC*yH zvllC`q~om!Gm5q=Id&HC@n-3p?C)2`ooBd9MWkowvX0hsscmpa{qk9xj96thJoP`* zHPM>LV#V^%NN46ceK5EdCwY~b|G3iX8(~mPYjv$Sfz3d9x^VV^Mv#uUU^|^%xLc;C z;*l&a1*-?gPHinav%aGq#5rvzad!A_!}_%|v)r&@_41iv(pY8-Tcq`NyBB`hoEaW< zuAehs`Ymo|@ND_dXw2~no1$OgTglU;IuVq#^5wzQCR3PDkJLi7cwUdPFlnURvEymO zSs4|wW|&QwmD1qUJ<`Sc7#U7!a+(=$tC9T)>LJ?6$~dtb|H`WNt)v{(wXC)_oRw)- zusVm~E{e-ZaBegabSW#=VLBachwX-fWvBq!2<^AJ%}Vw@ww#q&ERpsEtb(wziG~qT zDt6yOnnzYy+gPvC=u$YP28Ls7RAGTuDMZDvnJad&8s@oI?0W4sw{gVf#IUydL$5i9 z;Z{^roD-#4+1+F{J!ew8R?$GwxLL)f8Jks2^c1TStR8F)JkvQ+&FUgmB5KjBE~RF5 zEoAdwt^HO_ixS-0gi*T)MmMq5TkTaHF{{#`&5+k_BGkzu=vvSvZgg{{JMUHxp_AkU zDl3|)Vpg-KsQhcf#CGYL5dBPg%bF$%#hPXknRCM=2}>c|5{_2Pxs@9F!nyPk$<~IA zF(qG%n$<+_&~0-wDh29lS@{pJfm39?7(lt1Kx*72l%a;wLTA@dc^hFs5d23$>ZZZ@NOO=+G3 z=qZSX3Mi+x{sY?d>=urswnjW?T*oyNd*leg7p=Vc|m&GV?i*dH7)gHdLO_MmqEh$RTcwrG{b zpwz50<)p#d(L#}FW48q43xn}WT&&DELiU}eAeUjCV_cSxH=laLO^hKnBwJX=fK@c6=rKBwo!(4Xb~_f~p_lm5gK4Mz5de-DYT7+qF*ILk&Jt474qiUnA2pu%ir`6o&;% zZ8#oQIQ_z?q|O_f&`xF7NHZMPIOGqrd}n4jqCicsxnXFUn4f5BX>tRV=8kIh#zZeK zxwq3dU}@G?jOnMqE;zb_cS*Bao%V|K89FI@BPVB@o$t(6Z%g;D&>hElDWHOz+5EVNb(vmqHx((%M>sH4r4+9Ql3 zbeRFBs@s`4kv0PsE~01$W3Be{*XkZgV54gqN&(KYCgXzxzRkmI$VyFfzQ$>Lyk@O& z)~cc((B}LoiMBMQM6}H-=f_b)r#lAG1?(3H14?zjAgWTSix>hIQ8*pv^C)s#5)J6p zgSI+kjbThtt=zV;*%bq8(kNnui`jrGY|?%QQZ8;KpasaxN9pJ(yDsKY5z9|Q8+e$r zeJ|7yjyjA3v|1JvvUEIWZSuWZuw|@Z3@VP&Na%qSEi0i~W{o&vmWI9TVPOHqYpmC8 zWOJMiYDQSIJTn@mkC{PexHE%LkhTkwiZnfYt1wLuavI6Zu$c+jG-qbd_Bk_XD5@*0 z+L%$rjsRy(>xe@2+^W+N*4E%V!de<&XOOMnROYUBQ_sF?odMKq>anc}bcD5(f{q~7 z$`>&ynXsOjuvs?PfXql#Fq>G_H#MtBVrncjH3o4lE+uif(lAMiGMA)dCM`Bhnwh#r z0p}Pq5#6``t4lrSOT|c&zMw?D<#gWqsE+lmXCN=frJnv~Iqw-x z`+|9c=k=_Q#yCf$NssJieZeUwpK@}~$*1=$J~cRHao?$@oOCkRytP;P z^eG(JAwiwV>v z@8$fp$d$1Lrnk*$QIv07cHW}yc>}8lR!miBaqr3VmZ89*Rrd_r^H_tmco8PFI60Gz z3af9_IBUc3%APZ(;^}iEQP#7<>xF&68HKpfE_7dDzcp{r9-4YqN>Atu5_g8m&pPGI zz}=qJl?2D06)f&PbDn9P0$YatQpD1(nLK%G5*Jg=*l?OA)OG>1l%=+5e=WxXXVZ^E zPJvaDwQT)Gbl0{5$er8KGt?btqen--DD=1Z6c*`|Hf>97QwCUHBm2hgM6Gf>(Ue&G zd(AY1{`4nng)dER3uTrUZ9pZ>Y=CG3tXV&88~9Tf$a+mGt>^Y8$3&3WbneauhLbnh zbRq#ex9~6HV3h`Gv01e?otB0F#10exObh?yRz{06@lRgQO+hC9$;+_uM=}%WvsJn& zXqo%Nwvj(IOUsxSIox8}Cv7lg?dKI{{>g3Zb$KzxnvcHAR+w{Z4g9>Z#-J376o+Jv zwa(U$n&XZ9Y0$;2F0sdERLCCD(^+3S3%}y5YgTO(4E$+J9aXUk^a1LT+EE7n$(xgQ ziDl`Z+^P|5`X_Idm0yL`p+9B+b>{tIObWL>j-b6_jpz-A(0Pk-qluCrJ3j|$Z|Em8 zEdE*oGLFx+y69@!vc#0q93u(JJW8&&_tT`s28KADo$(N$^{2A;t2H!EZ)M5{Jy`Q+p_X?T&W@K}bN10YWA%*xdS z0S9spoH507mVaAqvnpkQDybyaYv9^~EbJ+cSt(UKqkYtZei$%5qVnXecnM_W(ScZB zsbD2Yg4*O(TLNd1Zo33}pFkR^2fOm6$!(a!(g35EZG>u2Z({#yHP#c!3$1DP%ywF? zaC!syV#z4tJOMka)2wOHKX;N?t0C>L0ixcJAtfG512&YhHPB)onB2NKuF1L~Hw_1> zFq_=!yaXs=9HOQ<3AQiZ6Z(R6L(majkN*>F227i21>csqf_GZPXRSboZCsv?9aLgh zzOY>dp71AHt^fa5i5-67|5OQjZ>BFI=(2$wO_2wW)!ca$VnLgrYttY`6~e_hGvCMP zFq=b!nQCV_usGQjshP-b;MU(d&WW^F>z02N269bED{+yu#!S5p61Tv1h7nhbsaqGV z{da6~tKB0y5^f(Ubsmey5%;uU)<~RRXL}LId*NTqsM(0!IA+bvzFMUHWwtyiJ;rrc z!&#Gew7~2;!)&>-Xkp<_XD{oHisHM@m10``T7BcQo$8_-jlA`8)-8B@XGm&&Aruai z0@{@7B(-WgSIAPgmSUxHL&mSI@`-4}oZ624Rx?s%h1U+x$)ytG7)j0AYKWPP<25@l z^MKXRe$aVF!V-ElBNY|d7QotBi?VH$&~sLzI2H9Bi~^DjQ-Jl7NWamJZ~Yr^y48Bh z5G|$JZT*;l>R9vfm{`?BJNC{zCd87*g!ac{QjN-~X*o<#`>GN9NrKBH)(h)10nTT_ zS;1;p9je6Y!A`|O6UeOQ)a6u;w&Nr*ldrYvi#lU=-wB>9JD`|$Q=XH-$*pBHAkG_p z;6Aqdr2TE@LQ%FF33yOa+pBm`&@MSM^V{h|*~DXq4~4FEnkGIJ90@$)KuHStPnznp zmIEc_uH`>bpJ4{qugrtfoGB=t3?0@t`E7GX4ohYd*PB&_LT=V$By#h!*2H?0_k=y} zhTL(Wplrh}`ql(L7-hmujFnF1eqi!?+$kz0V+Z#TCA3ZyGZZm+BMOA)!)b5co#MWi z#~cDRjO1?Pf3&vqrbyB6I7GBvEBF)mvxzyRCek5;Bu>y9bpqsLZQowEOipo9jQQ6k zR2gZ)RcS7mmS_`YGCls(0Ph&q{#&Th8i_^CEM}EGwz*R9CQ5L6@uF1>{Bn{elYnvthd|?RVsA zkBA+P8h;+ZDAUxrU}|_Yla#T+uaTD~!ApaahO?4$(u6uR@sCVnc6ZD&%yPDs7?Uke zjaDRg(r@9DrM*mD57n;qhhFk*J-fIyEPptH_?7I!e$w_|H~~R#Dx*7BY_L zgYBF(+m}<{v?>DYoOe*^t6?GBM6b0grtvblP5;`6RoIRcrYEK>t)3d7I&(s%4vL-5 zfeUrSvL`OihdO1ovs&273u6FzpvuU#*cvH+mzbO!9#@Xr$75;fJWaRG?RDqlX)U{K zRMzLi_|QMV>8w47J2xy$ZqvW0sT*+x=rkI0&wm;a#Kvh4+IV?VGc>uiV1Jl`EE&a= z!PjKzPV3V(56yPj&*{!Y8<>rxMyBM7D@QsyS$jj%_P*oHR^(G(u-S1GrZXBGmXzVN zd}Pq{Gt0VqD6>30DKT;Mq@3INWpQ@?9<4DfxOL^i6jkG>UUK-*p7w@*#`PnI4~}tE z2zvnQaQL_lZK^?A3n~A3X%BG>Xzky)e`w2PSW0NFu4$*aj?9*)HG{Ck^3i6v$$Ed9 zvNR02rNlOK%lR|86{Cg}peg?k5Bj$Xw==I`Df5HAwQSn5FmZ~L+n6RRbnJ9m3ytEo z5MtoOWD?3HRNO%%*%WaLO@B+5riE%;mNiyOC%K26-9JqQ@6edn;Q2wuSX5WZBImjY zb1Zv+^r)&fMhP|nTtpeI(dif}qGI9E!x$4WhLV&$NaNj4d-f7JbvRFWjX&sU6|DlD zdkRAp?OFrcC$f7VC1K~Zi$upO?=`}t)N&WGNVSH&GlsfhKXY!-F5X@@Cf|`vH<+=U z&nRZE9Ec~cw?9-=?n2ZzDI-J7QCd`{nK2Ih+8fn-tV2>1q=LQ(rN!>@{Nr)KIgRw6 zo+`6<2RZK%nhvR@5vY++RXW$4!1kJtPn-mWfoTz19hd*cbu(91(zV9VJtKl6-QT{3Q7Hw$Q8Qe*sA!390}9 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po new file mode 100644 index 0000000..9f839fe --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/LC_MESSAGES/django.po @@ -0,0 +1,1258 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Carlos Muñoz , 2015 +# Claude Paroz , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-14 21:42+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Spanish (Colombia) (http://www.transifex.com/django/django/" +"language/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikáans" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azerí" + +msgid "Bulgarian" +msgstr "Búlgaro" + +msgid "Belarusian" +msgstr "Bielorruso" + +msgid "Bengali" +msgstr "Bengalí" + +msgid "Breton" +msgstr "Bretón" + +msgid "Bosnian" +msgstr "Bosnio" + +msgid "Catalan" +msgstr "Catalán" + +msgid "Czech" +msgstr "Checo" + +msgid "Welsh" +msgstr "Galés" + +msgid "Danish" +msgstr "Danés" + +msgid "German" +msgstr "Alemán" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Griego" + +msgid "English" +msgstr "Inglés" + +msgid "Australian English" +msgstr "Inglés Australiano" + +msgid "British English" +msgstr "Inglés Británico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Español" + +msgid "Argentinian Spanish" +msgstr "Español de Argentina" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Español de México" + +msgid "Nicaraguan Spanish" +msgstr "Español de Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Español venezolano" + +msgid "Estonian" +msgstr "Estonio" + +msgid "Basque" +msgstr "Vasco" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finés" + +msgid "French" +msgstr "Francés" + +msgid "Frisian" +msgstr "Frisón" + +msgid "Irish" +msgstr "Irlandés" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Gallego" + +msgid "Hebrew" +msgstr "Hebreo" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Húngaro" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesio" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandés" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Japonés" + +msgid "Georgian" +msgstr "Georgiano" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Kazajo" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreano" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Luxenburgués" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Letón" + +msgid "Macedonian" +msgstr "Macedonio" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "Maratí" + +msgid "Burmese" +msgstr "Birmano" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Nepalí" + +msgid "Dutch" +msgstr "Holandés" + +msgid "Norwegian Nynorsk" +msgstr "Nynorsk" + +msgid "Ossetic" +msgstr "Osetio" + +msgid "Punjabi" +msgstr "Panyabí" + +msgid "Polish" +msgstr "Polaco" + +msgid "Portuguese" +msgstr "Portugués" + +msgid "Brazilian Portuguese" +msgstr "Portugués brasileño" + +msgid "Romanian" +msgstr "Rumano" + +msgid "Russian" +msgstr "Ruso" + +msgid "Slovak" +msgstr "Eslovaco" + +msgid "Slovenian" +msgstr "Esloveno" + +msgid "Albanian" +msgstr "Albanés" + +msgid "Serbian" +msgstr "Serbio" + +msgid "Serbian Latin" +msgstr "Serbio latino" + +msgid "Swedish" +msgstr "Sueco" + +msgid "Swahili" +msgstr "Suajili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tailandés" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tártaro" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "Ucraniano" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chino simplificado" + +msgid "Traditional Chinese" +msgstr "Chino tradicional" + +msgid "Messages" +msgstr "Mensajes" + +msgid "Site Maps" +msgstr "Mapas del sitio" + +msgid "Static Files" +msgstr "Archivos estáticos" + +msgid "Syndication" +msgstr "Sindicación" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Ingrese un valor válido." + +msgid "Enter a valid URL." +msgstr "Ingrese una URL válida." + +msgid "Enter a valid integer." +msgstr "Ingrese un entero válido." + +msgid "Enter a valid email address." +msgstr "Ingrese una dirección de correo electrónico válida." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Ingrese una dirección IPv4 válida." + +msgid "Enter a valid IPv6 address." +msgstr "Ingrese una dirección IPv6 válida." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Ingrese una dirección IPv4 o IPv6 válida." + +msgid "Enter only digits separated by commas." +msgstr "Ingrese solo números separados por comas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Asegúrese de que este valor es %(limit_value)s (es %(show_value)s )." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor sea menor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor sea mayor o igual a %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d carácter " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d carácter " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +msgid "Enter a number." +msgstr "Ingrese un número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asegúrese de que no hayan mas de %(max)s dígito en total." +msgstr[1] "Asegúrese de que no hayan mas de %(max)s dígitos en total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Asegúrese de que no hayan más de %(max)s decimal." +msgstr[1] "Asegúrese de que no hayan más de %(max)s decimales." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Asegúrese de que no hayan más de %(max)s dígito antes del punto decimal." +msgstr[1] "" +"Asegúrese de que no hayan más de %(max)s dígitos antes del punto decimal" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "y" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Ya existe un/a %(model_name)s con este/a %(field_labels)s." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Valor %(value)r no es una opción válida." + +msgid "This field cannot be null." +msgstr "Este campo no puede ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo no puede estar en blanco." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Ya existe un/a %(model_name)s con este/a %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s debe ser único para %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Tipo de campo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Booleano (Verdadero o Falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadena (máximo %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Enteros separados por comas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Fecha (sin hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Fecha (con hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Duración" + +msgid "Email address" +msgstr "Dirección de correo electrónico" + +msgid "File path" +msgstr "Ruta de archivo" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Número de punto flotante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Entero" + +msgid "Big (8 byte) integer" +msgstr "Entero grande (8 bytes)" + +msgid "IPv4 address" +msgstr "Dirección IPv4" + +msgid "IP address" +msgstr "Dirección IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (Verdadero, Falso o Nulo)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Entero positivo" + +msgid "Positive small integer" +msgstr "Entero positivo pequeño" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (hasta %(max_length)s)" + +msgid "Small integer" +msgstr "Entero pequeño" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datos de binarios brutos" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Archivo" + +msgid "Image" +msgstr "Imagen" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "La instancia del %(model)s con %(field)s %(value)r no existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Llave foránea (tipo determinado por el campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relación uno-a-uno" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Relación muchos-a-muchos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Este campo es obligatorio." + +msgid "Enter a whole number." +msgstr "Ingrese un número entero." + +msgid "Enter a valid date." +msgstr "Ingrese una fecha válida." + +msgid "Enter a valid time." +msgstr "Ingrese una hora válida." + +msgid "Enter a valid date/time." +msgstr "Ingrese una fecha/hora válida." + +msgid "Enter a valid duration." +msgstr "Ingrese una duración válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"No se ha enviado ningún fichero. Compruebe el tipo de codificación en el " +"formulario." + +msgid "No file was submitted." +msgstr "No se ha enviado ningún fichero." + +msgid "The submitted file is empty." +msgstr "El fichero enviado está vacío." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d carácter " +"(tiene %(length)d)." +msgstr[1] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracteres " +"(tiene %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Por favor envíe un fichero o marque la casilla de limpiar, pero no ambos." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Envíe una imagen válida. El fichero que ha enviado no era una imagen o se " +"trataba de una imagen corrupta." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Escoja una opción válida. %(value)s no es una de las opciones disponibles." + +msgid "Enter a list of values." +msgstr "Ingrese una lista de valores." + +msgid "Enter a complete value." +msgstr "Ingrese un valor completo." + +msgid "Enter a valid UUID." +msgstr "Ingrese un UUID válido." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) *%(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "Los datos de ManagementForm faltan o han sido manipulados" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Por favor, envíe %d o menos formularios." +msgstr[1] "Por favor, envíe %d o menos formularios." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "Por favor, envíe %d o mas formularios." +msgstr[1] "Por favor, envíe %d o mas formularios." + +msgid "Order" +msgstr "Orden" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor, corrija el dato duplicado para %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor corrija el dato duplicado para %(field)s, este debe ser único." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor corrija los datos duplicados para %(field_name)s este debe ser " +"único para %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Por favor, corrija los valores duplicados abajo." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Escoja una opción válida. Esa opción no está entre las disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Limpiar" + +msgid "Currently" +msgstr "Actualmente" + +msgid "Change" +msgstr "Cambiar" + +msgid "Unknown" +msgstr "Desconocido" + +msgid "Yes" +msgstr "Sí" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "sí,no,quizás" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "medianoche" + +msgid "noon" +msgstr "mediodía" + +msgid "Monday" +msgstr "Lunes" + +msgid "Tuesday" +msgstr "Martes" + +msgid "Wednesday" +msgstr "Miércoles" + +msgid "Thursday" +msgstr "Jueves" + +msgid "Friday" +msgstr "Viernes" + +msgid "Saturday" +msgstr "Sábado" + +msgid "Sunday" +msgstr "Domingo" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mié" + +msgid "Thu" +msgstr "Jue" + +msgid "Fri" +msgstr "Vie" + +msgid "Sat" +msgstr "Sáb" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "Enero" + +msgid "February" +msgstr "Febrero" + +msgid "March" +msgstr "Marzo" + +msgid "April" +msgstr "Abril" + +msgid "May" +msgstr "Mayo" + +msgid "June" +msgstr "Junio" + +msgid "July" +msgstr "Julio" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Septiembre" + +msgid "October" +msgstr "Octubre" + +msgid "November" +msgstr "Noviembre" + +msgid "December" +msgstr "Diciembre" + +msgid "jan" +msgstr "ene" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dic" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ene." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marzo" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mayo" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junio" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sep." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dic." + +msgctxt "alt. month" +msgid "January" +msgstr "Enero" + +msgctxt "alt. month" +msgid "February" +msgstr "Febrero" + +msgctxt "alt. month" +msgid "March" +msgstr "Marzo" + +msgctxt "alt. month" +msgid "April" +msgstr "Abril" + +msgctxt "alt. month" +msgid "May" +msgstr "Mayo" + +msgctxt "alt. month" +msgid "June" +msgstr "Junio" + +msgctxt "alt. month" +msgid "July" +msgstr "Julio" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Septiembre" + +msgctxt "alt. month" +msgid "October" +msgstr "Octubre" + +msgctxt "alt. month" +msgid "November" +msgstr "Noviembre" + +msgctxt "alt. month" +msgid "December" +msgstr "Diciembre" + +msgid "This is not a valid IPv6 address." +msgstr "Esta no es una dirección IPv6 válida." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d año" +msgstr[1] "%d años" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d mes" +msgstr[1] "%d meses" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d semana" +msgstr[1] "%d semanas" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d día" +msgstr[1] "%d días" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d hora" +msgstr[1] "%d horas" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +msgid "Forbidden" +msgstr "Prohibido" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verificación CSRF fallida. Solicitud abortada." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Estás viendo este mensaje porqué esta web requiere una cookie CSRF cuando se " +"envían formularios. Esta cookie se necesita por razones de seguridad, para " +"asegurar que tu navegador no ha sido comprometido por terceras partes." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Se puede ver más información si se establece DEBUG=True." + +msgid "No year specified" +msgstr "No se ha indicado el año" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "No se ha indicado el mes" + +msgid "No day specified" +msgstr "No se ha indicado el día" + +msgid "No week specified" +msgstr "No se ha indicado la semana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "No %(verbose_name_plural)s disponibles" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Los futuros %(verbose_name_plural)s no están disponibles porque " +"%(class_name)s.allow_future es Falso." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No se encontró ningún %(verbose_name)s coincidente con la consulta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Página inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Los índices de directorio no están permitidos." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índice de %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c612bfdd957110ea7d7ac9b8152b633042b1eb9 GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFj-q~M2K0Y%qvm`!Vub}c4hfQvNN@-529moO2OhAH#0RV3O BHEsX^ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..52149319020f8d18596ffddb697ea85d4d38cfe9 GIT binary patch literal 770 zcmZXS&u*JQ5XM;p&f1RSI%<2UREf(TEVbrtMOCT60X2ZdA62YYLez^br(hzlt;#$} z&%O2Bx5>4qyg`*y!HEfO7BRE)o9`P95?Qy~=8E&EYc=!(i42L;3)hFFf4Mb$SvB&ZQ8*ddWuhJ*X0IhdGA^xl*H2H zAq6?FkCyq{|ENSFi6kTZ6xO;AVLUrRKy$A1Z!SIeRma_(3+)))z3n#W? zDjx25hFKN8vQr2BKvSI1v@K6R7+yS7suCPX-_>o$3+q!~J)xs<6T@*!Wf0nv@QbE> z#^-yRVNHGSah{7`S8E*ezN(E4Q@ILVZK^nmXFK@Z({0~XEVagZmT!L2obb}I{i$JH z{^HhR@#*_;KOc{X&*C*B-{WMH5jC4_(|EOEWD&DXl!fbPn;hM*mR|{5ZsPYh(d=7P zs0h7|R*OuYWvjWIWV0xV<(P$ITb^g@G}^G?&F&Unq#4~N@rUx4U~h^bGz3t8Ab_F( H1pvW6yPL}o literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/formats.py new file mode 100644 index 0000000..056d0ad --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es_CO/formats.py @@ -0,0 +1,26 @@ +# This file is distributed under the same license as the Django package. +# +DATE_FORMAT = r"j \d\e F \d\e Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" +YEAR_MONTH_FORMAT = r"F \d\e Y" +MONTH_DAY_FORMAT = r"j \d\e F" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y H:i" +FIRST_DAY_OF_WEEK = 1 +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + "%Y%m%d", # '20061025' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", + "%d/%m/%Y %H:%M:%S.%f", + "%d/%m/%Y %H:%M", + "%d/%m/%y %H:%M:%S", + "%d/%m/%y %H:%M:%S.%f", + "%d/%m/%y %H:%M", +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..42f269181b678e521380dec5233b33f87a1d75ff GIT binary patch literal 18501 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 gSy#5#;&u%e(^SrYDYtj~OV{=Uv$kvJMALfz4K8, 2020 +# Gustavo López Hernández, 2022 +# Jesús Bautista , 2019-2020 +# Sergio Benitez , 2021 +# zodman , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-17 05:23-0500\n" +"PO-Revision-Date: 2022-07-25 06:49+0000\n" +"Last-Translator: Gustavo López Hernández\n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/django/django/" +"language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "afrikáans" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Algerian Arabic" +msgstr "Árabe argelino" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azerbaijani" + +msgid "Bulgarian" +msgstr "Búlgaro" + +msgid "Belarusian" +msgstr "bielorruso" + +msgid "Bengali" +msgstr "Bengalí" + +msgid "Breton" +msgstr "bretón" + +msgid "Bosnian" +msgstr "Bosnio" + +msgid "Catalan" +msgstr "Catalán" + +msgid "Czech" +msgstr "Checo" + +msgid "Welsh" +msgstr "Galés" + +msgid "Danish" +msgstr "Danés" + +msgid "German" +msgstr "Alemán" + +msgid "Lower Sorbian" +msgstr "Bajo sorbio" + +msgid "Greek" +msgstr "Griego" + +msgid "English" +msgstr "Inglés" + +msgid "Australian English" +msgstr "Inglés australiano" + +msgid "British English" +msgstr "Inglés británico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Español" + +msgid "Argentinian Spanish" +msgstr "Español de Argentina" + +msgid "Colombian Spanish" +msgstr "Español Colombiano" + +msgid "Mexican Spanish" +msgstr "Español de México" + +msgid "Nicaraguan Spanish" +msgstr "Español de nicaragua" + +msgid "Venezuelan Spanish" +msgstr "español de Venezuela" + +msgid "Estonian" +msgstr "Estonio" + +msgid "Basque" +msgstr "Vasco" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finés" + +msgid "French" +msgstr "Francés" + +msgid "Frisian" +msgstr "Frisón" + +msgid "Irish" +msgstr "Irlandés" + +msgid "Scottish Gaelic" +msgstr "Gaélico escocés" + +msgid "Galician" +msgstr "Gallego" + +msgid "Hebrew" +msgstr "Hebreo" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "Alto sorbio" + +msgid "Hungarian" +msgstr "Húngaro" + +msgid "Armenian" +msgstr "Armenio" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesio" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandés" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Japonés" + +msgid "Georgian" +msgstr "Georgiano" + +msgid "Kabyle" +msgstr "Cabilio" + +msgid "Kazakh" +msgstr "Kazajstán" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Coreano" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "luxemburgués" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Letón" + +msgid "Macedonian" +msgstr "Macedonio" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "burmés" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Nepal" + +msgid "Dutch" +msgstr "Holandés" + +msgid "Norwegian Nynorsk" +msgstr "Noruego Nynorsk" + +msgid "Ossetic" +msgstr "osetio" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polaco" + +msgid "Portuguese" +msgstr "Portugués" + +msgid "Brazilian Portuguese" +msgstr "Portugués de Brasil" + +msgid "Romanian" +msgstr "Rumano" + +msgid "Russian" +msgstr "Ruso" + +msgid "Slovak" +msgstr "Eslovaco" + +msgid "Slovenian" +msgstr "Esloveno" + +msgid "Albanian" +msgstr "Albanés" + +msgid "Serbian" +msgstr "Serbio" + +msgid "Serbian Latin" +msgstr "Latin Serbio" + +msgid "Swedish" +msgstr "Sueco" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tailandés" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "udmurto" + +msgid "Ukrainian" +msgstr "Ucraniano" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chino simplificado" + +msgid "Traditional Chinese" +msgstr "Chino tradicional" + +msgid "Messages" +msgstr "Mensajes" + +msgid "Site Maps" +msgstr "Mapas del sitio" + +msgid "Static Files" +msgstr "Archivos Estáticos" + +msgid "Syndication" +msgstr "Sindicación" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "Ese número de página no es un número entero" + +msgid "That page number is less than 1" +msgstr "Ese número de página es menor que 1" + +msgid "That page contains no results" +msgstr "Esa página no contiene resultados" + +msgid "Enter a valid value." +msgstr "Introduzca un valor válido." + +msgid "Enter a valid URL." +msgstr "Ingrese una URL válida." + +msgid "Enter a valid integer." +msgstr "Ingrese un entero válido." + +msgid "Enter a valid email address." +msgstr "Introduzca una dirección de correo electrónico válida." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Introduzca un \"slug\" válido que conste de letras, números, guiones bajos o " +"guiones." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Introduzca un \"slug\" válido que conste de letras Unicode, números, guiones " +"bajos o guiones." + +msgid "Enter a valid IPv4 address." +msgstr "Introduzca una dirección IPv4 válida." + +msgid "Enter a valid IPv6 address." +msgstr "Introduzca una dirección IPv6 válida." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Introduzca una dirección IPv4 o IPv6 válida." + +msgid "Enter only digits separated by commas." +msgstr "Introduzca sólo números separados por comas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Asegúrese de que este valor es %(limit_value)s (es %(show_value)s )." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor sea menor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor sea mayor o igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d caracter " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +msgid "Enter a number." +msgstr "Introduzca un número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asegúrese de que no hay más de %(max)s dígito en total." +msgstr[1] "Asegúrese de que no hay más de %(max)s dígitos en total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Caracteres nulos no están permitidos." + +msgid "and" +msgstr "y" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "El valor %(value)r no es una opción válida." + +msgid "This field cannot be null." +msgstr "Este campo no puede ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo no puede estar en blanco." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Ya existe un/a %(model_name)s con este/a %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "El valor \"%(value)s\" debe ser Verdadero o Falso. " + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Verdadero o Falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadena (máximo %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Enteros separados por comas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” : el valor tiene un formato de fecha inválido. Debería estar en " +"el formato YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” : el valor tiene el formato correcto (YYYY-MM-DD) pero es una " +"fecha inválida." + +msgid "Date (without time)" +msgstr "Fecha (sin hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"'%(value)s' tiene un formato de fecha no válido. Este valor debe estar en el " +"formato AAAA-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Fecha (con hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Duración" + +msgid "Email address" +msgstr "Dirección de correo electrónico" + +msgid "File path" +msgstr "Ruta de archivo" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "El valor \"%(value)s\" debe ser flotante." + +msgid "Floating point number" +msgstr "Número de punto flotante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Entero" + +msgid "Big (8 byte) integer" +msgstr "Entero grande (8 bytes)" + +msgid "Small integer" +msgstr "Entero pequeño" + +msgid "IPv4 address" +msgstr "Dirección IPv4" + +msgid "IP address" +msgstr "Dirección IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (Verdadero, Falso o Nulo)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Entero positivo" + +msgid "Positive small integer" +msgstr "Entero positivo pequeño" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (hasta %(max_length)s)" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Los datos en bruto" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Archivo" + +msgid "Image" +msgstr "Imagen" + +msgid "A JSON object" +msgstr "Un objeto JSON" + +msgid "Value must be valid JSON." +msgstr "El valor debe ser JSON válido" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "La instancia de %(model)s con %(field)s %(value)r no existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clave foránea (el tipo está determinado por el campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relación uno-a-uno" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relación %(from)s - %(to)s " + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relaciones %(from)s - %(to)s" + +msgid "Many-to-many relationship" +msgstr "Relación muchos-a-muchos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Este campo es obligatorio." + +msgid "Enter a whole number." +msgstr "Introduzca un número entero." + +msgid "Enter a valid date." +msgstr "Introduzca una fecha válida." + +msgid "Enter a valid time." +msgstr "Introduzca una hora válida." + +msgid "Enter a valid date/time." +msgstr "Introduzca una fecha/hora válida." + +msgid "Enter a valid duration." +msgstr "Introduzca una duración válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "La cantidad de días debe tener valores entre {min_days} y {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"No se envió un archivo. Verifique el tipo de codificación en el formulario." + +msgid "No file was submitted." +msgstr "No se envió ningún archivo." + +msgid "The submitted file is empty." +msgstr "El archivo enviado está vacío." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Por favor envíe un archivo o marque la casilla, no ambos." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Seleccione una imagen válida. El archivo que ha seleccionado no es una " +"imagen o es un un archivo de imagen corrupto." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Seleccione una opción válida. %(value)s no es una de las opciones " +"disponibles." + +msgid "Enter a list of values." +msgstr "Introduzca una lista de valores." + +msgid "Enter a complete value." +msgstr "Ingrese un valor completo." + +msgid "Enter a valid UUID." +msgstr "Ingrese un UUID válido." + +msgid "Enter a valid JSON." +msgstr "Ingresa un JSON válido." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Ordenar" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor, corrija la información duplicada en %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor corrija la información duplicada en %(field)s, que debe ser única." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor corrija la información duplicada en %(field_name)s que debe ser " +"única para el %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Por favor, corrija los valores duplicados detallados mas abajo." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Seleccione una opción válida. La opción seleccionada no es una de las " +"disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Borrar" + +msgid "Currently" +msgstr "Actualmente" + +msgid "Change" +msgstr "Modificar" + +msgid "Unknown" +msgstr "Desconocido" + +msgid "Yes" +msgstr "Sí" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "sí,no,tal vez" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "medianoche" + +msgid "noon" +msgstr "mediodía" + +msgid "Monday" +msgstr "Lunes" + +msgid "Tuesday" +msgstr "Martes" + +msgid "Wednesday" +msgstr "Miércoles" + +msgid "Thursday" +msgstr "Jueves" + +msgid "Friday" +msgstr "Viernes" + +msgid "Saturday" +msgstr "Sábado" + +msgid "Sunday" +msgstr "Domingo" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mie" + +msgid "Thu" +msgstr "Jue" + +msgid "Fri" +msgstr "Vie" + +msgid "Sat" +msgstr "Sab" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "Enero" + +msgid "February" +msgstr "Febrero" + +msgid "March" +msgstr "Marzo" + +msgid "April" +msgstr "Abril" + +msgid "May" +msgstr "Mayo" + +msgid "June" +msgstr "Junio" + +msgid "July" +msgstr "Julio" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Septiembre" + +msgid "October" +msgstr "Octubre" + +msgid "November" +msgstr "Noviembre" + +msgid "December" +msgstr "Diciembre" + +msgid "jan" +msgstr "ene" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dic" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ene." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marzo" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mayo" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junio" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sep." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dic." + +msgctxt "alt. month" +msgid "January" +msgstr "Enero" + +msgctxt "alt. month" +msgid "February" +msgstr "Febrero" + +msgctxt "alt. month" +msgid "March" +msgstr "Marzo" + +msgctxt "alt. month" +msgid "April" +msgstr "Abril" + +msgctxt "alt. month" +msgid "May" +msgstr "Mayo" + +msgctxt "alt. month" +msgid "June" +msgstr "Junio" + +msgctxt "alt. month" +msgid "July" +msgstr "Julio" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Septiembre" + +msgctxt "alt. month" +msgid "October" +msgstr "Octubre" + +msgctxt "alt. month" +msgid "November" +msgstr "Noviembre" + +msgctxt "alt. month" +msgid "December" +msgstr "Diciembre" + +msgid "This is not a valid IPv6 address." +msgstr "Esta no es una dirección IPv6 válida." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hora" +msgstr[1] "%(num)d horas" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "Prohibido" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "No se ha especificado el valor año" + +msgid "Date out of range" +msgstr "Fecha fuera de rango" + +msgid "No month specified" +msgstr "No se ha especificado el valor mes" + +msgid "No day specified" +msgstr "No se ha especificado el valor dia" + +msgid "No week specified" +msgstr "No se ha especificado el valor semana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "No hay %(verbose_name_plural)s disponibles" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"No hay %(verbose_name_plural)s futuros disponibles porque %(class_name)s." +"allow_future tiene el valor False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No se han encontrado %(verbose_name)s que coincidan con la consulta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "La página no es \"last\", ni puede ser convertido a un int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Página inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Los índices del directorio no están permitidos." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índice de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "¡La instalación funcionó con éxito! ¡Felicidades!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "Documentación de Django" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "Comunidad de Django" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b7bce07cf924ef66ce87a5fdf9daa5c1f5dbb55e GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFj-Zw%&K0Y%qvm`!Vub}c4hfQvNN@-529moO2OhAH#0RVB0 BHGu#C literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a810a9a87d755958c093037474ec516a41b0b3d3 GIT binary patch literal 770 zcmZXS&u*JQ5XN^6IM|NkIBI*SREf(TEVbrtMOA3P!D;}DKWbU6gs2x=PQgS5t1?g0 zb8mg6TzkqJR5^8VVuG7R%@BX6_2_+JfkYrNX7Av*57Zw7Q6WK3XyHu*~Av@uKD?~(Pl*q`hcH5$fe3T$M zXcql_S3>#-86)HruU?=bninUBv@&jA8lO?!_(bpE@BzNRXa5$MgD&oA1hVy_oVOWmhA@hsjr{W!MO3nc1oomSmWS}rhUd| zJKMyZdhXLa2fwL~amf3sb~!PW>%h^bimkYojn7=&@*KrfYpiE_#wX1Vu58PjPRy&{ zU@fpu--U$DagZ=gL8_AY=^x-y~eGi$6 z(3^0zNab0&n#*xI3*$(RvcUK%&(n1h=GpLedncYJDc!`;$MQ;KZ&~0QJgh$=6a`-7 Hp$Pv0uv^M- literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/formats.py new file mode 100644 index 0000000..d675d79 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es_MX/formats.py @@ -0,0 +1,26 @@ +# This file is distributed under the same license as the Django package. +# +DATE_FORMAT = r"j \d\e F \d\e Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" +YEAR_MONTH_FORMAT = r"F \d\e Y" +MONTH_DAY_FORMAT = r"j \d\e F" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday: ISO 8601 +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + "%Y%m%d", # '20061025' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", + "%d/%m/%Y %H:%M:%S.%f", + "%d/%m/%Y %H:%M", + "%d/%m/%y %H:%M:%S", + "%d/%m/%y %H:%M:%S.%f", + "%d/%m/%y %H:%M", +] +DECIMAL_SEPARATOR = "." # ',' is also official (less common): NOM-008-SCFI-2002 +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..067f32184ff6bae56d3868a9a4588878bc2e938c GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFj-p^A%K0Y%qvm`!Vub}c4hfQvNN@-529moO2OhAH#0RV5Z BHFE#} literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_NI/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..46f41bb47f9d3b9aa456ef2b8ad598dcb8cb3265 GIT binary patch literal 770 zcmZXS&u*JQ5XQk^XKlxE9ko4Fs>EdvmRfVSqN+6DfEvK!k1AFxA?n4JQ!tSitMWcc z&bjqT`VP7FlsBkyDmXF0%_3%Ye)D~!K_ct*I$UvX{`!mG4UYR$7WGpw?sM_dG7t`N zghxDSpav0;Ktv>xCTfxvYLO#!wBQK1@V%T65(0!?v3)3!W)Z+P`ssY%I*Tzg`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFjJ|IXxK0Y%qvm`!Vub}c4hfQvNN@-529moO2OhAH#0RV9- BHGTj9 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/es_PR/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..58f75dddb06e53ce000de4d00ee04a5d9eec9222 GIT binary patch literal 764 zcmZXPPj8zr7{+ZNDM^~9skYrVap4eY3-@T6Mhhuu1tR`v!m@-|Oi(%qRZKL6PqOoN z+E?mzr+$N}hiQ;Dl&rS=+V9WL^ZIqx?{`5tzW?#!p9}!MtE4$f20oUHR)GKn2t<%D zh#@Ru35Ph+LM_rpZE}Q;2v0gOgZLPb?hlAMq=&lX81+aW9g`CWj0VNvTEGNH!t`PD z3s##fi`V~A0fz!kaEPf;UGue?-wTTtky6PoI=ih>-IWc3f)|M-rjqE_r|qa+4EIzJ zwTWmPDRm zs+%Sl`l@UPhGn|i-f;SmDYCyOLr1f0H)vLU`GgM2O?BI;lzw1MgU_n^37ze1x;gXQ z$9fKWRkv}-hl+Zk8}e1)s59A?UCTyiu4Z|TY$^>lFg@d3wS!CB@@Beu`3tOD<=1!N zesM9u9*x!%e~Xel!%8;aq|qv;IF4u@X2Ck#BnRiK0XifAyirA4+*!<>$9wzvHIG$WfN`T)zP>6gJ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_PR/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/es_PR/formats.py new file mode 100644 index 0000000..d50fe5d --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es_PR/formats.py @@ -0,0 +1,27 @@ +# This file is distributed under the same license as the Django package. +# +DATE_FORMAT = r"j \d\e F \d\e Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = r"j \d\e F \d\e Y \a \l\a\s H:i" +YEAR_MONTH_FORMAT = r"F \d\e Y" +MONTH_DAY_FORMAT = r"j \d\e F" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y H:i" +FIRST_DAY_OF_WEEK = 0 # Sunday + +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '31/12/2009' + "%d/%m/%y", # '31/12/09' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", + "%d/%m/%Y %H:%M:%S.%f", + "%d/%m/%Y %H:%M", + "%d/%m/%y %H:%M:%S", + "%d/%m/%y %H:%M:%S.%f", + "%d/%m/%y %H:%M", +] + +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..f7efb3ef08bb8f5976b7b0dc0d30430310c1a43f GIT binary patch literal 18840 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po new file mode 100644 index 0000000..bd0a904 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/es_VE/LC_MESSAGES/django.po @@ -0,0 +1,1260 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Claude Paroz , 2020 +# Eduardo , 2017 +# Leonardo J. Caballero G. , 2016 +# Sebastián Magrí, 2011 +# Yoel Acevedo, 2017 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-14 21:42+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Spanish (Venezuela) (http://www.transifex.com/django/django/" +"language/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikáans" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azerí" + +msgid "Bulgarian" +msgstr "Búlgaro" + +msgid "Belarusian" +msgstr "Bielorruso" + +msgid "Bengali" +msgstr "Bengalí" + +msgid "Breton" +msgstr "Bretón" + +msgid "Bosnian" +msgstr "Bosnio" + +msgid "Catalan" +msgstr "Catalán" + +msgid "Czech" +msgstr "Checo" + +msgid "Welsh" +msgstr "Galés" + +msgid "Danish" +msgstr "Danés" + +msgid "German" +msgstr "Alemán" + +msgid "Lower Sorbian" +msgstr "Sorbio Inferior" + +msgid "Greek" +msgstr "Griego" + +msgid "English" +msgstr "Inglés" + +msgid "Australian English" +msgstr "Inglés Australiano" + +msgid "British English" +msgstr "Inglés Británico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Español" + +msgid "Argentinian Spanish" +msgstr "Español de Argentina" + +msgid "Colombian Spanish" +msgstr "Español de Colombia" + +msgid "Mexican Spanish" +msgstr "Español de México" + +msgid "Nicaraguan Spanish" +msgstr "Español de Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Español de Venezuela" + +msgid "Estonian" +msgstr "Estonio" + +msgid "Basque" +msgstr "Vazco" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finlandés" + +msgid "French" +msgstr "Francés" + +msgid "Frisian" +msgstr "Frisio" + +msgid "Irish" +msgstr "Irlandés" + +msgid "Scottish Gaelic" +msgstr "Gaélico Escocés" + +msgid "Galician" +msgstr "Galés" + +msgid "Hebrew" +msgstr "Hebreo" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "Sorbio Superior" + +msgid "Hungarian" +msgstr "Húngaro" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesio" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandés" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Japonés" + +msgid "Georgian" +msgstr "Georgiano" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Kazajo" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Canarés" + +msgid "Korean" +msgstr "Coreano" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Luxenburgués" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Latvio" + +msgid "Macedonian" +msgstr "Macedonio" + +msgid "Malayalam" +msgstr "Malayala" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "Maratí" + +msgid "Burmese" +msgstr "Birmano" + +msgid "Norwegian Bokmål" +msgstr "Noruego" + +msgid "Nepali" +msgstr "Nepalí" + +msgid "Dutch" +msgstr "Holandés" + +msgid "Norwegian Nynorsk" +msgstr "Nynorsk" + +msgid "Ossetic" +msgstr "Osetio" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polaco" + +msgid "Portuguese" +msgstr "Portugués" + +msgid "Brazilian Portuguese" +msgstr "Portugués de Brasil" + +msgid "Romanian" +msgstr "Ruman" + +msgid "Russian" +msgstr "Ruso" + +msgid "Slovak" +msgstr "Eslovaco" + +msgid "Slovenian" +msgstr "Eslovenio" + +msgid "Albanian" +msgstr "Albano" + +msgid "Serbian" +msgstr "Serbi" + +msgid "Serbian Latin" +msgstr "Latín Serbio" + +msgid "Swedish" +msgstr "Sueco" + +msgid "Swahili" +msgstr "Suajili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tailandés" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tártaro" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "Ucranio" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chino simplificado" + +msgid "Traditional Chinese" +msgstr "Chino tradicional" + +msgid "Messages" +msgstr "Mensajes" + +msgid "Site Maps" +msgstr "Mapas del sitio" + +msgid "Static Files" +msgstr "Archivos estáticos" + +msgid "Syndication" +msgstr "Sindicación" + +msgid "That page number is not an integer" +msgstr "Ese número de página no es un número entero" + +msgid "That page number is less than 1" +msgstr "Ese número de página es menor que 1" + +msgid "That page contains no results" +msgstr "Esa página no contiene resultados" + +msgid "Enter a valid value." +msgstr "Introduzca un valor válido." + +msgid "Enter a valid URL." +msgstr "Introduzca una URL válida." + +msgid "Enter a valid integer." +msgstr "Ingrese un valor válido." + +msgid "Enter a valid email address." +msgstr "Ingrese una dirección de correo electrónico válida." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Introduzca una dirección IPv4 válida." + +msgid "Enter a valid IPv6 address." +msgstr "Ingrese una dirección IPv6 válida." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Ingrese una dirección IPv4 o IPv6 válida." + +msgid "Enter only digits separated by commas." +msgstr "Introduzca solo dígitos separados por comas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Asegúrese de que este valor %(limit_value)s (ahora es %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor es menor o igual que %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Asegúrese de que este valor es mayor o igual que %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d carácter " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como mínimo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d carácter " +"(tiene %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " +"(tiene %(show_value)d)." + +msgid "Enter a number." +msgstr "Introduzca un número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asegúrese de que no hayan más de %(max)s dígito en total." +msgstr[1] "Asegúrese de que no hayan más de %(max)s dígitos en total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Asegúrese de que no hayan más de %(max)s decimal." +msgstr[1] "Asegúrese de que no hayan más de %(max)s decimales." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Asegúrese de que no hayan más de %(max)s dígito antes del punto decimal." +msgstr[1] "" +"Asegúrese de que no hayan más de %(max)s dígitos antes del punto decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "y" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s con este %(field_labels)s ya existe." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Valor %(value)r no es una opción válida." + +msgid "This field cannot be null." +msgstr "Este campo no puede ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo no puede estar en blanco." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s con esta %(field_label)s ya existe." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s debe ser único para %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Tipo de campo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Booleano (Verdadero o Falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadena (máximo %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Enteros separados por comas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Fecha (sin hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Fecha (con hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Duración" + +msgid "Email address" +msgstr "Dirección de correo electrónico" + +msgid "File path" +msgstr "Ruta de archivo" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Número de punto flotante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Entero" + +msgid "Big (8 byte) integer" +msgstr "Entero grande (8 bytes)" + +msgid "IPv4 address" +msgstr "Dirección IPv4" + +msgid "IP address" +msgstr "Dirección IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (Verdadero, Falso o Nulo)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Entero positivo" + +msgid "Positive small integer" +msgstr "Entero positivo pequeño" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (hasta %(max_length)s)" + +msgid "Small integer" +msgstr "Entero pequeño" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datos de binarios brutos" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Archivo" + +msgid "Image" +msgstr "Imagen" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "la instancia del %(model)s con %(field)s %(value)r no existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clave foránea (tipo determinado por el campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relación uno a uno" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relación %(from)s - %(to)s " + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relaciones %(from)s - %(to)s" + +msgid "Many-to-many relationship" +msgstr "Relación muchos a muchos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Este campo es obligatorio." + +msgid "Enter a whole number." +msgstr "Introduzca un número completo." + +msgid "Enter a valid date." +msgstr "Introduzca una fecha válida." + +msgid "Enter a valid time." +msgstr "Introduzca una hora válida." + +msgid "Enter a valid date/time." +msgstr "Introduzca una hora y fecha válida." + +msgid "Enter a valid duration." +msgstr "Ingrese una duración válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"No se envió archivo alguno. Revise el tipo de codificación del formulario." + +msgid "No file was submitted." +msgstr "No se envió ningún archivo." + +msgid "The submitted file is empty." +msgstr "El archivo enviado está vacío." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d carácter " +"(tiene %(length)d)." +msgstr[1] "" +"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracteres " +"(tiene %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Por favor provea un archivo o active el selector de limpiar, no ambos." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Envíe una imagen válida. El fichero que ha enviado no era una imagen o se " +"trataba de una imagen corrupta." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Escoja una opción válida. %(value)s no es una de las opciones disponibles." + +msgid "Enter a list of values." +msgstr "Ingrese una lista de valores." + +msgid "Enter a complete value." +msgstr "Ingrese un valor completo." + +msgid "Enter a valid UUID." +msgstr "Ingrese un UUID válido." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "Los datos de ManagementForm faltan o han sido manipulados" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Por favor, envíe %d o un menor número de formularios." +msgstr[1] "Por favor, envíe %d o un menor número de formularios." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "Por favor, envíe %d o más formularios." +msgstr[1] "Por favor, envíe %d o más formularios." + +msgid "Order" +msgstr "Orden" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor, corrija el dato duplicado para %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor, corrija el dato duplicado para %(field)s, este debe ser único." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor, corrija los datos duplicados para %(field_name)s este debe ser " +"único para %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Por favor, corrija los valores duplicados abajo." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Escoja una opción válida. Esa opción no está entre las opciones disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Limpiar" + +msgid "Currently" +msgstr "Actualmente" + +msgid "Change" +msgstr "Cambiar" + +msgid "Unknown" +msgstr "Desconocido" + +msgid "Yes" +msgstr "Sí" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "sí,no,quizás" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "medianoche" + +msgid "noon" +msgstr "mediodía" + +msgid "Monday" +msgstr "Lunes" + +msgid "Tuesday" +msgstr "Martes" + +msgid "Wednesday" +msgstr "Miércoles" + +msgid "Thursday" +msgstr "Jueves" + +msgid "Friday" +msgstr "Viernes" + +msgid "Saturday" +msgstr "Sábado" + +msgid "Sunday" +msgstr "Domingo" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mié" + +msgid "Thu" +msgstr "Jue" + +msgid "Fri" +msgstr "Vie" + +msgid "Sat" +msgstr "Sáb" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "Enero" + +msgid "February" +msgstr "Febrero" + +msgid "March" +msgstr "Marzo" + +msgid "April" +msgstr "Abril" + +msgid "May" +msgstr "Mayo" + +msgid "June" +msgstr "Junio" + +msgid "July" +msgstr "Julio" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Septiembre" + +msgid "October" +msgstr "Octubre" + +msgid "November" +msgstr "Noviembre" + +msgid "December" +msgstr "Diciembre" + +msgid "jan" +msgstr "ene" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dic" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ene." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marzo" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mayo" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junio" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sep." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dic." + +msgctxt "alt. month" +msgid "January" +msgstr "Enero" + +msgctxt "alt. month" +msgid "February" +msgstr "Febrero" + +msgctxt "alt. month" +msgid "March" +msgstr "Marzo" + +msgctxt "alt. month" +msgid "April" +msgstr "Abril" + +msgctxt "alt. month" +msgid "May" +msgstr "Mayo" + +msgctxt "alt. month" +msgid "June" +msgstr "Junio" + +msgctxt "alt. month" +msgid "July" +msgstr "Julio" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Septiembre" + +msgctxt "alt. month" +msgid "October" +msgstr "Octubre" + +msgctxt "alt. month" +msgid "November" +msgstr "Noviembre" + +msgctxt "alt. month" +msgid "December" +msgstr "Diciembre" + +msgid "This is not a valid IPv6 address." +msgstr "Esta no es una dirección IPv6 válida." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d año" +msgstr[1] "%d años" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d mes" +msgstr[1] "%d meses" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d semana" +msgstr[1] "%d semanas" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d día" +msgstr[1] "%d días" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d hora" +msgstr[1] "%d horas" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +msgid "Forbidden" +msgstr "Prohibido" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verificación CSRF fallida. Solicitud abortada." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Estás viendo este mensaje porqué esta web requiere una cookie CSRF cuando se " +"envían formularios. Esta cookie se necesita por razones de seguridad, para " +"asegurar que tu navegador no ha sido comprometido por terceras partes." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Se puede ver más información si se establece DEBUG=True." + +msgid "No year specified" +msgstr "No se ha indicado el año" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "No se ha indicado el mes" + +msgid "No day specified" +msgstr "No se ha indicado el día" + +msgid "No week specified" +msgstr "No se ha indicado la semana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "No %(verbose_name_plural)s disponibles" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Los futuros %(verbose_name_plural)s no están disponibles porque " +"%(class_name)s.allow_future es Falso." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "No se encontró ningún %(verbose_name)s coincidente con la consulta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Página inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Los índices de directorio no están permitidos." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índice de %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..3556bb11e870c678c1899b98c659f1e124f37ecc GIT binary patch literal 27273 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, 2011 +# Erlend Eelmets , 2020 +# Jannis Leidel , 2011 +# Janno Liivak , 2013-2015 +# madisvain , 2011 +# Martin , 2014-2015,2021-2024 +# Martin , 2016-2017,2019-2020 +# Marti Raudsepp , 2014,2016 +# Ragnar Rebase , 2019 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Martin , 2014-2015,2021-2024\n" +"Language-Team: Estonian (http://app.transifex.com/django/django/language/" +"et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "afrikaani" + +msgid "Arabic" +msgstr "araabia" + +msgid "Algerian Arabic" +msgstr "Alžeeria Araabia" + +msgid "Asturian" +msgstr "astuuria" + +msgid "Azerbaijani" +msgstr "aserbaidžaani" + +msgid "Bulgarian" +msgstr "bulgaaria" + +msgid "Belarusian" +msgstr "valgevene" + +msgid "Bengali" +msgstr "bengali" + +msgid "Breton" +msgstr "bretooni" + +msgid "Bosnian" +msgstr "bosnia" + +msgid "Catalan" +msgstr "katalaani" + +msgid "Central Kurdish (Sorani)" +msgstr "Keskkurdi keel (sorani)" + +msgid "Czech" +msgstr "tšehhi" + +msgid "Welsh" +msgstr "uelsi" + +msgid "Danish" +msgstr "taani" + +msgid "German" +msgstr "saksa" + +msgid "Lower Sorbian" +msgstr "alamsorbi" + +msgid "Greek" +msgstr "kreeka" + +msgid "English" +msgstr "inglise" + +msgid "Australian English" +msgstr "austraalia inglise" + +msgid "British English" +msgstr "briti inglise" + +msgid "Esperanto" +msgstr "esperanto" + +msgid "Spanish" +msgstr "hispaania" + +msgid "Argentinian Spanish" +msgstr "argentiina hispaani" + +msgid "Colombian Spanish" +msgstr "kolumbia hispaania" + +msgid "Mexican Spanish" +msgstr "mehhiko hispaania" + +msgid "Nicaraguan Spanish" +msgstr "nikaraagua hispaania" + +msgid "Venezuelan Spanish" +msgstr "venetsueela hispaania" + +msgid "Estonian" +msgstr "eesti" + +msgid "Basque" +msgstr "baski" + +msgid "Persian" +msgstr "pärsia" + +msgid "Finnish" +msgstr "soome" + +msgid "French" +msgstr "prantsuse" + +msgid "Frisian" +msgstr "friisi" + +msgid "Irish" +msgstr "iiri" + +msgid "Scottish Gaelic" +msgstr "šoti gaeli" + +msgid "Galician" +msgstr "galiitsia" + +msgid "Hebrew" +msgstr "heebrea" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "horvaatia" + +msgid "Upper Sorbian" +msgstr "ülemsorbi" + +msgid "Hungarian" +msgstr "ungari" + +msgid "Armenian" +msgstr "armeenia" + +msgid "Interlingua" +msgstr "interlingua" + +msgid "Indonesian" +msgstr "indoneesi" + +msgid "Igbo" +msgstr "ibo" + +msgid "Ido" +msgstr "ido" + +msgid "Icelandic" +msgstr "islandi" + +msgid "Italian" +msgstr "itaalia" + +msgid "Japanese" +msgstr "jaapani" + +msgid "Georgian" +msgstr "gruusia" + +msgid "Kabyle" +msgstr "Kabiili" + +msgid "Kazakh" +msgstr "kasahhi" + +msgid "Khmer" +msgstr "khmeri" + +msgid "Kannada" +msgstr "kannada" + +msgid "Korean" +msgstr "korea" + +msgid "Kyrgyz" +msgstr "kirgiisi" + +msgid "Luxembourgish" +msgstr "letseburgi" + +msgid "Lithuanian" +msgstr "leedu" + +msgid "Latvian" +msgstr "läti" + +msgid "Macedonian" +msgstr "makedoonia" + +msgid "Malayalam" +msgstr "malaia" + +msgid "Mongolian" +msgstr "mongoolia" + +msgid "Marathi" +msgstr "marathi" + +msgid "Malay" +msgstr "malai" + +msgid "Burmese" +msgstr "birma" + +msgid "Norwegian Bokmål" +msgstr "norra bokmål" + +msgid "Nepali" +msgstr "nepali" + +msgid "Dutch" +msgstr "hollandi" + +msgid "Norwegian Nynorsk" +msgstr "norra (nynorsk)" + +msgid "Ossetic" +msgstr "osseetia" + +msgid "Punjabi" +msgstr "pandžab" + +msgid "Polish" +msgstr "poola" + +msgid "Portuguese" +msgstr "portugali" + +msgid "Brazilian Portuguese" +msgstr "brasiilia portugali" + +msgid "Romanian" +msgstr "rumeenia" + +msgid "Russian" +msgstr "vene" + +msgid "Slovak" +msgstr "slovaki" + +msgid "Slovenian" +msgstr "sloveeni" + +msgid "Albanian" +msgstr "albaania" + +msgid "Serbian" +msgstr "serbia" + +msgid "Serbian Latin" +msgstr "serbia (ladina)" + +msgid "Swedish" +msgstr "rootsi" + +msgid "Swahili" +msgstr "suahiili" + +msgid "Tamil" +msgstr "tamiili" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "tadžiki" + +msgid "Thai" +msgstr "tai" + +msgid "Turkmen" +msgstr "türkmeeni" + +msgid "Turkish" +msgstr "türgi" + +msgid "Tatar" +msgstr "tatari" + +msgid "Udmurt" +msgstr "udmurdi" + +msgid "Uyghur" +msgstr "Uiguuri" + +msgid "Ukrainian" +msgstr "ukrania" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "Usbeki" + +msgid "Vietnamese" +msgstr "vietnami" + +msgid "Simplified Chinese" +msgstr "lihtsustatud hiina" + +msgid "Traditional Chinese" +msgstr "traditsiooniline hiina" + +msgid "Messages" +msgstr "Sõnumid" + +msgid "Site Maps" +msgstr "Saidikaardid" + +msgid "Static Files" +msgstr "Staatilised failid" + +msgid "Syndication" +msgstr "Sündikeerimine" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "See lehe number ei ole täisarv" + +msgid "That page number is less than 1" +msgstr "See lehe number on väiksem kui 1" + +msgid "That page contains no results" +msgstr "See leht ei sisalda tulemusi" + +msgid "Enter a valid value." +msgstr "Sisestage korrektne väärtus." + +msgid "Enter a valid domain name." +msgstr "Sisestage korrektne domeeninimi." + +msgid "Enter a valid URL." +msgstr "Sisestage korrektne URL." + +msgid "Enter a valid integer." +msgstr "Sisestage korrektne täisarv." + +msgid "Enter a valid email address." +msgstr "Sisestage korrektne e-posti aadress." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Sisestage korrektne “nälk”, mis koosneb tähtedest, numbritest, " +"alakriipsudest või sidekriipsudest." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Sisestage korrektne “nälk”, mis koosneb Unicode tähtedest, numbritest, ala- " +"või sidekriipsudest." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Sisestage korrektne %(protocol)s aadress." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 või IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Sisestage ainult komaga eraldatud numbreid." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Veendu, et see väärtus on %(limit_value)s (hetkel on %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Veendu, et see väärtus on väiksem või võrdne kui %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Veendu, et see väärtus on suurem või võrdne kui %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Veendu, et see väärtus on arvu %(limit_value)s kordne." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Väärtuses peab olema vähemalt %(limit_value)d tähemärk (praegu on " +"%(show_value)d)." +msgstr[1] "" +"Väärtuses peab olema vähemalt %(limit_value)d tähemärki (praegu on " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Väärtuses võib olla kõige rohkem %(limit_value)d tähemärk (praegu on " +"%(show_value)d)." +msgstr[1] "" +"Väärtuses võib olla kõige rohkem %(limit_value)d tähemärki (praegu on " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Sisestage arv." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Veenduge, et kogu numbrikohtade arv ei oleks suurem kui %(max)s." +msgstr[1] "Veenduge, et kogu numbrikohtade arv ei oleks suurem kui %(max)s." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Veenduge, et komakohtade arv ei oleks suurem kui %(max)s." +msgstr[1] "Veenduge, et komakohtade arv ei oleks suurem kui %(max)s." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Veenduge, et komast vasakul olevaid numbreid ei oleks rohkem kui %(max)s." +msgstr[1] "" +"Veenduge, et komast vasakul olevaid numbreid ei oleks rohkem kui %(max)s." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Faililaiend “%(extension)s” pole lubatud. Lubatud laiendid on: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Tühjad tähemärgid ei ole lubatud." + +msgid "and" +msgstr "ja" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s väljaga %(field_labels)s on juba olemas." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Kitsendust “%(name)s” on rikutud." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Väärtus %(value)r ei ole kehtiv valik." + +msgid "This field cannot be null." +msgstr "See lahter ei tohi olla tühi." + +msgid "This field cannot be blank." +msgstr "See väli ei saa olla tühi." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Sellise %(field_label)s-väljaga %(model_name)s on juba olemas." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s peab olema unikaalne %(date_field_label)s %(lookup_type)s " +"suhtes." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Lahter tüüpi: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” väärtus peab olema Tõene või Väär." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” väärtus peab olema Tõene, Väär või Tühi." + +msgid "Boolean (Either True or False)" +msgstr "Tõeväärtus (Kas tõene või väär)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (kuni %(max_length)s märki)" + +msgid "String (unlimited)" +msgstr "String (piiramatu)" + +msgid "Comma-separated integers" +msgstr "Komaga eraldatud täisarvud" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” väärtusel on vale kuupäevaformaat. See peab olema kujul AAAA-KK-" +"PP." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” väärtusel on õige formaat (AAAA-KK-PP), kuid kuupäev on vale." + +msgid "Date (without time)" +msgstr "Kuupäev (kellaajata)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” väärtusel on vale formaat. Peab olema formaadis AAAA-KK-PP HH:" +"MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” väärtusel on õige formaat (AAAA-KK-PP HH:MM[:ss[.uuuuuu]][TZ]), " +"kuid kuupäev/kellaaeg on vale." + +msgid "Date (with time)" +msgstr "Kuupäev (kellaajaga)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” väärtus peab olema kümnendarv." + +msgid "Decimal number" +msgstr "Kümnendmurd" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” väärtusel on vale formaat. Peab olema formaadis [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Kestus" + +msgid "Email address" +msgstr "E-posti aadress" + +msgid "File path" +msgstr "Faili asukoht" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” väärtus peab olema ujukomaarv." + +msgid "Floating point number" +msgstr "Ujukomaarv" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” väärtus peab olema täisarv." + +msgid "Integer" +msgstr "Täisarv" + +msgid "Big (8 byte) integer" +msgstr "Suur (8 baiti) täisarv" + +msgid "Small integer" +msgstr "Väike täisarv" + +msgid "IPv4 address" +msgstr "IPv4 aadress" + +msgid "IP address" +msgstr "IP aadress" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” väärtus peab olema kas Tühi, Tõene või Väär." + +msgid "Boolean (Either True, False or None)" +msgstr "Tõeväärtus (Kas tõene, väär või tühi)" + +msgid "Positive big integer" +msgstr "Positiivne suur täisarv" + +msgid "Positive integer" +msgstr "Positiivne täisarv" + +msgid "Positive small integer" +msgstr "Positiivne väikene täisarv" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Nälk (kuni %(max_length)s märki)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” väärtusel on vale formaat. Peab olema formaadis HH:MM[:ss[." +"uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” väärtusel on õige formaat (HH:MM[:ss[.uuuuuu]]), kuid kellaaeg " +"on vale." + +msgid "Time" +msgstr "Aeg" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Töötlemata binaarandmed" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” ei ole korrektne UUID." + +msgid "Universally unique identifier" +msgstr "Universaalne unikaalne identifikaator" + +msgid "File" +msgstr "Fail" + +msgid "Image" +msgstr "Pilt" + +msgid "A JSON object" +msgstr "JSON objekt" + +msgid "Value must be valid JSON." +msgstr "Väärtus peab olema korrektne JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s isendit %(field)s %(value)r ei leidu." + +msgid "Foreign Key (type determined by related field)" +msgstr "Välisvõti (tüübi määrab seotud väli) " + +msgid "One-to-one relationship" +msgstr "Üks-ühele seos" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s seos" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s seosed" + +msgid "Many-to-many relationship" +msgstr "Mitu-mitmele seos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "See lahter on nõutav." + +msgid "Enter a whole number." +msgstr "Sisestage täisarv." + +msgid "Enter a valid date." +msgstr "Sisestage korrektne kuupäev." + +msgid "Enter a valid time." +msgstr "Sisestage korrektne kellaaeg." + +msgid "Enter a valid date/time." +msgstr "Sisestage korrektne kuupäev ja kellaaeg." + +msgid "Enter a valid duration." +msgstr "Sisestage korrektne kestus." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Päevade arv peab jääma vahemikku {min_days} kuni {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ühtegi faili ei saadetud. Kontrollige vormi kodeeringutüüpi." + +msgid "No file was submitted." +msgstr "Ühtegi faili ei saadetud." + +msgid "The submitted file is empty." +msgstr "Saadetud fail on tühi." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Veenduge, et faili nimes poleks rohkem kui %(max)d märk (praegu on " +"%(length)d)." +msgstr[1] "" +"Veenduge, et faili nimes poleks rohkem kui %(max)d märki (praegu on " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Palun laadige fail või märgistage 'tühjenda' kast, mitte mõlemat." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Laadige korrektne pilt. Fail, mille laadisite, ei olnud kas pilt või oli " +"fail vigane." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Valige korrektne väärtus. %(value)s ei ole valitav." + +msgid "Enter a list of values." +msgstr "Sisestage väärtuste nimekiri." + +msgid "Enter a complete value." +msgstr "Sisestage täielik väärtus." + +msgid "Enter a valid UUID." +msgstr "Sisestage korrektne UUID." + +msgid "Enter a valid JSON." +msgstr "Sisestage korrektne JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Peidetud väli %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Palun kinnitage kõige rohkem %(num)d vormi." +msgstr[1] "Palun kinnitage kõige rohkem %(num)d vormi." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Palun kinnitage vähemalt %(num)d vormi." +msgstr[1] "Palun kinnitage vähemalt %(num)d vormi." + +msgid "Order" +msgstr "Järjestus" + +msgid "Delete" +msgstr "Kustuta" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Palun parandage duplikaat-andmed lahtris %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Palun parandage duplikaat-andmed lahtris %(field)s, mis peab olema unikaalne." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Palun parandage allolevad duplikaat-väärtused" + +msgid "The inline value did not match the parent instance." +msgstr "Pesastatud väärtus ei sobi ülemobjektiga." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Valige korrektne väärtus. Valitud väärtus ei ole valitav." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” ei ole korrektne väärtus." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s ei saanud tõlgendada ajavööndis %(current_timezone)s; see on " +"kas mitmetähenduslik või seda ei eksisteeri." + +msgid "Clear" +msgstr "Tühjenda" + +msgid "Currently" +msgstr "Hetkel" + +msgid "Change" +msgstr "Muuda" + +msgid "Unknown" +msgstr "Tundmatu" + +msgid "Yes" +msgstr "Jah" + +msgid "No" +msgstr "Ei" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "jah,ei,võib-olla" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bait" +msgstr[1] "%(size)d baiti" + +#, python-format +msgid "%s KB" +msgstr "%s kB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.l." + +msgid "a.m." +msgstr "e.l." + +msgid "PM" +msgstr "PL" + +msgid "AM" +msgstr "EL" + +msgid "midnight" +msgstr "südaöö" + +msgid "noon" +msgstr "keskpäev" + +msgid "Monday" +msgstr "esmaspäev" + +msgid "Tuesday" +msgstr "teisipäev" + +msgid "Wednesday" +msgstr "kolmapäev" + +msgid "Thursday" +msgstr "neljapäev" + +msgid "Friday" +msgstr "reede" + +msgid "Saturday" +msgstr "laupäev" + +msgid "Sunday" +msgstr "pühapäev" + +msgid "Mon" +msgstr "esmasp." + +msgid "Tue" +msgstr "teisip." + +msgid "Wed" +msgstr "kolmap." + +msgid "Thu" +msgstr "neljap." + +msgid "Fri" +msgstr "reede" + +msgid "Sat" +msgstr "laup." + +msgid "Sun" +msgstr "pühap." + +msgid "January" +msgstr "jaanuar" + +msgid "February" +msgstr "veebruar" + +msgid "March" +msgstr "märts" + +msgid "April" +msgstr "aprill" + +msgid "May" +msgstr "mai" + +msgid "June" +msgstr "juuni" + +msgid "July" +msgstr "juuli" + +msgid "August" +msgstr "august" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktoober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "detsember" + +msgid "jan" +msgstr "jaan" + +msgid "feb" +msgstr "veeb" + +msgid "mar" +msgstr "märts" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sept" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dets" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jaan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "veeb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mär." + +msgctxt "abbrev. month" +msgid "April" +msgstr "apr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "mai" + +msgctxt "abbrev. month" +msgid "June" +msgstr "juuni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "juuli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dets." + +msgctxt "alt. month" +msgid "January" +msgstr "jaanuar" + +msgctxt "alt. month" +msgid "February" +msgstr "veebruar" + +msgctxt "alt. month" +msgid "March" +msgstr "märts" + +msgctxt "alt. month" +msgid "April" +msgstr "aprill" + +msgctxt "alt. month" +msgid "May" +msgstr "mai" + +msgctxt "alt. month" +msgid "June" +msgstr "juuni" + +msgctxt "alt. month" +msgid "July" +msgstr "juuli" + +msgctxt "alt. month" +msgid "August" +msgstr "august" + +msgctxt "alt. month" +msgid "September" +msgstr "september" + +msgctxt "alt. month" +msgid "October" +msgstr "oktoober" + +msgctxt "alt. month" +msgid "November" +msgstr "november" + +msgctxt "alt. month" +msgid "December" +msgstr "detsember" + +msgid "This is not a valid IPv6 address." +msgstr "See ei ole korrektne IPv6 aadress." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "või" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d aasta" +msgstr[1] "%(num)d aastat" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d kuu" +msgstr[1] "%(num)d kuud" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d nädal" +msgstr[1] "%(num)d nädalat" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d päev" +msgstr[1] "%(num)d päeva" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d tund" +msgstr[1] "%(num)d tundi" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minut" +msgstr[1] "%(num)d minutit" + +msgid "Forbidden" +msgstr "Keelatud" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF verifitseerimine ebaõnnestus. Päring katkestati." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Näete seda sõnumit, kuna käesolev HTTPS leht nõuab “Viitaja päise” saatmist " +"teie brauserile, kuid seda ei saadetud. Seda päist on vaja " +"turvakaalutlustel, kindlustamaks et teie brauserit ei ole kolmandate " +"osapoolte poolt üle võetud." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Kui olete oma brauseri seadistustes välja lülitanud “Viitaja” päised siis " +"lülitage need taas sisse vähemalt antud lehe jaoks või HTTPS üheduste jaoks " +"või “sama-allika” päringute jaoks." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Kui kasutate silti või " +"saadate päist “Referrer-Policy: no-referrer”, siis palun eemaldage need. " +"CSRF kaitse vajab range viitaja kontrolliks päist “Referer”. Kui privaatsus " +"on probleemiks, kasutage alternatiive nagu " +"linkidele, mis viivad kolmandate poolte lehtedele." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Näete seda teadet, kuna see leht vajab CSRF küpsist vormide postitamiseks. " +"Seda küpsist on vaja turvakaalutlustel, kindlustamaks et teie brauserit ei " +"ole kolmandate osapoolte poolt üle võetud." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Kui olete oma brauseris küpsised keelanud, siis palun lubage need vähemalt " +"selle lehe jaoks või “sama-allika” päringute jaoks." + +msgid "More information is available with DEBUG=True." +msgstr "Saadaval on rohkem infot kasutades DEBUG=True" + +msgid "No year specified" +msgstr "Aasta on valimata" + +msgid "Date out of range" +msgstr "Kuupäev vahemikust väljas" + +msgid "No month specified" +msgstr "Kuu on valimata" + +msgid "No day specified" +msgstr "Päev on valimata" + +msgid "No week specified" +msgstr "Nädal on valimata" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ei leitud %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Tulevane %(verbose_name_plural)s pole saadaval, sest %(class_name)s." +"allow_future on False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Vigane kuupäeva sõne “%(datestr)s” lähtudes formaadist “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Päringule vastavat %(verbose_name)s ei leitud" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Lehekülg pole “viimane” ja ei saa teda konvertida täisarvuks." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Vigane leht (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tühi list ja “%(class_name)s.allow_empty” on Väär." + +msgid "Directory indexes are not allowed here." +msgstr "Kausta sisuloendid ei ole siin lubatud." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” ei eksisteeri" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s sisuloend" + +msgid "The install worked successfully! Congratulations!" +msgstr "Paigaldamine õnnestus! Palju õnne!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Vaata release notes Djangole %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Näete seda lehte, kuna teil on määratud DEBUG=True Django seadete failis ja te ei ole ühtki " +"URLi seadistanud." + +msgid "Django Documentation" +msgstr "Django dokumentatsioon" + +msgid "Topics, references, & how-to’s" +msgstr "Teemad, viited, & õpetused" + +msgid "Tutorial: A Polling App" +msgstr "Õpetus: Küsitlusrakendus" + +msgid "Get started with Django" +msgstr "Alusta Djangoga" + +msgid "Django Community" +msgstr "Django Kogukond" + +msgid "Connect, get help, or contribute" +msgstr "Suhelge, küsige abi või panustage" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/et/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/et/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/et/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a7af7c69182a22a06bf2ad9188d1649eda2c322f GIT binary patch literal 193 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 Cy#*)$ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po new file mode 100644 index 0000000..f3e91a8 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po @@ -0,0 +1,1313 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Aitzol Naberan , 2013,2016 +# Ander Martinez , 2013-2014 +# Eneko Illarramendi , 2017-2019,2021-2022,2024 +# Jannis Leidel , 2011 +# jazpillaga , 2011 +# julen, 2011-2012 +# julen, 2013,2015 +# Mikel Maldonado , 2021 +# totorika93 , 2012 +# 67feb0cba3962a6c9f09eb0e43697461_528661a , 2013 +# Urtzi Odriozola , 2017 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Eneko Illarramendi , " +"2017-2019,2021-2022,2024\n" +"Language-Team: Basque (http://app.transifex.com/django/django/language/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabiera" + +msgid "Algerian Arabic" +msgstr "Algeriar Arabiera" + +msgid "Asturian" +msgstr "Asturiera" + +msgid "Azerbaijani" +msgstr "Azerbaijanera" + +msgid "Bulgarian" +msgstr "Bulgariera" + +msgid "Belarusian" +msgstr "Bielorrusiera" + +msgid "Bengali" +msgstr "Bengalera" + +msgid "Breton" +msgstr "Bretoia" + +msgid "Bosnian" +msgstr "Bosniera" + +msgid "Catalan" +msgstr "Katalana" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "Txekiera" + +msgid "Welsh" +msgstr "Galesa" + +msgid "Danish" +msgstr "Daniera" + +msgid "German" +msgstr "Alemana" + +msgid "Lower Sorbian" +msgstr "Behe-sorbiera" + +msgid "Greek" +msgstr "Greziera" + +msgid "English" +msgstr "Ingelesa" + +msgid "Australian English" +msgstr "Australiar ingelesa" + +msgid "British English" +msgstr "Ingelesa" + +msgid "Esperanto" +msgstr "Esperantoa" + +msgid "Spanish" +msgstr "Gaztelania" + +msgid "Argentinian Spanish" +msgstr "Gaztelania (Argentina)" + +msgid "Colombian Spanish" +msgstr "Gaztelania (Kolonbia)" + +msgid "Mexican Spanish" +msgstr "Gaztelania (Mexiko)" + +msgid "Nicaraguan Spanish" +msgstr "Gaztelania (Nikaragua)" + +msgid "Venezuelan Spanish" +msgstr "Gaztelania (Venezuela)" + +msgid "Estonian" +msgstr "Estoniera" + +msgid "Basque" +msgstr "Euskara" + +msgid "Persian" +msgstr "Persiera" + +msgid "Finnish" +msgstr "Finlandiera" + +msgid "French" +msgstr "Frantsesa" + +msgid "Frisian" +msgstr "Frisiera" + +msgid "Irish" +msgstr "Irlandako gaelikoa" + +msgid "Scottish Gaelic" +msgstr "Eskoziako gaelikoa" + +msgid "Galician" +msgstr "Galiziera" + +msgid "Hebrew" +msgstr "Hebreera" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroaziera" + +msgid "Upper Sorbian" +msgstr "Goi-sorbiera" + +msgid "Hungarian" +msgstr "Hungariera" + +msgid "Armenian" +msgstr "Armeniera" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesiera" + +msgid "Igbo" +msgstr "Igboera" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandiera" + +msgid "Italian" +msgstr "Italiera" + +msgid "Japanese" +msgstr "Japoniera" + +msgid "Georgian" +msgstr "Georgiera" + +msgid "Kabyle" +msgstr "Kabylera" + +msgid "Kazakh" +msgstr "Kazakhera" + +msgid "Khmer" +msgstr "Khmerera" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreera" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Luxenburgera" + +msgid "Lithuanian" +msgstr "Lituaniera" + +msgid "Latvian" +msgstr "Letoniera" + +msgid "Macedonian" +msgstr "Mazedoniera" + +msgid "Malayalam" +msgstr "Malabarera" + +msgid "Mongolian" +msgstr "Mongoliera" + +msgid "Marathi" +msgstr "Marathera" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Birmaniera" + +msgid "Norwegian Bokmål" +msgstr "Bokmåla (Norvegia)" + +msgid "Nepali" +msgstr "Nepalera" + +msgid "Dutch" +msgstr "Nederlandera" + +msgid "Norwegian Nynorsk" +msgstr "Nynorsk (Norvegia)" + +msgid "Ossetic" +msgstr "Osetiera" + +msgid "Punjabi" +msgstr "Punjabera" + +msgid "Polish" +msgstr "Poloniera" + +msgid "Portuguese" +msgstr "Portugesa" + +msgid "Brazilian Portuguese" +msgstr "Portugesa (Brazil)" + +msgid "Romanian" +msgstr "Errumaniera" + +msgid "Russian" +msgstr "Errusiera" + +msgid "Slovak" +msgstr "Eslovakiera" + +msgid "Slovenian" +msgstr "Esloveniera" + +msgid "Albanian" +msgstr "Albaniera" + +msgid "Serbian" +msgstr "Serbiera" + +msgid "Serbian Latin" +msgstr "Serbiera" + +msgid "Swedish" +msgstr "Suediera" + +msgid "Swahili" +msgstr "Swahilia" + +msgid "Tamil" +msgstr "Tamilera" + +msgid "Telugu" +msgstr "Telugua" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Thailandiera" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turkiera" + +msgid "Tatar" +msgstr "Tatarera" + +msgid "Udmurt" +msgstr "Udmurtera" + +msgid "Uyghur" +msgstr "" + +msgid "Ukrainian" +msgstr "Ukrainera" + +msgid "Urdu" +msgstr "Urdua" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamera" + +msgid "Simplified Chinese" +msgstr "Txinera (sinpletua)" + +msgid "Traditional Chinese" +msgstr "Txinera (tradizionala)" + +msgid "Messages" +msgstr "Mezuak" + +msgid "Site Maps" +msgstr "Sitemap-ak" + +msgid "Static Files" +msgstr "Fitxategi estatikoak" + +msgid "Syndication" +msgstr "Sindikazioa" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Orrialde hori ez da zenbaki bat" + +msgid "That page number is less than 1" +msgstr "Orrialde zenbaki hori 1 baino txikiagoa da" + +msgid "That page contains no results" +msgstr "Orrialde horrek ez du emaitzarik" + +msgid "Enter a valid value." +msgstr "Idatzi baleko balio bat." + +msgid "Enter a valid domain name." +msgstr "" + +msgid "Enter a valid URL." +msgstr "Idatzi baleko URL bat." + +msgid "Enter a valid integer." +msgstr "Idatzi baleko zenbaki bat." + +msgid "Enter a valid email address." +msgstr "Idatzi baleko helbide elektroniko bat." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "" + +msgid "IPv4" +msgstr "" + +msgid "IPv6" +msgstr "" + +msgid "IPv4 or IPv6" +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "Idatzi komaz bereizitako digitoak soilik." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Ziurtatu balio hau gutxienez %(limit_value)s dela (orain %(show_value)s da)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Ziurtatu balio hau %(limit_value)s baino txikiagoa edo berdina dela." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Ziurtatu balio hau %(limit_value)s baino handiagoa edo berdina dela." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ziurtatu balio honek gutxienez karaktere %(limit_value)d duela " +"(%(show_value)d ditu)." +msgstr[1] "" +"Ziurtatu balio honek gutxienez %(limit_value)d karaktere dituela " +"(%(show_value)d ditu)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ziurtatu balio honek gehienez karaktere %(limit_value)d duela " +"(%(show_value)d ditu)." +msgstr[1] "" +"Ziurtatu balio honek gehienez %(limit_value)d karaktere dituela " +"(%(show_value)d ditu)." + +msgid "Enter a number." +msgstr "Idatzi zenbaki bat." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Ziurtatu digitu %(max)s baino gehiago ez dagoela guztira." +msgstr[1] "Ziurtatu %(max)s digitu baino gehiago ez dagoela guztira." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Ziurtatu ez dagoela digitu %(max)s baino gehiago komaren atzetik." +msgstr[1] "Ziurtatu ez dagoela %(max)s digitu baino gehiago komaren atzetik." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Ziurtatu ez dagoela digitu %(max)s baino gehiago komaren aurretik." +msgstr[1] "Ziurtatu ez dagoela %(max)s digitu baino gehiago komaren aurretik." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Null karaktereak ez daude baimenduta." + +msgid "and" +msgstr "eta" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(field_labels)s hauek dauzkan %(model_name)s dagoeneko existitzen da." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r balioa ez da baleko aukera bat." + +msgid "This field cannot be null." +msgstr "Eremu hau ezin daiteke hutsa izan (null)." + +msgid "This field cannot be blank." +msgstr "Eremu honek ezin du hutsik egon." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(field_label)s hori daukan %(model_name)s dagoeneko existitzen da." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Eremuaren mota: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "\"%(value)s\" blioa True edo False izan behar da." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "\"%(value)s\" balioa, True, False edo None izan behar da." + +msgid "Boolean (Either True or False)" +msgstr "Boolearra (True edo False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String-a (%(max_length)s gehienez)" + +msgid "String (unlimited)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "Komaz bereiztutako zenbaki osoak" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"\"%(value)s\" balioa data formatu okerra dauka. UUUU-HH-EE formatua izan " +"behar da." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"\"%(value)s\" balioa formatu egokia dauka (UUUU-HH-EE), baina data okerra." + +msgid "Date (without time)" +msgstr "Data (ordurik gabe)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Data (orduarekin)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "\"%(value)s\" balioa zenbaki hamartarra izan behar da." + +msgid "Decimal number" +msgstr "Zenbaki hamartarra" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"\"%(value)s\" balioa formatu okerra dauka. [EE][[OO:]MM:]ss[.uuuuuu] " +"formatua izan behar du." + +msgid "Duration" +msgstr "Iraupena" + +msgid "Email address" +msgstr "Helbide elektronikoa" + +msgid "File path" +msgstr "Fitxategiaren bidea" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "\"%(value)s\" float izan behar da." + +msgid "Floating point number" +msgstr "Koma higikorreko zenbakia (float)" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "\"%(value)s\" zenbaki osoa izan behar da." + +msgid "Integer" +msgstr "Zenbaki osoa" + +msgid "Big (8 byte) integer" +msgstr "Zenbaki osoa (handia 8 byte)" + +msgid "Small integer" +msgstr "Osoko txikia" + +msgid "IPv4 address" +msgstr "IPv4 sare-helbidea" + +msgid "IP address" +msgstr "IP helbidea" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "\"%(value)s\" None, True edo False izan behar da." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolearra (True, False edo None)" + +msgid "Positive big integer" +msgstr "Zenbaki positivo osoa-handia" + +msgid "Positive integer" +msgstr "Osoko positiboa" + +msgid "Positive small integer" +msgstr "Osoko positibo txikia" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (gehienez %(max_length)s)" + +msgid "Text" +msgstr "Testua" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Ordua" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datu bitar gordinak" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "\"Universally unique identifier\"" + +msgid "File" +msgstr "Fitxategia" + +msgid "Image" +msgstr "Irudia" + +msgid "A JSON object" +msgstr "JSON objektu bat" + +msgid "Value must be valid JSON." +msgstr "Balioa baliozko JSON bat izan behar da." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" +"%(field)s %(value)r edukidun %(model)s modeloko instantziarik ez da " +"exiistitzen." + +msgid "Foreign Key (type determined by related field)" +msgstr "1-N (mota erlazionatutako eremuaren arabera)" + +msgid "One-to-one relationship" +msgstr "Bat-bat erlazioa" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s erlazioa" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s erlazioak" + +msgid "Many-to-many relationship" +msgstr "M:N erlazioa" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Eremu hau beharrezkoa da." + +msgid "Enter a whole number." +msgstr "Idatzi zenbaki oso bat." + +msgid "Enter a valid date." +msgstr "Idatzi baleko data bat." + +msgid "Enter a valid time." +msgstr "Idatzi baleko ordu bat." + +msgid "Enter a valid date/time." +msgstr "Idatzi baleko data/ordu bat." + +msgid "Enter a valid duration." +msgstr "Idatzi baleko iraupen bat." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Egun kopuruak {min_days} eta {max_days} artean egon behar du." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ez da fitxategirik bidali. Egiaztatu formularioaren kodeketa-mota." + +msgid "No file was submitted." +msgstr "Ez da fitxategirik bidali." + +msgid "The submitted file is empty." +msgstr "Bidalitako fitxategia hutsik dago." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Ziurtatu fitxategi izen honek gehienez karaktere %(max)d duela (%(length)d " +"ditu)." +msgstr[1] "" +"Ziurtatu fitxategi izen honek gehienez %(max)d karaktere dituela (%(length)d " +"ditu)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Mesedez, igo fitxategi bat edo egin klik garbitu botoian, ez biak." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Igo baleko irudi bat. Zuk igotako fitxategia ez da irudi bat edo akatsen bat " +"du." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Hautatu baleko aukera bat. %(value)s ez dago erabilgarri." + +msgid "Enter a list of values." +msgstr "Idatzi balio-zerrenda bat." + +msgid "Enter a complete value." +msgstr "Sartu balio osoa." + +msgid "Enter a valid UUID." +msgstr "Idatzi baleko UUID bat." + +msgid "Enter a valid JSON." +msgstr "Sartu baliozko JSON bat" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(%(name)s eremu ezkutua) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Ordena" + +msgid "Delete" +msgstr "Ezabatu" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Zuzendu bikoiztketa %(field)s eremuan." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Zuzendu bikoizketa %(field)s eremuan. Bakarra izan behar da." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Zuzendu bakarra izan behar den%(field_name)s eremuarentzako bikoiztutako " +"data %(lookup)s egiteko %(date_field)s eremuan" + +msgid "Please correct the duplicate values below." +msgstr "Zuzendu hurrengo balio bikoiztuak." + +msgid "The inline value did not match the parent instance." +msgstr "Barneko balioa eta gurasoaren instantzia ez datoz bat." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Hautatu aukera zuzen bat. Hautatutakoa ez da zuzena." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Garbitu" + +msgid "Currently" +msgstr "Orain" + +msgid "Change" +msgstr "Aldatu" + +msgid "Unknown" +msgstr "Ezezaguna" + +msgid "Yes" +msgstr "Bai" + +msgid "No" +msgstr "Ez" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "bai,ez,agian" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "byte %(size)d " +msgstr[1] "%(size)d byte" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "gauerdia" + +msgid "noon" +msgstr "eguerdia" + +msgid "Monday" +msgstr "astelehena" + +msgid "Tuesday" +msgstr "asteartea" + +msgid "Wednesday" +msgstr "asteazkena" + +msgid "Thursday" +msgstr "osteguna" + +msgid "Friday" +msgstr "ostirala" + +msgid "Saturday" +msgstr "larunbata" + +msgid "Sunday" +msgstr "igandea" + +msgid "Mon" +msgstr "al" + +msgid "Tue" +msgstr "ar" + +msgid "Wed" +msgstr "az" + +msgid "Thu" +msgstr "og" + +msgid "Fri" +msgstr "ol" + +msgid "Sat" +msgstr "lr" + +msgid "Sun" +msgstr "ig" + +msgid "January" +msgstr "urtarrila" + +msgid "February" +msgstr "otsaila" + +msgid "March" +msgstr "martxoa" + +msgid "April" +msgstr "apirila" + +msgid "May" +msgstr "maiatza" + +msgid "June" +msgstr "ekaina" + +msgid "July" +msgstr "uztaila" + +msgid "August" +msgstr "abuztua" + +msgid "September" +msgstr "iraila" + +msgid "October" +msgstr "urria" + +msgid "November" +msgstr "azaroa" + +msgid "December" +msgstr "abendua" + +msgid "jan" +msgstr "urt" + +msgid "feb" +msgstr "ots" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "api" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "eka" + +msgid "jul" +msgstr "uzt" + +msgid "aug" +msgstr "abu" + +msgid "sep" +msgstr "ira" + +msgid "oct" +msgstr "urr" + +msgid "nov" +msgstr "aza" + +msgid "dec" +msgstr "abe" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "urt." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ots." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mar." + +msgctxt "abbrev. month" +msgid "April" +msgstr "api." + +msgctxt "abbrev. month" +msgid "May" +msgstr "mai." + +msgctxt "abbrev. month" +msgid "June" +msgstr "eka." + +msgctxt "abbrev. month" +msgid "July" +msgstr "uzt." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "abu." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "ira." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "urr." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "aza." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "abe." + +msgctxt "alt. month" +msgid "January" +msgstr "urtarrila" + +msgctxt "alt. month" +msgid "February" +msgstr "otsaila" + +msgctxt "alt. month" +msgid "March" +msgstr "martxoa" + +msgctxt "alt. month" +msgid "April" +msgstr "apirila" + +msgctxt "alt. month" +msgid "May" +msgstr "maiatza" + +msgctxt "alt. month" +msgid "June" +msgstr "ekaina" + +msgctxt "alt. month" +msgid "July" +msgstr "uztaila" + +msgctxt "alt. month" +msgid "August" +msgstr "abuztua" + +msgctxt "alt. month" +msgid "September" +msgstr "iraila" + +msgctxt "alt. month" +msgid "October" +msgstr "urria" + +msgctxt "alt. month" +msgid "November" +msgstr "azaroa" + +msgctxt "alt. month" +msgid "December" +msgstr "abendua" + +msgid "This is not a valid IPv6 address." +msgstr "Hau ez da baleko IPv6 helbide bat." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "edo" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "urte %(num)d" +msgstr[1] "%(num)d urte" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "hilabete %(num)d" +msgstr[1] "%(num)d hilabete" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "aste %(num)d" +msgstr[1] "%(num)d aste" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "egun %(num)d" +msgstr[1] "%(num)d egun" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "ordu %(num)d" +msgstr[1] "%(num)d ordu" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "minutu %(num)d" +msgstr[1] "%(num)d minutu" + +msgid "Forbidden" +msgstr "Debekatuta" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF egiaztapenak huts egin du. Eskaera abortatu da." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Formularioa bidaltzean gune honek CSRF cookie bat behar duelako ikusten duzu " +"mezu hau. Cookie hau beharrezkoa da segurtasun arrazoiengatik, zure " +"nabigatzailea beste batek ordezkatzen ez duela ziurtatzeko." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Informazio gehiago erabilgarri dago DEBUG=True ezarrita." + +msgid "No year specified" +msgstr "Ez da urterik zehaztu" + +msgid "Date out of range" +msgstr "Data baliozko tartetik kanpo" + +msgid "No month specified" +msgstr "Ez da hilabeterik zehaztu" + +msgid "No day specified" +msgstr "Ez da egunik zehaztu" + +msgid "No week specified" +msgstr "Ez da asterik zehaztu" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ez dago %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Etorkizuneko %(verbose_name_plural)s ez dago aukeran %(class_name)s." +"allow_future False delako" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Bilaketarekin bat datorren %(verbose_name)s-rik ez dago" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Orri baliogabea (%(page_number)s):%(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Direktorio zerrendak ez daude baimenduak." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" ez da existitzen" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s zerrenda" + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalazioak arrakastaz funtzionatu du! Zorionak!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Ikusi Django %(version)s-ren argitaratze " +"oharrak" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Zure settings fitxategian DEBUG=True jarrita eta URLrik konfiguratu gabe duzulako " +"ari zara ikusten orrialde hau." + +msgid "Django Documentation" +msgstr "Django dokumentazioa" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "Tutoriala: Galdetegi aplikazioa" + +msgid "Get started with Django" +msgstr "Hasi Djangorekin" + +msgid "Django Community" +msgstr "Django Komunitatea" + +msgid "Connect, get help, or contribute" +msgstr "Konektatu, lortu laguntza edo lagundu" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/eu/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/eu/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/eu/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9f3e7e124ed585479254569fe54042f2736dd97c GIT binary patch literal 193 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, 2020 +# alirezamastery , 2021 +# ali salehi, 2023 +# Ali Vakilzade , 2015 +# Arash Fazeli , 2012 +# Eric Hamiter , 2019 +# Eshagh , 2022 +# Farshad Asadpour, 2021 +# Jannis Leidel , 2011 +# Mariusz Felisiak , 2021 +# Mazdak Badakhshan , 2014 +# Milad Hazrati , 2019 +# MJafar Mashhadi , 2018 +# Mohammad Hossein Mojtahedi , 2013,2019 +# Pouya Abbassi, 2016 +# Pouya Abbassi, 2016 +# rahim agh , 2020-2021 +# Reza Mohammadi , 2013-2016 +# Saeed , 2011 +# Sina Cheraghi , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-04 06:49+0000\n" +"Last-Translator: ali salehi, 2023\n" +"Language-Team: Persian (http://app.transifex.com/django/django/language/" +"fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Afrikaans" +msgstr "آفریکانس" + +msgid "Arabic" +msgstr "عربی" + +msgid "Algerian Arabic" +msgstr "عربی الجزایری" + +msgid "Asturian" +msgstr "آستوری" + +msgid "Azerbaijani" +msgstr "آذربایجانی" + +msgid "Bulgarian" +msgstr "بلغاری" + +msgid "Belarusian" +msgstr "بلاروس" + +msgid "Bengali" +msgstr "بنگالی" + +msgid "Breton" +msgstr "برتون" + +msgid "Bosnian" +msgstr "بوسنیایی" + +msgid "Catalan" +msgstr "کاتالونیایی" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "چکی" + +msgid "Welsh" +msgstr "ویلزی" + +msgid "Danish" +msgstr "دانمارکی" + +msgid "German" +msgstr "آلمانی" + +msgid "Lower Sorbian" +msgstr "صربستانی پایین" + +msgid "Greek" +msgstr "یونانی" + +msgid "English" +msgstr "انگلیسی" + +msgid "Australian English" +msgstr "انگلیسی استرالیایی" + +msgid "British English" +msgstr "انگلیسی بریتیش" + +msgid "Esperanto" +msgstr "اسپرانتو" + +msgid "Spanish" +msgstr "اسپانیایی" + +msgid "Argentinian Spanish" +msgstr "اسپانیایی آرژانتینی" + +msgid "Colombian Spanish" +msgstr "اسپانیایی کلمبیایی" + +msgid "Mexican Spanish" +msgstr "اسپانیولی مکزیکی" + +msgid "Nicaraguan Spanish" +msgstr "نیکاراگوئه اسپانیایی" + +msgid "Venezuelan Spanish" +msgstr "ونزوئلا اسپانیایی" + +msgid "Estonian" +msgstr "استونی" + +msgid "Basque" +msgstr "باسکی" + +msgid "Persian" +msgstr "فارسی" + +msgid "Finnish" +msgstr "فنلاندی" + +msgid "French" +msgstr "فرانسوی" + +msgid "Frisian" +msgstr "فریزی" + +msgid "Irish" +msgstr "ایرلندی" + +msgid "Scottish Gaelic" +msgstr "گیلیک اسکاتلندی" + +msgid "Galician" +msgstr "گالیسیایی" + +msgid "Hebrew" +msgstr "عبری" + +msgid "Hindi" +msgstr "هندی" + +msgid "Croatian" +msgstr "کرواتی" + +msgid "Upper Sorbian" +msgstr "صربستانی بالا" + +msgid "Hungarian" +msgstr "مجاری" + +msgid "Armenian" +msgstr "ارمنی" + +msgid "Interlingua" +msgstr "اینترلینگوا" + +msgid "Indonesian" +msgstr "اندونزیایی" + +msgid "Igbo" +msgstr "ایگبو" + +msgid "Ido" +msgstr "ایدو" + +msgid "Icelandic" +msgstr "ایسلندی" + +msgid "Italian" +msgstr "ایتالیایی" + +msgid "Japanese" +msgstr "ژاپنی" + +msgid "Georgian" +msgstr "گرجی" + +msgid "Kabyle" +msgstr "قبایلی" + +msgid "Kazakh" +msgstr "قزاقستان" + +msgid "Khmer" +msgstr "خمری" + +msgid "Kannada" +msgstr "کناده‌ای" + +msgid "Korean" +msgstr "کره‌ای" + +msgid "Kyrgyz" +msgstr "قرقیزی" + +msgid "Luxembourgish" +msgstr "لوگزامبورگی" + +msgid "Lithuanian" +msgstr "لیتوانی" + +msgid "Latvian" +msgstr "لتونیایی" + +msgid "Macedonian" +msgstr "مقدونی" + +msgid "Malayalam" +msgstr "مالایایی" + +msgid "Mongolian" +msgstr "مغولی" + +msgid "Marathi" +msgstr "مِراتی" + +msgid "Malay" +msgstr "Malay" + +msgid "Burmese" +msgstr "برمه‌ای" + +msgid "Norwegian Bokmål" +msgstr "نروژی" + +msgid "Nepali" +msgstr "نپالی" + +msgid "Dutch" +msgstr "هلندی" + +msgid "Norwegian Nynorsk" +msgstr "نروژی Nynorsk" + +msgid "Ossetic" +msgstr "آسی" + +msgid "Punjabi" +msgstr "پنجابی" + +msgid "Polish" +msgstr "لهستانی" + +msgid "Portuguese" +msgstr "پرتغالی" + +msgid "Brazilian Portuguese" +msgstr "پرتغالیِ برزیل" + +msgid "Romanian" +msgstr "رومانی" + +msgid "Russian" +msgstr "روسی" + +msgid "Slovak" +msgstr "اسلواکی" + +msgid "Slovenian" +msgstr "اسلووِنی" + +msgid "Albanian" +msgstr "آلبانیایی" + +msgid "Serbian" +msgstr "صربی" + +msgid "Serbian Latin" +msgstr "صربی لاتین" + +msgid "Swedish" +msgstr "سوئدی" + +msgid "Swahili" +msgstr "سواحیلی" + +msgid "Tamil" +msgstr "تامیلی" + +msgid "Telugu" +msgstr "تلوگویی" + +msgid "Tajik" +msgstr "تاجیک" + +msgid "Thai" +msgstr "تایلندی" + +msgid "Turkmen" +msgstr "ترکمن" + +msgid "Turkish" +msgstr "ترکی" + +msgid "Tatar" +msgstr "تاتار" + +msgid "Udmurt" +msgstr "ادمورت" + +msgid "Uyghur" +msgstr "" + +msgid "Ukrainian" +msgstr "اکراینی" + +msgid "Urdu" +msgstr "اردو" + +msgid "Uzbek" +msgstr "ازبکی" + +msgid "Vietnamese" +msgstr "ویتنامی" + +msgid "Simplified Chinese" +msgstr "چینی ساده‌شده" + +msgid "Traditional Chinese" +msgstr "چینی سنتی" + +msgid "Messages" +msgstr "پیغام‌ها" + +msgid "Site Maps" +msgstr "نقشه‌های وب‌گاه" + +msgid "Static Files" +msgstr "پرونده‌های استاتیک" + +msgid "Syndication" +msgstr "پیوند" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "شمارهٔ صفحه یک عدد طبیعی نیست" + +msgid "That page number is less than 1" +msgstr "شمارهٔ صفحه کوچکتر از ۱ است" + +msgid "That page contains no results" +msgstr "این صفحه خالی از اطلاعات است" + +msgid "Enter a valid value." +msgstr "یک مقدار معتبر وارد کنید." + +msgid "Enter a valid URL." +msgstr "یک نشانی اینترنتی معتبر وارد کنید." + +msgid "Enter a valid integer." +msgstr "یک عدد معتبر وارد کنید." + +msgid "Enter a valid email address." +msgstr "یک ایمیل آدرس معتبر وارد کنید." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"یک \"اسلاگ\" معتبر متشکل از حروف، اعداد، خط زیر یا خط فاصله، وارد کنید. " + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"یک \"اسلاگ\" معتبر وارد کنید که شامل حروف یونیکد، اعداد، خط زیر یا خط فاصله " +"باشد." + +msgid "Enter a valid IPv4 address." +msgstr "یک نشانی IPv4 معتبر وارد کنید." + +msgid "Enter a valid IPv6 address." +msgstr "یک آدرس معتبر IPv6 وارد کنید." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "IPv4 یا IPv6 آدرس معتبر وارد کنید." + +msgid "Enter only digits separated by commas." +msgstr "فقط ارقام جدا شده با کاما وارد کنید." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "مطمئن شوید مقدار %(limit_value)s است. (اکنون %(show_value)s می باشد)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "مطمئن شوید این مقدار کوچکتر و یا مساوی %(limit_value)s است." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "مطمئن شوید این مقدار بزرگتر و یا مساوی %(limit_value)s است." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"طول این مقدار باید حداقل %(limit_value)d کاراکتر باشد (طولش %(show_value)d " +"است)." +msgstr[1] "" +"طول این مقدار باید حداقل %(limit_value)d کاراکتر باشد (طولش %(show_value)d " +"است)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"طول این مقدار باید حداکثر %(limit_value)d کاراکتر باشد (طولش %(show_value)d " +"است)." +msgstr[1] "" +"طول این مقدار باید حداکثر %(limit_value)d کاراکتر باشد (طولش %(show_value)d " +"است)." + +msgid "Enter a number." +msgstr "یک عدد وارد کنید." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "نباید در مجموع بیش از %(max)s رقم داشته باشد." +msgstr[1] "نباید در مجموع بیش از %(max)s رقم داشته باشد." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "نباید بیش از %(max)s رقم اعشار داشته باشد." +msgstr[1] "نباید بیش از %(max)s رقم اعشار داشته باشد." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "نباید بیش از %(max)s رقم قبل ممیز داشته باشد." +msgstr[1] "نباید بیش از %(max)s رقم قبل ممیز داشته باشد." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"استفاده از پرونده با پسوند '%(extension)s' مجاز نیست. پسوند‌های مجاز عبارتند " +"از: '%(allowed_extensions)s'" + +msgid "Null characters are not allowed." +msgstr "کاراکترهای تهی مجاز نیستند." + +msgid "and" +msgstr "و" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "‏%(model_name)s با این %(field_labels)s وجود دارد." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "مقدار %(value)r انتخاب معتبری نیست. " + +msgid "This field cannot be null." +msgstr "این فیلد نمی تواند پوچ باشد." + +msgid "This field cannot be blank." +msgstr "این فیلد نمی تواند خالی باشد." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s با این %(field_label)s از قبل موجود است." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"‏%(field_label)s باید برای %(lookup_type)s %(date_field_label)s یکتا باشد." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "فیلد با نوع: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "مقدار «%(value)s» باید True یا False باشد." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "مقدار «%(value)s» باید True یا False یا None باشد." + +msgid "Boolean (Either True or False)" +msgstr "بولی (درست یا غلط)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "رشته (تا %(max_length)s)" + +msgid "String (unlimited)" +msgstr "رشته (بی نهایت)" + +msgid "Comma-separated integers" +msgstr "اعداد صحیح جدا-شده با ویلگول" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"مقدار «%(value)s» در قالب نادرستی وارد شده است. تاریخ باید در قالب YYYY-MM-" +"DD باشد." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"مقدار تاریخ «%(value)s» با اینکه در قالب درستی (YYYY-MM-DD) است ولی تاریخ " +"ناممکنی را نشان می‌دهد." + +msgid "Date (without time)" +msgstr "تاریخ (بدون زمان)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"مقدار \"%(value)s\" یک قالب نامعتبر دارد. باید در قالب YYYY-MM-DD HH:MM[:" +"ss[.uuuuuu]][TZ] باشد." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"مقدار \"%(value)s\" یک قالب معتبر دارد (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) " +"اما یک تاریخ/زمان نامعتبر است." + +msgid "Date (with time)" +msgstr "تاریخ (با زمان)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "مقدار '%(value)s' باید عدد دسیمال باشد." + +msgid "Decimal number" +msgstr "عدد دهدهی" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"مقدار «%(value)s» در قالب نادرستی وارد شده است. باید در قالب ‎[DD] [HH:" +"[MM:]]ss[.uuuuuu]‎ باشد." + +msgid "Duration" +msgstr "بازهٔ زمانی" + +msgid "Email address" +msgstr "نشانی پست الکترونیکی" + +msgid "File path" +msgstr "مسیر پرونده" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "مقدار «%(value)s» باید عدد اعشاری فلوت باشد." + +msgid "Floating point number" +msgstr "عدد اعشاری" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "مقدار «%(value)s» باید عدد حقیقی باشد." + +msgid "Integer" +msgstr "عدد صحیح" + +msgid "Big (8 byte) integer" +msgstr "بزرگ (8 بایت) عدد صحیح" + +msgid "Small integer" +msgstr "عدد صحیح کوچک" + +msgid "IPv4 address" +msgstr "IPv4 آدرس" + +msgid "IP address" +msgstr "نشانی IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "مقدار «%(value)s» باید True یا False یا None باشد." + +msgid "Boolean (Either True, False or None)" +msgstr "‌بولی (درست، نادرست یا پوچ)" + +msgid "Positive big integer" +msgstr "عدد صحیح مثبت" + +msgid "Positive integer" +msgstr "عدد صحیح مثبت" + +msgid "Positive small integer" +msgstr "مثبت عدد صحیح کوچک" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "تیتر (حداکثر %(max_length)s)" + +msgid "Text" +msgstr "متن" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"مقدار «%(value)s» در قالب نادرستی وارد شده است. باید در قالب HH:MM[:ss[." +"uuuuuu]]‎ باشد." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"مقدار «%(value)s» با اینکه در قالب درستی (HH:MM[:ss[.uuuuuu]]‎) است ولی زمان " +"ناممکنی را نشان می‌دهد." + +msgid "Time" +msgstr "زمان" + +msgid "URL" +msgstr "نشانی اینترنتی" + +msgid "Raw binary data" +msgstr "دادهٔ دودویی خام" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" یک UUID معتبر نیست." + +msgid "Universally unique identifier" +msgstr "شناسه منحصر به فرد سراسری" + +msgid "File" +msgstr "پرونده" + +msgid "Image" +msgstr "تصویر" + +msgid "A JSON object" +msgstr "یک شیء JSON" + +msgid "Value must be valid JSON." +msgstr "مقدار، باید یک JSON معتبر باشد." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s با %(field)s %(value)r وجود ندارد." + +msgid "Foreign Key (type determined by related field)" +msgstr "کلید خارجی ( نوع بر اساس فیلد رابط مشخص میشود )" + +msgid "One-to-one relationship" +msgstr "رابطه یک به یک " + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "رابطه %(from)s به %(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "روابط %(from)s به %(to)s" + +msgid "Many-to-many relationship" +msgstr "رابطه چند به چند" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":؟.!" + +msgid "This field is required." +msgstr "این فیلد لازم است." + +msgid "Enter a whole number." +msgstr "به طور کامل یک عدد وارد کنید." + +msgid "Enter a valid date." +msgstr "یک تاریخ معتبر وارد کنید." + +msgid "Enter a valid time." +msgstr "یک زمان معتبر وارد کنید." + +msgid "Enter a valid date/time." +msgstr "یک تاریخ/زمان معتبر وارد کنید." + +msgid "Enter a valid duration." +msgstr "یک بازهٔ زمانی معتبر وارد کنید." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "عدد روز باید بین {min_days} و {max_days} باشد." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "پرونده‌ای ارسال نشده است. نوع کدگذاری فرم را بررسی کنید." + +msgid "No file was submitted." +msgstr "پرونده‌ای ارسال نشده است." + +msgid "The submitted file is empty." +msgstr "پروندهٔ ارسال‌شده خالیست." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"طول عنوان پرونده باید حداقل %(max)d کاراکتر باشد (طولش %(length)d است)." +msgstr[1] "" +"طول عنوان پرونده باید حداقل %(max)d کاراکتر باشد (طولش %(length)d است)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "لطفا یا فایل ارسال کنید یا دکمه پاک کردن را علامت بزنید، نه هردو." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"یک تصویر معتبر بارگذاری کنید. پرونده‌ای که بارگذاری کردید یا تصویر نبوده و یا " +"تصویری مخدوش بوده است." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "یک گزینهٔ معتبر انتخاب کنید. %(value)s از گزینه‌های موجود نیست." + +msgid "Enter a list of values." +msgstr "فهرستی از مقادیر وارد کنید." + +msgid "Enter a complete value." +msgstr "یک مقدار کامل وارد کنید." + +msgid "Enter a valid UUID." +msgstr "یک UUID معتبر وارد کنید." + +msgid "Enter a valid JSON." +msgstr "یک JSON معتبر وارد کنید" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(فیلد پنهان %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"اطلاعات ManagementForm مفقود یا دستکاری شده است. ردیف های مفقود شده: " +"%(field_names)s. اگر این مشکل ادامه داشت، آن را گزارش کنید." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "ترتیب:" + +msgid "Delete" +msgstr "حذف" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "لطفا محتوی تکراری برای %(field)s را اصلاح کنید." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "لطفا محتوی تکراری برای %(field)s را که باید یکتا باشد اصلاح کنید." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"لطفا اطلاعات تکراری %(field_name)s را اصلاح کنید که باید در %(lookup)s " +"یکتا باشد %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "لطفا مقدار تکراری را اصلاح کنید." + +msgid "The inline value did not match the parent instance." +msgstr "مقدار درون خطی موجود با نمونه والد آن مطابقت ندارد." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "یک گزینهٔ معتبر انتخاب کنید. آن گزینه از گزینه‌های موجود نیست." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" یک مقدار معتبر نیست." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)sدر محدوده زمانی %(current_timezone)s، قابل تفسیر نیست؛ ممکن است " +"نامشخص باشد یا اصلاً وجود نداشته باشد." + +msgid "Clear" +msgstr "پاک کردن" + +msgid "Currently" +msgstr "در حال حاضر" + +msgid "Change" +msgstr "تغییر" + +msgid "Unknown" +msgstr "ناشناخته" + +msgid "Yes" +msgstr "بله" + +msgid "No" +msgstr "خیر" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "بله،خیر،شاید" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d بایت" +msgstr[1] "%(size)d بایت" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "ب.ظ." + +msgid "a.m." +msgstr "صبح" + +msgid "PM" +msgstr "بعد از ظهر" + +msgid "AM" +msgstr "صبح" + +msgid "midnight" +msgstr "نیمه شب" + +msgid "noon" +msgstr "ظهر" + +msgid "Monday" +msgstr "دوشنبه" + +msgid "Tuesday" +msgstr "سه شنبه" + +msgid "Wednesday" +msgstr "چهارشنبه" + +msgid "Thursday" +msgstr "پنجشنبه" + +msgid "Friday" +msgstr "جمعه" + +msgid "Saturday" +msgstr "شنبه" + +msgid "Sunday" +msgstr "یکشنبه" + +msgid "Mon" +msgstr "دوشنبه" + +msgid "Tue" +msgstr "سه‌شنبه" + +msgid "Wed" +msgstr "چهارشنبه" + +msgid "Thu" +msgstr "پنجشنبه" + +msgid "Fri" +msgstr "جمعه" + +msgid "Sat" +msgstr "شنبه" + +msgid "Sun" +msgstr "یکشنبه" + +msgid "January" +msgstr "ژانویه" + +msgid "February" +msgstr "فوریه" + +msgid "March" +msgstr "مارس" + +msgid "April" +msgstr "آوریل" + +msgid "May" +msgstr "مه" + +msgid "June" +msgstr "ژوئن" + +msgid "July" +msgstr "ژوئیه" + +msgid "August" +msgstr "اوت" + +msgid "September" +msgstr "سپتامبر" + +msgid "October" +msgstr "اکتبر" + +msgid "November" +msgstr "نوامبر" + +msgid "December" +msgstr "دسامبر" + +msgid "jan" +msgstr "ژانویه" + +msgid "feb" +msgstr "فوریه" + +msgid "mar" +msgstr "مارس" + +msgid "apr" +msgstr "آوریل" + +msgid "may" +msgstr "مه" + +msgid "jun" +msgstr "ژوئن" + +msgid "jul" +msgstr "ژوئیه" + +msgid "aug" +msgstr "اوت" + +msgid "sep" +msgstr "سپتامبر" + +msgid "oct" +msgstr "اکتبر" + +msgid "nov" +msgstr "نوامبر" + +msgid "dec" +msgstr "دسامبر" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "ژانویه" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "فوریه" + +msgctxt "abbrev. month" +msgid "March" +msgstr "مارس" + +msgctxt "abbrev. month" +msgid "April" +msgstr "آوریل" + +msgctxt "abbrev. month" +msgid "May" +msgstr "مه" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ژوئن" + +msgctxt "abbrev. month" +msgid "July" +msgstr "جولای" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "اوت" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "سپتامبر" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "اکتبر" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "نوامبر" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "دسامبر" + +msgctxt "alt. month" +msgid "January" +msgstr "ژانویه" + +msgctxt "alt. month" +msgid "February" +msgstr "فوریه" + +msgctxt "alt. month" +msgid "March" +msgstr "مارس" + +msgctxt "alt. month" +msgid "April" +msgstr "آوریل" + +msgctxt "alt. month" +msgid "May" +msgstr "مه" + +msgctxt "alt. month" +msgid "June" +msgstr "ژوئن" + +msgctxt "alt. month" +msgid "July" +msgstr "جولای" + +msgctxt "alt. month" +msgid "August" +msgstr "اوت" + +msgctxt "alt. month" +msgid "September" +msgstr "سپتامبر" + +msgctxt "alt. month" +msgid "October" +msgstr "اکتبر" + +msgctxt "alt. month" +msgid "November" +msgstr "نوامبر" + +msgctxt "alt. month" +msgid "December" +msgstr "دسامبر" + +msgid "This is not a valid IPv6 address." +msgstr "این مقدار آدرس IPv6 معتبری نیست." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "یا" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "،" + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d سال" +msgstr[1] "%(num)d سال" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d ماه" +msgstr[1] "%(num)d ماه" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d هفته" +msgstr[1] "%(num)d هفته" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d روز" +msgstr[1] "%(num)d روز" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d ساعت" +msgstr[1] "%(num)d ساعت" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d دقیقه" +msgstr[1] "%(num)d دقیقه" + +msgid "Forbidden" +msgstr "ممنوع" + +msgid "CSRF verification failed. Request aborted." +msgstr "‏CSRF تأیید نشد. درخواست لغو شد." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"شما این پیغام را مشاهده میکنید برای اینکه این HTTPS site نیازمند یک " +"\"Referer header\" برای ارسال توسط مرورگر شما دارد،‌اما مقداری ارسال " +"نمیشود . این هدر الزامی میباشد برای امنیت ، در واقع برای اینکه مرورگر شما " +"مطمین شود hijack به عنوان نفر سوم (third parties) در میان نیست" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"اگر در مرورگر خود سر تیتر \"Referer\" را غیرفعال کرده‌اید، لطفاً آن را فعال " +"کنید، یا حداقل برای این وب‌گاه یا برای ارتباطات HTTPS و یا برای درخواست‌های " +"\"Same-origin\" فعال کنید." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"اگر شما از تگ استفاده " +"می‌کنید یا سر تیتر \"Referrer-Policy: no-referrer\" را اضافه کرده‌اید، لطفاً " +"آن را حذف کنید. محافظ CSRF به سرتیتر \"Referer\" نیاز دارد تا بتواند بررسی " +"سخت‌گیرانه ارجاع دهنده را انجام دهد. اگر ملاحظاتی در مورد حریم خصوصی دارید از " +"روش‎‌های جایگزین مانند برای ارجاع دادن به وب‌گاه‌های " +"شخص ثالث استفاده کنید." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"شما این پیام را میبینید چون این سایت نیازمند کوکی «جعل درخواست میان وبگاهی " +"(CSRF)» است. این کوکی برای امنیت شما ضروری است. با این کوکی می‌توانیم از " +"اینکه شخص ثالثی کنترل مرورگرتان را به دست نگرفته است اطمینان پیدا کنیم." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"اگر مرورگر خود را تنظیم کرده‌اید که کوکی غیرفعال باشد، لطفاً مجدداً آن را فعال " +"کنید؛ حداقل برای این وب‌گاه یا برای درخواست‌های \"same-origin\"." + +msgid "More information is available with DEBUG=True." +msgstr "اطلاعات بیشتر با DEBUG=True ارائه خواهد شد." + +msgid "No year specified" +msgstr "هیچ سالی مشخص نشده است" + +msgid "Date out of range" +msgstr "تاریخ غیرمجاز است" + +msgid "No month specified" +msgstr "هیچ ماهی مشخص نشده است" + +msgid "No day specified" +msgstr "هیچ روزی مشخص نشده است" + +msgid "No week specified" +msgstr "هیچ هفته‌ای مشخص نشده است" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "هیچ %(verbose_name_plural)s موجود نیست" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"آینده %(verbose_name_plural)s امکان پذیر نیست زیرا مقدار %(class_name)s." +"allow_future برابر False تنظیم شده است." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "نوشته تاریخ \"%(datestr)s\" در قالب \"%(format)s\" نامعتبر است" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "هیچ %(verbose_name)s ای مطابق جستجو پیدا نشد." + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "صفحه \"آخرین\" نیست یا شماره صفحه قابل ترجمه به یک عدد صحیح نیست." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "صفحه‌ی اشتباه (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "لیست خالی و \"%(class_name)s.allow_empty\" برابر False است." + +msgid "Directory indexes are not allowed here." +msgstr "شاخص دایرکتوری اینجا قابل قبول نیست." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" وجود ندارد " + +#, python-format +msgid "Index of %(directory)s" +msgstr "فهرست %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "نصب درست کار کرد. تبریک می گویم!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"نمایش release notes برای نسخه %(version)s " +"جنگو" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"شما این صفحه را به این دلیل مشاهده می کنید که DEBUG=True در فایل تنظیمات شما وجود دارد و شما هیچ URL " +"تنظیم نکرده اید." + +msgid "Django Documentation" +msgstr "مستندات جنگو" + +msgid "Topics, references, & how-to’s" +msgstr "سرفصل‌ها، منابع و دستورالعمل‌ها" + +msgid "Tutorial: A Polling App" +msgstr "آموزش گام به گام: برنامکی برای رأی‌گیری" + +msgid "Get started with Django" +msgstr "شروع به کار با جنگو" + +msgid "Django Community" +msgstr "جامعهٔ جنگو" + +msgid "Connect, get help, or contribute" +msgstr "متصل شوید، کمک بگیرید یا مشارکت کنید" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fa/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/fa/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fa/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6d26425799bc37125356e39f3f39c6eb41086b4 GIT binary patch literal 193 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po new file mode 100644 index 0000000..afea426 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po @@ -0,0 +1,1332 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Aarni Koskela, 2015,2017-2018,2020-2022 +# Antti Kaihola , 2011 +# Jannis Leidel , 2011 +# Jiri Grönroos , 2021,2023 +# Lasse Liehu , 2015 +# Mika Mäkelä , 2018 +# Klaus Dahlén, 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-04 06:49+0000\n" +"Last-Translator: Jiri Grönroos , 2021,2023\n" +"Language-Team: Finnish (http://app.transifex.com/django/django/language/" +"fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "afrikaans" + +msgid "Arabic" +msgstr "arabia" + +msgid "Algerian Arabic" +msgstr "Algerian arabia" + +msgid "Asturian" +msgstr "asturian kieli" + +msgid "Azerbaijani" +msgstr "azeri" + +msgid "Bulgarian" +msgstr "bulgaria" + +msgid "Belarusian" +msgstr "valkovenäjän kieli" + +msgid "Bengali" +msgstr "bengali" + +msgid "Breton" +msgstr "bretoni" + +msgid "Bosnian" +msgstr "bosnia" + +msgid "Catalan" +msgstr "katalaani" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "tšekki" + +msgid "Welsh" +msgstr "wales" + +msgid "Danish" +msgstr "tanska" + +msgid "German" +msgstr "saksa" + +msgid "Lower Sorbian" +msgstr "Alasorbi" + +msgid "Greek" +msgstr "kreikka" + +msgid "English" +msgstr "englanti" + +msgid "Australian English" +msgstr "australianenglanti" + +msgid "British English" +msgstr "brittienglanti" + +msgid "Esperanto" +msgstr "esperanto" + +msgid "Spanish" +msgstr "espanja" + +msgid "Argentinian Spanish" +msgstr "Argentiinan espanja" + +msgid "Colombian Spanish" +msgstr "Kolumbian espanja" + +msgid "Mexican Spanish" +msgstr "Meksikon espanja" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguan espanja" + +msgid "Venezuelan Spanish" +msgstr "Venezuelan espanja" + +msgid "Estonian" +msgstr "viro" + +msgid "Basque" +msgstr "baski" + +msgid "Persian" +msgstr "persia" + +msgid "Finnish" +msgstr "suomi" + +msgid "French" +msgstr "ranska" + +msgid "Frisian" +msgstr "friisi" + +msgid "Irish" +msgstr "irlanti" + +msgid "Scottish Gaelic" +msgstr "skottilainen gaeli" + +msgid "Galician" +msgstr "galicia" + +msgid "Hebrew" +msgstr "heprea" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "kroatia" + +msgid "Upper Sorbian" +msgstr "Yläsorbi" + +msgid "Hungarian" +msgstr "unkari" + +msgid "Armenian" +msgstr "armenian kieli" + +msgid "Interlingua" +msgstr "interlingua" + +msgid "Indonesian" +msgstr "indonesia" + +msgid "Igbo" +msgstr "igbo" + +msgid "Ido" +msgstr "ido" + +msgid "Icelandic" +msgstr "islanti" + +msgid "Italian" +msgstr "italia" + +msgid "Japanese" +msgstr "japani" + +msgid "Georgian" +msgstr "georgia" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "kazakin kieli" + +msgid "Khmer" +msgstr "khmerin kieli" + +msgid "Kannada" +msgstr "kannada" + +msgid "Korean" +msgstr "korea" + +msgid "Kyrgyz" +msgstr "kirgiisi" + +msgid "Luxembourgish" +msgstr "luxemburgin kieli" + +msgid "Lithuanian" +msgstr "liettua" + +msgid "Latvian" +msgstr "latvia" + +msgid "Macedonian" +msgstr "makedonia" + +msgid "Malayalam" +msgstr "malajalam" + +msgid "Mongolian" +msgstr "mongolia" + +msgid "Marathi" +msgstr "marathi" + +msgid "Malay" +msgstr "malaiji" + +msgid "Burmese" +msgstr "burman kieli" + +msgid "Norwegian Bokmål" +msgstr "norja (bokmål)" + +msgid "Nepali" +msgstr "nepalin kieli" + +msgid "Dutch" +msgstr "hollanti" + +msgid "Norwegian Nynorsk" +msgstr "norja (uusnorja)" + +msgid "Ossetic" +msgstr "osseetin kieli" + +msgid "Punjabi" +msgstr "punjabin kieli" + +msgid "Polish" +msgstr "puola" + +msgid "Portuguese" +msgstr "portugali" + +msgid "Brazilian Portuguese" +msgstr "brasilian portugali" + +msgid "Romanian" +msgstr "romania" + +msgid "Russian" +msgstr "venäjä" + +msgid "Slovak" +msgstr "slovakia" + +msgid "Slovenian" +msgstr "slovenia" + +msgid "Albanian" +msgstr "albaani" + +msgid "Serbian" +msgstr "serbia" + +msgid "Serbian Latin" +msgstr "serbian latina" + +msgid "Swedish" +msgstr "ruotsi" + +msgid "Swahili" +msgstr "swahili" + +msgid "Tamil" +msgstr "tamili" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "tadžikki" + +msgid "Thai" +msgstr "thain kieli" + +msgid "Turkmen" +msgstr "turkmeeni" + +msgid "Turkish" +msgstr "turkki" + +msgid "Tatar" +msgstr "tataarin kieli" + +msgid "Udmurt" +msgstr "udmurtti" + +msgid "Uyghur" +msgstr "uiguuri" + +msgid "Ukrainian" +msgstr "ukraina" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "uzbekki" + +msgid "Vietnamese" +msgstr "vietnam" + +msgid "Simplified Chinese" +msgstr "kiina (yksinkertaistettu)" + +msgid "Traditional Chinese" +msgstr "kiina (perinteinen)" + +msgid "Messages" +msgstr "Viestit" + +msgid "Site Maps" +msgstr "Sivukartat" + +msgid "Static Files" +msgstr "Staattiset tiedostot" + +msgid "Syndication" +msgstr "Syndikointi" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Annettu sivunumero ei ole kokonaisluku" + +msgid "That page number is less than 1" +msgstr "Annettu sivunumero on alle 1" + +msgid "That page contains no results" +msgstr "Annetulla sivulla ei ole tuloksia" + +msgid "Enter a valid value." +msgstr "Syötä oikea arvo." + +msgid "Enter a valid URL." +msgstr "Syötä oikea URL-osoite." + +msgid "Enter a valid integer." +msgstr "Syötä kelvollinen kokonaisluku." + +msgid "Enter a valid email address." +msgstr "Syötä kelvollinen sähköpostiosoite." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Anna lyhytnimi joka koostuu vain kirjaimista, numeroista sekä ala- ja " +"tavuviivoista." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Anna lyhytnimi joka koostuu vain Unicode-kirjaimista, numeroista sekä ala- " +"ja tavuviivoista." + +msgid "Enter a valid IPv4 address." +msgstr "Syötä kelvollinen IPv4-osoite." + +msgid "Enter a valid IPv6 address." +msgstr "Syötä kelvollinen IPv6-osoite." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Syötä kelvollinen IPv4- tai IPv6-osoite." + +msgid "Enter only digits separated by commas." +msgstr "Vain pilkulla erotetut numeromerkit kelpaavat tässä." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Tämän arvon on oltava %(limit_value)s (nyt %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Tämän arvon on oltava enintään %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Tämän luvun on oltava vähintään %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Varmista, että arvo on askelkoon %(limit_value)smonikerta. " + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Varmista, että tämä arvo on vähintään %(limit_value)d merkin pituinen (tällä " +"hetkellä %(show_value)d)." +msgstr[1] "" +"Varmista, että tämä arvo on vähintään %(limit_value)d merkkiä pitkä (tällä " +"hetkellä %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Varmista, että tämä arvo on enintään %(limit_value)d merkin pituinen (tällä " +"hetkellä %(show_value)d)." +msgstr[1] "" +"Varmista, että tämä arvo on enintään %(limit_value)d merkkiä pitkä (tällä " +"hetkellä %(show_value)d)." + +msgid "Enter a number." +msgstr "Syötä luku." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Tässä luvussa voi olla yhteensä enintään %(max)s numero." +msgstr[1] "Tässä luvussa voi olla yhteensä enintään %(max)s numeroa." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Tässä luvussa saa olla enintään %(max)s desimaali." +msgstr[1] "Tässä luvussa saa olla enintään %(max)s desimaalia." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Tässä luvussa saa olla enintään %(max)s numero ennen desimaalipilkkua." +msgstr[1] "" +"Tässä luvussa saa olla enintään %(max)s numeroa ennen desimaalipilkkua." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Pääte \"%(extension)s\" ei ole sallittu. Sallittuja päätteitä ovat " +"\"%(allowed_extensions)s\"." + +msgid "Null characters are not allowed." +msgstr "Tyhjiä merkkejä (null) ei sallita." + +msgid "and" +msgstr "ja" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s jolla on nämä %(field_labels)s on jo olemassa." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Rajoitetta \"%(name)s\" loukataan." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Arvo %(value)r ei kelpaa." + +msgid "This field cannot be null." +msgstr "Tämän kentän arvo ei voi olla \"null\"." + +msgid "This field cannot be blank." +msgstr "Tämä kenttä ei voi olla tyhjä." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s jolla on tämä %(field_label)s, on jo olemassa." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"\"%(field_label)s\"-kentän on oltava uniikki suhteessa: %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Kenttä tyyppiä: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "%(value)s-arvo pitää olla joko tosi tai epätosi." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "%(value)s-arvo pitää olla joko tosi, epätosi tai ei mitään." + +msgid "Boolean (Either True or False)" +msgstr "Totuusarvo: joko tosi (True) tai epätosi (False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Merkkijono (enintään %(max_length)s merkkiä)" + +msgid "String (unlimited)" +msgstr "Merkkijono (rajoittamaton)" + +msgid "Comma-separated integers" +msgstr "Pilkulla erotetut kokonaisluvut" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"%(value)s-arvo on väärässä päivämäärämuodossa. Sen tulee olla VVVV-KK-PP -" +"muodossa." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"%(value)s-arvo on oikeassa päivämäärämuodossa (VVVV-KK-PP), muttei ole " +"kelvollinen päivämäärä." + +msgid "Date (without time)" +msgstr "Päivämäärä (ilman kellonaikaa)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"%(value)s-arvon muoto ei kelpaa. Se tulee olla VVVV-KK-PP TT:MM[:ss[.uuuuuu]]" +"[TZ] -muodossa." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"%(value)s-arvon muoto on oikea (VVVV-KK-PP TT:MM[:ss[.uuuuuu]][TZ]), mutta " +"päivämäärä/aika ei ole kelvollinen." + +msgid "Date (with time)" +msgstr "Päivämäärä ja kellonaika" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "%(value)s-arvo tulee olla desimaaliluku." + +msgid "Decimal number" +msgstr "Desimaaliluku" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "%(value)s-arvo pitää olla muodossa [PP] TT:MM[:ss[.uuuuuu]]." + +msgid "Duration" +msgstr "Kesto" + +msgid "Email address" +msgstr "Sähköpostiosoite" + +msgid "File path" +msgstr "Tiedostopolku" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "%(value)s-arvo tulee olla liukuluku." + +msgid "Floating point number" +msgstr "Liukuluku" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "%(value)s-arvo tulee olla kokonaisluku." + +msgid "Integer" +msgstr "Kokonaisluku" + +msgid "Big (8 byte) integer" +msgstr "Suuri (8-tavuinen) kokonaisluku" + +msgid "Small integer" +msgstr "Pieni kokonaisluku" + +msgid "IPv4 address" +msgstr "IPv4-osoite" + +msgid "IP address" +msgstr "IP-osoite" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "%(value)s-arvo tulee olla joko ei mitään, tosi tai epätosi." + +msgid "Boolean (Either True, False or None)" +msgstr "Totuusarvo: joko tosi (True), epätosi (False) tai ei mikään (None)" + +msgid "Positive big integer" +msgstr "Suuri positiivinen kokonaisluku" + +msgid "Positive integer" +msgstr "Positiivinen kokonaisluku" + +msgid "Positive small integer" +msgstr "Pieni positiivinen kokonaisluku" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Lyhytnimi (enintään %(max_length)s merkkiä)" + +msgid "Text" +msgstr "Tekstiä" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "%(value)s-arvo pitää olla muodossa TT:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"%(value)s-arvo on oikeassa muodossa (TT:MM[:ss[.uuuuuu]]), mutta kellonaika " +"ei kelpaa." + +msgid "Time" +msgstr "Kellonaika" + +msgid "URL" +msgstr "URL-osoite" + +msgid "Raw binary data" +msgstr "Raaka binaaridata" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "%(value)s ei ole kelvollinen UUID." + +msgid "Universally unique identifier" +msgstr "UUID-tunnus" + +msgid "File" +msgstr "Tiedosto" + +msgid "Image" +msgstr "Kuva" + +msgid "A JSON object" +msgstr "JSON-tietue" + +msgid "Value must be valid JSON." +msgstr "Arvon pitää olla kelvollista JSONia." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s-tietuetta %(field)s-kentällä %(value)r ei ole olemassa." + +msgid "Foreign Key (type determined by related field)" +msgstr "Vierasavain (tyyppi määräytyy liittyvän kentän mukaan)" + +msgid "One-to-one relationship" +msgstr "Yksi-yhteen -relaatio" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s -suhde" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s -suhteet" + +msgid "Many-to-many relationship" +msgstr "Moni-moneen -relaatio" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Tämä kenttä vaaditaan." + +msgid "Enter a whole number." +msgstr "Syötä kokonaisluku." + +msgid "Enter a valid date." +msgstr "Syötä oikea päivämäärä." + +msgid "Enter a valid time." +msgstr "Syötä oikea kellonaika." + +msgid "Enter a valid date/time." +msgstr "Syötä oikea pvm/kellonaika." + +msgid "Enter a valid duration." +msgstr "Syötä oikea kesto." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Päivien määrä täytyy olla välillä {min_days} ja {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Tiedostoa ei lähetetty. Tarkista lomakkeen koodaus (encoding)." + +msgid "No file was submitted." +msgstr "Yhtään tiedostoa ei ole lähetetty." + +msgid "The submitted file is empty." +msgstr "Lähetetty tiedosto on tyhjä." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Varmista, että tämä tiedostonimi on enintään %(max)d merkin pituinen (tällä " +"hetkellä %(length)d)." +msgstr[1] "" +"Varmista, että tämä tiedostonimi on enintään %(max)d merkkiä pitkä (tällä " +"hetkellä %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Voit joko lähettää tai poistaa tiedoston, muttei kumpaakin samalla." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Kuva ei kelpaa. Lähettämäsi tiedosto ei ole kuva, tai tiedosto on vioittunut." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Valitse oikea vaihtoehto. %(value)s ei ole vaihtoehtojen joukossa." + +msgid "Enter a list of values." +msgstr "Syötä lista." + +msgid "Enter a complete value." +msgstr "Syötä kokonainen arvo." + +msgid "Enter a valid UUID." +msgstr "Syötä oikea UUID." + +msgid "Enter a valid JSON." +msgstr "Syötä oikea JSON-arvo." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Piilokenttä %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm-tiedot puuttuvat tai niitä on muutettu. Puuttuvat kentät ovat " +"%(field_names)s. Jos ongelma toistuu, voi olla että joudut raportoimaan " +"tämän bugina." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Lähetä enintään%(num)d lomake." +msgstr[1] "Lähetä enintään %(num)d lomaketta." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Lähetä vähintään %(num)d lomake." +msgstr[1] "Lähetä vähintään %(num)d lomaketta. " + +msgid "Order" +msgstr "Järjestys" + +msgid "Delete" +msgstr "Poista" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Korjaa kaksoisarvo kentälle %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Ole hyvä ja korjaa uniikin kentän %(field)s kaksoisarvo." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Korjaa alla olevat kaksoisarvot." + +msgid "The inline value did not match the parent instance." +msgstr "Liittyvä arvo ei vastannut vanhempaa instanssia." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Valitse oikea vaihtoehto. Valintasi ei löydy vaihtoehtojen joukosta." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" ei ole kelvollinen arvo." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s -arvoa ei pystytty lukemaan aikavyöhykkeellä " +"%(current_timezone)s; se saattaa olla moniarvoinen tai määrittämätön." + +msgid "Clear" +msgstr "Poista" + +msgid "Currently" +msgstr "Tällä hetkellä" + +msgid "Change" +msgstr "Muokkaa" + +msgid "Unknown" +msgstr "Tuntematon" + +msgid "Yes" +msgstr "Kyllä" + +msgid "No" +msgstr "Ei" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "kyllä,ei,ehkä" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d tavu" +msgstr[1] "%(size)d tavua" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "ip" + +msgid "a.m." +msgstr "ap" + +msgid "PM" +msgstr "IP" + +msgid "AM" +msgstr "AP" + +msgid "midnight" +msgstr "keskiyö" + +msgid "noon" +msgstr "keskipäivä" + +msgid "Monday" +msgstr "maanantai" + +msgid "Tuesday" +msgstr "tiistai" + +msgid "Wednesday" +msgstr "keskiviikko" + +msgid "Thursday" +msgstr "torstai" + +msgid "Friday" +msgstr "perjantai" + +msgid "Saturday" +msgstr "lauantai" + +msgid "Sunday" +msgstr "sunnuntai" + +msgid "Mon" +msgstr "ma" + +msgid "Tue" +msgstr "ti" + +msgid "Wed" +msgstr "ke" + +msgid "Thu" +msgstr "to" + +msgid "Fri" +msgstr "pe" + +msgid "Sat" +msgstr "la" + +msgid "Sun" +msgstr "su" + +msgid "January" +msgstr "tammikuu" + +msgid "February" +msgstr "helmikuu" + +msgid "March" +msgstr "maaliskuu" + +msgid "April" +msgstr "huhtikuu" + +msgid "May" +msgstr "toukokuu" + +msgid "June" +msgstr "kesäkuu" + +msgid "July" +msgstr "heinäkuu" + +msgid "August" +msgstr "elokuu" + +msgid "September" +msgstr "syyskuu" + +msgid "October" +msgstr "lokakuu" + +msgid "November" +msgstr "marraskuu" + +msgid "December" +msgstr "joulukuu" + +msgid "jan" +msgstr "tam" + +msgid "feb" +msgstr "hel" + +msgid "mar" +msgstr "maa" + +msgid "apr" +msgstr "huh" + +msgid "may" +msgstr "tou" + +msgid "jun" +msgstr "kes" + +msgid "jul" +msgstr "hei" + +msgid "aug" +msgstr "elo" + +msgid "sep" +msgstr "syy" + +msgid "oct" +msgstr "lok" + +msgid "nov" +msgstr "mar" + +msgid "dec" +msgstr "jou" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "tammi" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "helmi" + +msgctxt "abbrev. month" +msgid "March" +msgstr "maalis" + +msgctxt "abbrev. month" +msgid "April" +msgstr "huhti" + +msgctxt "abbrev. month" +msgid "May" +msgstr "touko" + +msgctxt "abbrev. month" +msgid "June" +msgstr "kesä" + +msgctxt "abbrev. month" +msgid "July" +msgstr "heinä" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "elo" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "syys" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "loka" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "marras" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "joulu" + +msgctxt "alt. month" +msgid "January" +msgstr "tammikuuta" + +msgctxt "alt. month" +msgid "February" +msgstr "helmikuuta" + +msgctxt "alt. month" +msgid "March" +msgstr "maaliskuuta" + +msgctxt "alt. month" +msgid "April" +msgstr "huhtikuuta" + +msgctxt "alt. month" +msgid "May" +msgstr "toukokuuta" + +msgctxt "alt. month" +msgid "June" +msgstr "kesäkuuta" + +msgctxt "alt. month" +msgid "July" +msgstr "heinäkuuta" + +msgctxt "alt. month" +msgid "August" +msgstr "elokuuta" + +msgctxt "alt. month" +msgid "September" +msgstr "syyskuuta" + +msgctxt "alt. month" +msgid "October" +msgstr "lokakuuta" + +msgctxt "alt. month" +msgid "November" +msgstr "marraskuuta" + +msgctxt "alt. month" +msgid "December" +msgstr "joulukuuta" + +msgid "This is not a valid IPv6 address." +msgstr "Tämä ei ole kelvollinen IPv6-osoite." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "tai" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d vuosi" +msgstr[1] "%(num)d vuotta" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d kuukausi" +msgstr[1] "%(num)d kuukautta " + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d viikko" +msgstr[1] "%(num)d viikkoa" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d päivä" +msgstr[1] "%(num)d päivää" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d tunti" +msgstr[1] "%(num)d tuntia" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuutti" +msgstr[1] "%(num)d minuuttia" + +msgid "Forbidden" +msgstr "Kielletty" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-vahvistus epäonnistui. Pyyntö hylätty." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Näet tämän viestin, koska tämä HTTPS-sivusto vaatii selaintasi lähettämään " +"Referer-otsakkeen, mutta sitä ei vastaanotettu. Otsake vaaditaan " +"turvallisuussyistä, varmistamaan etteivät kolmannet osapuolet ole ottaneet " +"selaintasi haltuun." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Jos olet konfiguroinut selaimesi olemaan lähettämättä Referer-otsaketta, ole " +"hyvä ja kytke otsake takaisin päälle ainakin tälle sivulle, HTTPS-" +"yhteyksille tai saman lähteen (\"same-origin\") pyynnöille." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Jos käytät -tagia tai " +"\"Referrer-Policy: no-referrer\" -otsaketta, ole hyvä ja poista ne. CSRF-" +"suojaus vaatii Referer-otsakkeen tehdäkseen tarkan referer-tarkistuksen. Jos " +"vaadit yksityisyyttä, käytä vaihtoehtoja kuten linkittääksesi kolmannen osapuolen sivuille." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Näet tämän viestin, koska tämä sivusto vaatii CSRF-evästeen " +"vastaanottaessaan lomaketietoja. Eväste vaaditaan turvallisuussyistä, " +"varmistamaan etteivät kolmannet osapuolet ole ottaneet selaintasi haltuun." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Jos olet konfiguroinut selaimesi olemaan vastaanottamatta tai lähettämättä " +"evästeitä, ole hyvä ja kytke evästeet takaisin päälle ainakin tälle sivulle " +"tai saman lähteen (\"same-origin\") pyynnöille." + +msgid "More information is available with DEBUG=True." +msgstr "Lisätietoja `DEBUG=True`-konfiguraatioasetuksella." + +msgid "No year specified" +msgstr "Vuosi puuttuu" + +msgid "Date out of range" +msgstr "Päivämäärä ei alueella" + +msgid "No month specified" +msgstr "Kuukausi puuttuu" + +msgid "No day specified" +msgstr "Päivä puuttuu" + +msgid "No week specified" +msgstr "Viikko puuttuu" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s: yhtään kohdetta ei löydy" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s: tulevia kohteita ei löydy, koska %(class_name)s." +"allow_future:n arvo on False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Päivämäärä '%(datestr)s' ei ole muotoa '%(format)s'" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Hakua vastaavaa %(verbose_name)s -kohdetta ei löytynyt" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Sivunumero ei ole 'last' (viimeinen) eikä näytä luvulta." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Epäkelpo sivu (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Lista on tyhjä, ja '%(class_name)s.allow_empty':n arvo on False." + +msgid "Directory indexes are not allowed here." +msgstr "Hakemistolistauksia ei sallita täällä." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" ei ole olemassa" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Hakemistolistaus: %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Asennus toimi! Onneksi olkoon!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Katso Djangon version %(version)s julkaisutiedot" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Näet tämän viestin, koska asetuksissasi on DEBUG = True etkä ole konfiguroinut yhtään URL-" +"osoitetta." + +msgid "Django Documentation" +msgstr "Django-dokumentaatio" + +msgid "Topics, references, & how-to’s" +msgstr "Aiheet, viittaukset & how-tot" + +msgid "Tutorial: A Polling App" +msgstr "Tutoriaali: kyselyapplikaatio" + +msgid "Get started with Django" +msgstr "Miten päästä alkuun Djangolla" + +msgid "Django Community" +msgstr "Django-yhteisö" + +msgid "Connect, get help, or contribute" +msgstr "Verkostoidu, saa apua tai jatkokehitä" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fi/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/fi/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5cec861ddfa4a28410ce205892bf36340d7b032 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFy?TM5Jj>cudTiXkYG_AFnujPa6bkXczWI|soC zo;tJNM$Mt(s-b4thT@{8s~bnr$unip^;N|V4a;=LhlaC9HB|fq={jS}cEj@2^Ji2U zr|GtnSNfr)g`ZXR6Y3Rhx;gROr+E%~eY{4M_lj9n)*Y&sx}jW!jyh3n#kFkIbH|qF zDCV%lI;LlQRPAtNTi!%BN8g!^K%b*957WzcftSXcH24}PTM`V(bhnDv+ccQR={6$a zCfX&H_-gSbNEh4q?M*bjj%ZbYm(hAo22--04H7bql6Wv%3}$4rinb}d+5ZyXuL#~H c@kRdkq!Kj%0Jgk2fn&ix5r`tF0aj%H1IxhAnE(I) literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fi/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/fi/formats.py new file mode 100644 index 0000000..d9fb6d2 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/fi/formats.py @@ -0,0 +1,36 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. E Y" +TIME_FORMAT = "G.i" +DATETIME_FORMAT = r"j. E Y \k\e\l\l\o G.i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "j.n.Y" +SHORT_DATETIME_FORMAT = "j.n.Y G.i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '20.3.2014' + "%d.%m.%y", # '20.3.14' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H.%M.%S", # '20.3.2014 14.30.59' + "%d.%m.%Y %H.%M.%S.%f", # '20.3.2014 14.30.59.000200' + "%d.%m.%Y %H.%M", # '20.3.2014 14.30' + "%d.%m.%y %H.%M.%S", # '20.3.14 14.30.59' + "%d.%m.%y %H.%M.%S.%f", # '20.3.14 14.30.59.000200' + "%d.%m.%y %H.%M", # '20.3.14 14.30' +] +TIME_INPUT_FORMATS = [ + "%H.%M.%S", # '14.30.59' + "%H.%M.%S.%f", # '14.30.59.000200' + "%H.%M", # '14.30' +] + +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # Non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..bf4a0fe19f99750858318e225f297b3ca2328221 GIT binary patch literal 30291 zcmdU%37i~9b^qH~zGPz?ANT;{wrttEwsv*+KuDJCl~${BrA52)i7ofc^vyg|jKk>=Vh9i|fdmq4{!X|;>|lby#37u)gh2k^Usd(&%02D`aOtlEk0AX$ z4)1dKL5KG`ybnBwe4hoM20jAPZ120^9PoSK)4|8x`~LusA^vOdXz(cC^G*Oy1XZ68 z9toZgo(y(@%Gcv?1E}|d;7Qi1pXdEgg7y?-3k z`=5dO{unxA+5@VcKB#;bf)|2IT>J)5;~Ikc?xmpG|4Q%~;OpJ{cY!|fkAvrfUjx;j z-+(IrsCo9gXMif_H1I_5IiUK#5L9`qL4CIkJRZCeRQ@V>0oVZb-R+?I^T(j_?*rAY zFM*neuYjV9he7r0jC1)GJO_Lm_%?71>|&7K1ilY^A9(3}XaW2tcsckII`ek$K5zxN zl}4-t-vo*d?*~ryFrcbr$N!@*Fcr`6Hs(N zx6|{U30?rIoRy&Zy%oF`EQ15!Uw~RdCoy?6)$0I{0k?ohgV#DNfLceR;2iL^U;%ss zsQf<$HD130Ro>wj+4M8OZsO;HnvbpE;o!9{egmlQO5k;11ysFXaQFbI@4f-5fByt( zzMgRDzj5&+7TEfZ1?TeqR8Z~o!Q;UB4wty}D?qio7gT#TgEt;V`@q){|40`BTu$Rv z&cA}H_a~sn^$Ae*oUqWg|4i^$;`6}OU^ht9yad#De*~(Z?{jz$sD9oHs{B89xDQl+ zzW^%#mtFj;pvw727ypjKAArjDV^Hn+B`7+cv&iB}pwfL%-(Li(-;2Rpz~$f>;QgS= zc??v(AA=f~Uw~@oufP+)Ig4%jDWKYUI;ir_1{o5s)1_Ynif*@qPXiN>q4hHGJn%i> ziQpGNjpx@vt&4vH_1#5F?7Cj*aKK@~VFOgVUIqH#8$q@I!=UKo6QKI>fJ^@>sCGOA zE(5>q(w}{?=k*ak52TCUC>VpcgBOCwUE+DGz~_P+z}?_F@Gn92|M*KCy@96?_d)gR zQc(Ts1J$k@K#gArs@<7Oe<`SOew9mq9jJV_fNQ|_f@{IYKr?Tb+47cyn&;KvN#OHA zy)S`kSIxyU@L9xP1}gt;pxUz+JP!N_sP8`wYJGnNH1hzeT^BvqmbVbpcb7R_35wqP zK#lWOhu1i~5mY-$py+$lVI5RG8ORpr-2%=7KL#@7-d90Lz?-|&^3BUZ@w45a`tf#9 z{O)7mY2cSZwhHf2Q0+Y$=B@EP4phCTf}*!G!IQx&K;;_*)t{>!Zg*G)Rc;I_->X6O ze>V^&P2d~A z+d$QOA(No`xjReg{-PzYnVX|8#f)n~&o29A4^h zox|%veOCjY0lwU&zt!RU-TV7M(f5}@<$Ktr|JdOXSJ-;a07b_O99|CUyG`Kn;0>Va ztAJ|P&7juLEui{&m&1D;e%Rr?4nN`WQw~4t@N*9T%HiLDqK5}S&C54j`a=#M0mT;{ zb?+Z@=|2RuK7In81^yQ(Iz8)3OHWsVTZxC@Rp2MU5ImuWzJZy;2f-H-U%blmhQRlN z3&AHq(L={-cqX_7goM0t@M7>|Af(`Z4?G;4*UOqcjBmi(h(EB#(p{y`$^oATMOP1l zWbuCKaOGOdKVAWLkp3l5`_j)q@oRsbZO0Z+>u$`&?*jGye(*@}Hx7?jZ{x=~JlWxy z;5_o313nGx1=a4gpvHY8sP!=bik@!-j{!^I(O?Y}z3c?_{?!iu02H0w0v-e20V@B8 zK;`=cDEj#{sCItE;nzX&r-#9#z<&X?u73)u|Hs12VHw_Y!DGNWDEiwCs+>21qR+R1 z`u=X0{!x&r^Zv}G|0noN;&V3Ic0CJJ{_{Y!YXLYPyaLp`hu|gPt)S}pA}Bih3aEZP zP+Hif*s(c;JM(9p!S28gPq{JLDAh` zgU3gBFD6jZ)3Q1kmDhp%zzw}NWVAA)Mn`@nZGe|Lc&B;NM|_6qRlpvrj& z=B0YR1FFA|fyaX0jkf*Afr_6D-UOZvE&^``RnJF2wfB<_CqT9LOD_I*pz8S+sPXu= zOaH!${|Hq5zi{clc6h{goB!#c>Ny2e|DOXM4|alT*HTdB_JYc{5xfuF2A&O`c$014 zB2evE3Tj+dfNEzCD1Ng6RQd}*wdW>K{Tc=#A+H9i{Lh1@f)9Yo|0s9`_ye#LyfCnQ zWC#?UkAN&C?{zNyo1o_Vhu~@8Q3bnx&vv*3RJ+!I9pGkA?br#boi78`zBjw{w}Tpo zcY{Un1Md9^L|9thsi64KDEKPyHc;zuUdiqg{otF4-wM6~ydbpoe;ibQKLd*H{~A=k zzw6?^0@be5hHZb&1{Gfl9synn9uD?_M}ix`lfmbMSArp^ak&#zJ^v2sJFjf}b0jFf zb`p33I3LuwTr(-%3#J?RD|Z4u`<=Nxu%f0Q@~r>E3Op^c@#{d1>pMUn zycg^S{~kO8oU_By({n(zcO9tuH#yu2D*rX0`0J}d<-6Uz-vf%??*xwlKLE}L{{&RN ze{ks!JA4cjpZzJQ@i=kR^3&5njmK+1jmKL-m3Nzq-vKTqeh=6Qeisy7pHQ*u^#bsA z;!8l)dp~$I_#miyzU9*Y89ehacoTR8cz6w+l=sKPw%@-3)t|%aHh!eT;~bs@>iy|1 zewK@$>#ze<{ar4;*x_ZM#&x;F9*1i|^|K#Td#?u7-kThbfU2+VFauToZczDO3M&7r zL6!4H@M+*XLFKz0)c1QF-r?|W_x?i;Kj!dH9e&c`XF$!z1gLVp=+f_Z_#mkIz6Kr( ze$%Bt3Tl1)02F`xH7Ghg>xIZhU_Uqvz7i~hkAq|2Py!DGzvOUPYVBcrL8jbW*0A#H zonRmFZ-b(Xj?Bsp0l1O)M_v3kpvGYfg)`m8=Jp@p2MK>eI9G}M?zUk5s=Q5vJ%slW z7Ln&fLY3$LO~`-e@o*mLp9DWcxQ+01f_`U{p8tNq!*;?y5xzmtZ;5+#soM4+$?KT**7lVe3zJ^Y4+sc5Z%`x$mFfQqBXsc|YMDge@i) z@*emc@@yrX%QIqw+23C5-V0XpuEWLu&0&Wt_aWlGOA{<7j1ZQ&_s`%Nk<&Ytxaj1k z1o5R$6ZHE6;rGoGYX|%X0wm^L?Y?)fJfHZFT%^b0zk@fs=heIye;jQ2?hV96`J0Conu#)Fzf$swKdk*2Vdf;c)H28DEg@jYcr{9@` zBY9p*cq`A(178QOCA@^Ng0R@-{Rz*Td0q$RKbD{O0@6AO^9UyskMoxf|5nJmXAtyz zknmsTsr}FHmgwu4*AT=v_4_4ZF7K`f zFHi!%eS}vLwkp!{`!3I`TwQZ{?&TR);5`@olFPRXTuyw0i+=*Vk8l~`6hcUNCL#Yl zlf2SZzD>dx38(Y?Y{I344FvseC5RuslJFM7X2Kb~ldf|t&-w2k-NRL+zlZ0)B%H%@ z4b=Yh7vQf6`u#5p-b=xV@BtUU6#PGgA@c79pCDYz^DSVJ@CStB39ltAB>gzTS%hKY z`aPZJ#6Ef}cs_yWZxZfxX@3f?CT!x}%Us$H@a=>y(!LJ9m+&5cE5na6Rug5`M_@ zUlG1V$ba))85cYJFfZOn=qCP0;C~XXB;>zic=#CM%Xxyso4|i@&(8;sa?gUh2tR9y zznteX;biLg9QY~1R|u;JZz7yd_*cS532O-Yol4%%+ehzDz<%OCaPd>Ye|FD;BMF!A z{^Q`Igm)AEobYFahY7z&xS#OHgy#{q5k?6=CVYg@!?*eG**x4y*h1Py@O;8W1pVGj z7$S@*!tV@1FX1%u{=E|Bca(xg*odlOXX+Q@tWv5ya`QVIej)UuS|d#AN!SQWJp0Py z?~ZGsKfj}xB}rIoY*(6+I@9HT)bOjpxIPT3g{YjxS?b40o?MF?ez+@28{Jen9EFwA z_DWC)E7V%eQd3`6i(Z(8{xBceR&8(3H@~A2$D>(&dt9f|6yWxp>|-d5w1sXeNtji6Qx{hd)`go;g_6gIzOEU08*XX2OQF!kHoZ@%4L z3(TOI?;0bKK51`oP)Wj|G;aHC+B=&MQ!1bSWi6|Ami$sMPScyu>W7Vt#97i7nS51^ zYFQ&}zO>Pn*Kw^eGWk}q$(K9BaJ2bOk;zx%VK7;vB6^iZyF;2;7&jHR#CVzdYgg&- zM)SAd{2efVhgNwV>!MOAtoddDeR^fawv(qYN#dk4^%nRrkY!hNpX2rT8wR&*_T$2i zu-Nc=`n{gvBpMBZTI%&w3PCLjYCM#~ga^MT2?|ls>!~ME#mgf}8RCtU(I2eyK{~># zYG}Vq8=1cJda^Qv38alAs3`B6TDfBK?hcbe5bfYgZ&i>&wB9O6FUeAUw<@fa$?vU- z%6`XEGZvj@Ezu%xRUB7Bit1PcwS|d4ltA$id|yyW!_FCBFR(9_YqORbnNrizRY|Zr zG7TGulLoB~QyRj0jcG&@HE3$H$*ZzTIWXN?mC;i&t{&Xl=Z`T+!%@+!8h<#5Dq*SH z-x|^*mSj+%SQ5O|K_jTpv(=0mL*Z}Cl9CGV7>pCfpwnAD64c5RN!Jo@bzF&I04-y? zI<8iOt~9I%3A{$kq!BV0DOqbZ=5T>u4jcYRSg9{iFN@G%5*0+WWYFmIf&a+Ox94Q> z$j$HaS#D!d%z8HsOk%pA7Fxbk8TVH24vQmRubtdpviTi$p^DRyo+rdv!*Dj2rf59u z(=Gbb8y3TAfm!1rs?u@RnvGUqie7J&(D*nRr$eQ1SIDwWLc=J6N+sS&N15TU+v|l; z%CWCefW*++VE>CtDFS`-fgs`V^LBcE6Z4@MM~yopZ{!(C#oxO+3yY2_PGG z&X}pS6HxMtBP^66o3G!&m?#HZA6%s|(plupW@OjgE zm1)xr7iCmUvSCs--7@#de7uiJG_9V*jkp*~Qg!TjY95IrQ`5F>-83y}+xp(AX%fC? zN?Rz&dfJPaO`+zCZ%ljTc8{s)Ve2+B^`+Z~rzX!-^^`HRW5br5Rmy;UWfl%n@&QYnvA~@pNL;P~c~9e7 zW!x`m$4UK3v7|6AnyChAOemYDR+X zt4Ii90_xf^b6KS?P6|e}_IL`Ta?Rfuj{6;IEn6(JgFb+yLf?({#G~m>r`LyqhaA$E zL<&+o03+b`Wk|^4MM#f@I1P;qvb|n`1hq&^x5kiOf&xt}gvB6Bjm|h-UKzF}!C0KM zvX(Vh)M&2_3+vDr!Ho%0e!NiAVzRA7L21X)Gv?vvO%lP=R1-P}vx@RiaS_BoN)G=gp4O zggaLnExr=fMrl<{!=j|rh4_yUn?{Wg`gOxQ63{j39L8XfP$@&6_=P0inQEV)*->i9 zsEFntiDxtir3?8<1V*Q;Y+MbPjf56i4~#OddJKzEiZ~Tqvnx(m^cXnaWd;o;=g?a+ z(*Qr|cC8y48W>dnr3T4zF}oI*3(#jZKt)+E%|pxxi%G7Ipe&P&s%Td0daG=a#N06> z<6Vuo3)bftvxq}x zt$yjyBasm9+^?S4VNQA2g(^R3(&$H-B#3nbWtfe6&nUu@>`aP#(AA*Htu1R^vufMg z6|zipdz(?(v1M$g;3R-_CQIKOdz&S>wQd4%|KXS|o=&5~<}43u0^8=a%#%Atvwmfw zxjwsZ5xYcKQi2(@olHTR6;MZv!asAezgjHK3@Ce7YfZ+1?4H5$KikJC@EvsV6Zu>R3_Cpvz50R2D-g17!G7g z*is8M&n#B)QDXow)4U~N3-Gq22=nYm1O48BmKk%U-Ib-vUfO_-Az4A6nslQ)i<2-P zvavvIN|ow7AhKfW2kd@=@Fly28Ie*}XA2S+Fl5gFF{4%hfEDc=iHajr%(E1CXvG}j z2TiN$40Su^Zqy)S35MQ~hg*%s5{(YnKqJU%Ib)$|W(}<|&Jq|4)R3G8wn-xo9{!pVb;=|Ytn%-O*VWom(xh$su)%GQ_{3NDu}fX(`zvc4#ez- z@N*x_yr@FvgJxxMO&D|v4~9xOWT#8jr&e-Fr#-cX-(12U<3;?7|NjQ4US9vHC)IW z3U)-J{HiD4c_dW`8*B_U|3zp?+x6xp#zgWW45c<|>$59X zY}arOI%+Jjddailr()8EX|M#*GDi3Fu0|W%Uh%z??=i%i;z%*W_+csWiki2cX3uup5iT^bD5DHuS06RwIvgL=BmWf%*&sAY9+?`2z zY#t|F6@?8W28JGwJEbR$Fas;*jWindblJj%rMQ@Om(0lks+>-;x-mX13~LLGNF}>L zXSxuXKssQ$a2~QJr&j2g+YR~5V?K@A71yaenYYsA6lsL%FVTEbE79J#7Rp%FJ7+S%NVQ>)P9c78#5=NS!l~Dmpoz$7-)#M9$hk8ID5M6dQI@Cx8%y(G z!_<&#k8TKOfCO)Y(T@O%^C&3^u}fR zf7ctsqH{yclcvPsg$SeCT+)T-mO^xxgVJPgQ;{$P$p9d&nK{Z!vTIvbXOhvg5Ky$B z*-mnUfD|CO3iA|nBfJL%EIni0R)U{nPj#oHW#y^aIKG>jgf(w!5^CwRBq^rt#TzxX zJ;|zKQ`4q?h;A^oc$9#tNrPcsX%$w2QBv|Qwj|hN>6R?bW6GAarnRyqE!VqSlS~IE z3%9+SjJvM2CeW|RXj9>7Ny}B6mL&Dc3R_II7t|9k$jTn)jNWiq@L+=8j;uncc~#^L zG-j_Fm1x$)59Wf%LEC*VW(O z)!S?M0~w~(J7bYEm$q)*vi|<-m!;|T-I@8_aKlqkY)d0&sNwpd>z@#ys`heoT>DK56XTj6E(QA zoF`l30ZQH<{p2(kG*8j3e0%Wx!#YGbXtt(=ez2TQNR!{nf_7h*S$^5(A9D!bIHwt7 zPF3yt^iFTUN?Kj(OI=sVC=%C}`Bny-yVcm^y86>{RO(ulmD8@Fc$q(UU`yB5aEx=0 zxYpInTrTsMELwbV*P=_hmR#yDx@_4c&%0<5zqy;R$8;e@*HYAqI9cYet^^q;U;{xC z@AfapSA*DLa;N!v;c&9Bb8i3o{xy@mTim^9E(#APQ8dq-S4k0Eh-*hwTaLnv z+ZICQwxPbRrIYzo7iR=rYn%~nnZL9UHJYtl#$of^0dw5b)h9WJ6AXL$ldiaUITm^y z1g+?(`72iVi~JYA*f&p$JN+w&lGi^+>F1x%(|muihHud#oA(NTF&UODpNn}{dO*lw zfVJ*u(RL!2qpbvpZmD0-{E538#+Hd)yPiz!ZA|Qy84D#8BkM576#)_j4oaBCDP+3G z;=Vo0{jfq_`8w6ZtkGo)G~SC7pF*3+?0Z#eTo-lVh9Huk_~rhKr5GM#zjf+OU8fio zHB>StwYNDgvM61z+8rFby{*m!$m=%e#pVmS6|}$EMB{ShmzTL$Ba&2+sM${B!l+?s zTK3E^w)SWn$MJa684nb>Mdn60Qwpw;&`GtPf8X@mbS0D~_U@S2(~Tl`z(VjYRVmG8 z*ka`DIHjE2a<-$@rBM+%7+O>OX@ z?Q`+TPp2hd41iplA22;ro}KR`Qcu|6RclmPr^NBCjAG+lX`$c3fQ2ET!_Hw0YZ7+uBW*sUU)?v>HR-b##vr92#+ zf8|=(R0;Ku6^5hKQr`>}_BOd#GPd|wrdpV02k97t4|Hlpn}cS*V>rlmbxzBxox<-J z!#dIFwyXVrC?8CDep(}|T3>((rI^#`)++0TnfI%J*2;{_^x;`gOfWJB+hTO;Y10eS zXqACKu@}1oGu4ef(rCdj7@Zv%K8LUg)5GJZt}~k4JyUL(tW`!tPMY+d0m3=6pMwx% zX<0Ko%qdthIWai3$WxQ{_J%A&Gm;#$Ozeek(G{^T3^v%_qNJR0EH`KjeLAYt@pN2Z zSBc;)_<4veGin-OnF8g#Nkz2W#8?}&ecuO~ROj#eq~$^4yfAZ2hMf3_fzuoLa)w?{ zv4KUUV$S8fq2kEIT^c<6Ikh6S6Z;*8JE>~3#&f66)a(FLQrQP|V9oInmJS$}{5s(o zo9RBggA(N5iCMJHdAAN5*W>I-8D?vsfq}7iF*1HhT^(k&+%Orrp!WZ1AZ zHDdN0dSVIf81G)dA7E-(d(Je=|puEJ4{#c6W`*PydD41$dj*E*OWx%LZZ!*`I1p2E@l z?bf7CW}3V6l*Q6A@$z~;Fpa6etTyQb4KHBJ;e=7@8WC+#Qz~4bU7Yg-aqo#eyq)xf zmKcNL+?Hlkqk}j@hYifePkBRUQ)HUejXQan z=@W8Zb3;vYCvFxNFYI)3bgW1N@fOeN0;{lNd#B`3lZuK(ssv=rAi6?u@cQJ=ZCt^h zbR9Dgog1(A!I1DQA3xhoE6z^Ub<_wa*D~qouPmGvCvfy6mJ%9n$R#&3j!d8&snMEQ zndX?^-A%bMk@DGR6RTcxY~yjgYLhLD>+&BDY7_65B7+yH0!tt7Y&ns0qB8*PFdpV$dIleI zyiw{XJo4|IwCLgJA_C>388jZ}N+M8CIFh zoIZwIdC^M>kyHqo`@TWIWX# zVce;i6r6NeLX{AjG1i9`S94>Wz+Q*1g{p6>@ur)c1Her;`Qh*|Ix9Kg#>NCNaj)IE z^Qu^gn0jzW@AmT{F?~tntQgT3HN#jBhGDK4CKw{rXuQz#anoAmgmKaxosEj?bo=#3 zw22ZE18?7U@S2H1WaVJX>xYZ_E1BN4vw?5glsT;t^#&kHW8cgY;cN%^E(d?;qt9~39{ z$}yf?{eg_I2F7`;8ml1hWT}QEGc$y^&FMg;zujqG+YnCQH7@kAWAOhzWcXYoi0e>B z=}|qCO%{(BvvJ~CR0(i0RU+;FmyP z^RjOAx)?537E45i*o}S#!!Rm}87?y-)=+5TSg-XT1&F@JbUR5~oAHk!iWiiu)ZMcG z;cl-Vs;`!xR_L6M=zk89v#&Fzz;6wHK~_!ZV~Mh!Y*U$I1;^Oo7~ zysjplwb0p;Ss^Yh7h~*koSkJjH&-UmNKE?niJA+U+@&~cidK`S zg4`mTq81o|*yw>NeUb>x1Rq+dhn7D-c$`&J+>SEsn3Z*4_Xn7^Jz>?YfVO5^#YkdK zJ{HBOi{3)SWL;Ami^mx@CNrmF7+NvL=5GYHA}*PhX3dF;)QSagG$>SZq_+K1nC-ojTQP zBWLCrQ7IbEk83QEH&X|=A|p3abCfgfoxQoxo9|+}zQF#a!#e(dk(4V8nRtk&8w{a` zM3k7D5X`1^`FH_#!`&9<<#O_Xb%e3)sZdbY9OSQV+Aci4T*@{!G zOcl!kLb49z*d5J(ATwj0{j{XhoB3)(DXMw|{yV1;`jTI6K(fQy!SuD=ZYa6y4g8l^ z`TYiFC(g>Tz2boLI}QI3MhqFhEytz@h&AjYTw^iY9Gk2zI|L}m=8ic#8#mZocB5PA zxT0=GOtiFkrhKg%0YueC$=WR}vl6eWaDSV6)C}%$i4f$+Y(yKWVog5~=#4f)aGUbf ziim>!gBu{`P!m}NQ9&}9)q8bCf*q>c?-SVQT=leCi522FXMP&Hwn85Q4P{y z%k>D1L9MqV_&R5yRzNTsr;ab-$n+yOM>RJ&TkHWcXa>x=vyr5Xi;yl&w3erVM?HO+MJ=o#UdpExGm5TH6zv@fv)b$}3XFftU?xn2^bmXdMl^&3SwbH2 zbf;oVR;nV0AxXGv6$pdt-5m;9yq(_>AjOtC*Q0aQYEUxMiOouh)~svpMC9GYvecX& zk*86?jq)o)Pb#AT!el#ra=XUfwaB;&22E^n6&ic7vE5nU6GS}Jm))=c zqhq;i8PaxoCJ*t`SzphMcRo*5<)Uz zQZyzrELausuPs^R8P&*2Cs+{j`x&fvVwyp~m=)|LjTTEytBu0fC5#Xu2icK9&g}zJ z%>xTm+6yzW5cvjJ&j9U9XmJpK^D|L^YJyaZj;|$wEg1SWf*4*C=GunLHv!f{L)#P@ z7{>u?d#@oacQWWXSFv|Z|fG{MjaTY^k2L+Om-HW>^ zbkf?aA!Gd~1NQ${kiMptS`(MG{In>*(qzSk%?BC)s7!avjB@-xW)zw`*Cc^hb5G8b z=^%rE^HrHSYwm5cy&^JgHT<`)h(K0NK4hpshB)nT&W1!2&BYK%L30Lc?1r^U+`;pV zdlSZ+jJ=J6JDKX?=epD(LyGxp?iW~nA6?I=Z&rvx&9t6trhs0}r4g&x4XwSOyA#$p z<7_e;WRvNa@t_~$fxQMHeb4EG?!p5pc<<3P(=y|DWZKno+UpOKTvY$rrX-Oxf6oPo$+wWK##Q@{lP`=+fom61 zLsRBxWzaKy+I!bx8Pm}T9Y$=iuyL~Jnu;q xV-@OIe~5*0RvxsoE^w+3FaPD8yn0*RcxPQ!iz{&cpQ>6%VA-o%T5d0k{9igzYt;Y% literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po new file mode 100644 index 0000000..253672e --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po @@ -0,0 +1,1394 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Bruno Brouard , 2021 +# Simon Charette , 2012 +# Claude Paroz , 2013-2024 +# Claude Paroz , 2011 +# Jannis Leidel , 2011 +# Jean-Baptiste Mora, 2014 +# Larlet David , 2011 +# Marie-Cécile Gohier , 2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Claude Paroz , 2013-2024\n" +"Language-Team: French (http://app.transifex.com/django/django/language/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabe" + +msgid "Algerian Arabic" +msgstr "Arabe algérien" + +msgid "Asturian" +msgstr "Asturien" + +msgid "Azerbaijani" +msgstr "Azéri" + +msgid "Bulgarian" +msgstr "Bulgare" + +msgid "Belarusian" +msgstr "Biélorusse" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Breton" + +msgid "Bosnian" +msgstr "Bosniaque" + +msgid "Catalan" +msgstr "Catalan" + +msgid "Central Kurdish (Sorani)" +msgstr "Kurde central (sorani)" + +msgid "Czech" +msgstr "Tchèque" + +msgid "Welsh" +msgstr "Gallois" + +msgid "Danish" +msgstr "Danois" + +msgid "German" +msgstr "Allemand" + +msgid "Lower Sorbian" +msgstr "Bas-sorabe" + +msgid "Greek" +msgstr "Grec" + +msgid "English" +msgstr "Anglais" + +msgid "Australian English" +msgstr "Anglais australien" + +msgid "British English" +msgstr "Anglais britannique" + +msgid "Esperanto" +msgstr "Espéranto" + +msgid "Spanish" +msgstr "Espagnol" + +msgid "Argentinian Spanish" +msgstr "Espagnol argentin" + +msgid "Colombian Spanish" +msgstr "Espagnol colombien" + +msgid "Mexican Spanish" +msgstr "Espagnol mexicain" + +msgid "Nicaraguan Spanish" +msgstr "Espagnol nicaraguayen" + +msgid "Venezuelan Spanish" +msgstr "Espagnol vénézuélien" + +msgid "Estonian" +msgstr "Estonien" + +msgid "Basque" +msgstr "Basque" + +msgid "Persian" +msgstr "Perse" + +msgid "Finnish" +msgstr "Finlandais" + +msgid "French" +msgstr "Français" + +msgid "Frisian" +msgstr "Frison" + +msgid "Irish" +msgstr "Irlandais" + +msgid "Scottish Gaelic" +msgstr "Gaélique écossais" + +msgid "Galician" +msgstr "Galicien" + +msgid "Hebrew" +msgstr "Hébreu" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croate" + +msgid "Upper Sorbian" +msgstr "Haut-sorabe" + +msgid "Hungarian" +msgstr "Hongrois" + +msgid "Armenian" +msgstr "Arménien" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonésien" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandais" + +msgid "Italian" +msgstr "Italien" + +msgid "Japanese" +msgstr "Japonais" + +msgid "Georgian" +msgstr "Géorgien" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Kazakh" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Coréen" + +msgid "Kyrgyz" +msgstr "Kirghiz" + +msgid "Luxembourgish" +msgstr "Luxembourgeois" + +msgid "Lithuanian" +msgstr "Lituanien" + +msgid "Latvian" +msgstr "Letton" + +msgid "Macedonian" +msgstr "Macédonien" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongole" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malais" + +msgid "Burmese" +msgstr "Birman" + +msgid "Norwegian Bokmål" +msgstr "Norvégien bokmål" + +msgid "Nepali" +msgstr "Népalais" + +msgid "Dutch" +msgstr "Néerlandais" + +msgid "Norwegian Nynorsk" +msgstr "Norvégien nynorsk" + +msgid "Ossetic" +msgstr "Ossète" + +msgid "Punjabi" +msgstr "Penjabi" + +msgid "Polish" +msgstr "Polonais" + +msgid "Portuguese" +msgstr "Portugais" + +msgid "Brazilian Portuguese" +msgstr "Portugais brésilien" + +msgid "Romanian" +msgstr "Roumain" + +msgid "Russian" +msgstr "Russe" + +msgid "Slovak" +msgstr "Slovaque" + +msgid "Slovenian" +msgstr "Slovène" + +msgid "Albanian" +msgstr "Albanais" + +msgid "Serbian" +msgstr "Serbe" + +msgid "Serbian Latin" +msgstr "Serbe latin" + +msgid "Swedish" +msgstr "Suédois" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamoul" + +msgid "Telugu" +msgstr "Télougou" + +msgid "Tajik" +msgstr "Tadjik" + +msgid "Thai" +msgstr "Thaï" + +msgid "Turkmen" +msgstr "Turkmène" + +msgid "Turkish" +msgstr "Turc" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Oudmourte" + +msgid "Uyghur" +msgstr "Ouïghour" + +msgid "Ukrainian" +msgstr "Ukrainien" + +msgid "Urdu" +msgstr "Ourdou" + +msgid "Uzbek" +msgstr "Ouzbek" + +msgid "Vietnamese" +msgstr "Vietnamien" + +msgid "Simplified Chinese" +msgstr "Chinois simplifié" + +msgid "Traditional Chinese" +msgstr "Chinois traditionnel" + +msgid "Messages" +msgstr "Messages" + +msgid "Site Maps" +msgstr "Plans des sites" + +msgid "Static Files" +msgstr "Fichiers statiques" + +msgid "Syndication" +msgstr "Syndication" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Ce numéro de page n’est pas un nombre entier" + +msgid "That page number is less than 1" +msgstr "Ce numéro de page est plus petit que 1" + +msgid "That page contains no results" +msgstr "Cette page ne contient aucun résultat" + +msgid "Enter a valid value." +msgstr "Saisissez une valeur valide." + +msgid "Enter a valid domain name." +msgstr "Saisissez un nom de domaine valide." + +msgid "Enter a valid URL." +msgstr "Saisissez une URL valide." + +msgid "Enter a valid integer." +msgstr "Saisissez un nombre entier valide." + +msgid "Enter a valid email address." +msgstr "Saisissez une adresse de courriel valide." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Ce champ ne doit contenir que des lettres, des nombres, des tirets bas (_) " +"et des traits d’union." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Ce champ ne doit contenir que des caractères Unicode, des nombres, des " +"tirets bas (_) et des traits d’union." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Saisissez une adresse %(protocol)s valide." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 ou IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Saisissez uniquement des chiffres séparés par des virgules." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Assurez-vous que cette valeur est %(limit_value)s (actuellement " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Assurez-vous que cette valeur est inférieure ou égale à %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Assurez-vous que cette valeur est supérieure ou égale à %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Assurez-vous que cette valeur est un multiple de la taille de pas " +"%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Assurez-vous que cette valeur est un multiple de la taille de pas " +"%(limit_value)s, débutant à %(offset)s, par ex. %(offset)s, " +"%(valid_value1)s, %(valid_value2)s, etc." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assurez-vous que cette valeur comporte au moins %(limit_value)d caractère " +"(actuellement %(show_value)d)." +msgstr[1] "" +"Assurez-vous que cette valeur comporte au moins %(limit_value)d caractères " +"(actuellement %(show_value)d)." +msgstr[2] "" +"Assurez-vous que cette valeur comporte au moins %(limit_value)d caractères " +"(actuellement %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assurez-vous que cette valeur comporte au plus %(limit_value)d caractère " +"(actuellement %(show_value)d)." +msgstr[1] "" +"Assurez-vous que cette valeur comporte au plus %(limit_value)d caractères " +"(actuellement %(show_value)d)." +msgstr[2] "" +"Assurez-vous que cette valeur comporte au plus %(limit_value)d caractères " +"(actuellement %(show_value)d)." + +msgid "Enter a number." +msgstr "Saisissez un nombre." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Assurez-vous qu'il n'y a pas plus de %(max)s chiffre au total." +msgstr[1] "Assurez-vous qu’il n’y a pas plus de %(max)s chiffres au total." +msgstr[2] "Assurez-vous qu’il n’y a pas plus de %(max)s chiffres au total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Assurez-vous qu'il n'y a pas plus de %(max)s chiffre après la virgule." +msgstr[1] "" +"Assurez-vous qu’il n’y a pas plus de %(max)s chiffres après la virgule." +msgstr[2] "" +"Assurez-vous qu’il n’y a pas plus de %(max)s chiffres après la virgule." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Assurez-vous qu'il n'y a pas plus de %(max)s chiffre avant la virgule." +msgstr[1] "" +"Assurez-vous qu’il n’y a pas plus de %(max)s chiffres avant la virgule." +msgstr[2] "" +"Assurez-vous qu’il n’y a pas plus de %(max)s chiffres avant la virgule." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"L'extension de fichier « %(extension)s » n’est pas autorisée. Les extensions " +"autorisées sont : %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Le caractère nul n’est pas autorisé." + +msgid "and" +msgstr "et" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Un objet %(model_name)s avec ces champs %(field_labels)s existe déjà." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "La contrainte « %(name)s » n’est pas respectée." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "La valeur « %(value)r » n’est pas un choix valide." + +msgid "This field cannot be null." +msgstr "Ce champ ne peut pas contenir la valeur nulle." + +msgid "This field cannot be blank." +msgstr "Ce champ ne peut pas être vide." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Un objet %(model_name)s avec ce champ %(field_label)s existe déjà." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s doit être unique pour la partie %(lookup_type)s de " +"%(date_field_label)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Champ de type : %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "La valeur « %(value)s » doit être soit True (vrai), soit False (faux)." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" +"La valeur « %(value)s » doit être True (vrai), False (faux) ou None (vide)." + +msgid "Boolean (Either True or False)" +msgstr "Booléen (soit True (vrai) ou False (faux))" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Chaîne de caractères (jusqu'à %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Chaîne de caractères (illimitée)" + +msgid "Comma-separated integers" +msgstr "Des entiers séparés par une virgule" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Le format de date de la valeur « %(value)s » n’est pas valide. Le format " +"correct est AAAA-MM-JJ." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Le format de date de la valeur « %(value)s » est correct (AAAA-MM-JJ), mais " +"la date n’est pas valide." + +msgid "Date (without time)" +msgstr "Date (sans l’heure)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Le format de la valeur « %(value)s » n’est pas valide. Le format correct est " +"AAAA-MM-JJ HH:MM[:ss[.uuuuuu]][FH]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Le format de date de la valeur « %(value)s » est correct (AAAA-MM-JJ HH:MM[:" +"ss[.uuuuuu]][FH]), mais la date ou l’heure n’est pas valide." + +msgid "Date (with time)" +msgstr "Date (avec l’heure)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "La valeur « %(value)s » doit être un nombre décimal." + +msgid "Decimal number" +msgstr "Nombre décimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Le format de la valeur « %(value)s » n’est pas valide. Le format correct est " +"[JJ] [[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Durée" + +msgid "Email address" +msgstr "Adresse électronique" + +msgid "File path" +msgstr "Chemin vers le fichier" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "La valeur « %(value)s » doit être un nombre à virgule flottante." + +msgid "Floating point number" +msgstr "Nombre à virgule flottante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "La valeur « %(value)s » doit être un nombre entier." + +msgid "Integer" +msgstr "Entier" + +msgid "Big (8 byte) integer" +msgstr "Grand entier (8 octets)" + +msgid "Small integer" +msgstr "Petit nombre entier" + +msgid "IPv4 address" +msgstr "Adresse IPv4" + +msgid "IP address" +msgstr "Adresse IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" +"La valeur « %(value)s » doit être None (vide), True (vrai) ou False (faux)." + +msgid "Boolean (Either True, False or None)" +msgstr "Booléen (soit None (vide), True (vrai) ou False (faux))" + +msgid "Positive big integer" +msgstr "Grand nombre entier positif" + +msgid "Positive integer" +msgstr "Nombre entier positif" + +msgid "Positive small integer" +msgstr "Petit nombre entier positif" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (jusqu'à %(max_length)s car.)" + +msgid "Text" +msgstr "Texte" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Le format de la valeur « %(value)s » n’est pas valide. Le format correct est " +"HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Le format de la valeur « %(value)s » est correct (HH:MM[:ss[.uuuuuu]]), mais " +"l’heure n’est pas valide." + +msgid "Time" +msgstr "Heure" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Données binaires brutes" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "La valeur « %(value)s » n’est pas un UUID valide." + +msgid "Universally unique identifier" +msgstr "Identifiant unique universel" + +msgid "File" +msgstr "Fichier" + +msgid "Image" +msgstr "Image" + +msgid "A JSON object" +msgstr "Un objet JSON" + +msgid "Value must be valid JSON." +msgstr "La valeur doit respecter la syntaxe JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "L’instance %(model)s avec %(value)r dans %(field)s n’existe pas." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clé étrangère (type défini par le champ lié)" + +msgid "One-to-one relationship" +msgstr "Relation un à un" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relation %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relations %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relation plusieurs à plusieurs" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Ce champ est obligatoire." + +msgid "Enter a whole number." +msgstr "Saisissez un nombre entier." + +msgid "Enter a valid date." +msgstr "Saisissez une date valide." + +msgid "Enter a valid time." +msgstr "Saisissez une heure valide." + +msgid "Enter a valid date/time." +msgstr "Saisissez une date et une heure valides." + +msgid "Enter a valid duration." +msgstr "Saisissez une durée valide." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Le nombre de jours doit être entre {min_days} et {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Aucun fichier n’a été soumis. Vérifiez le type d’encodage du formulaire." + +msgid "No file was submitted." +msgstr "Aucun fichier n’a été soumis." + +msgid "The submitted file is empty." +msgstr "Le fichier soumis est vide." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Assurez-vous que ce nom de fichier comporte au plus %(max)d caractère " +"(actuellement %(length)d)." +msgstr[1] "" +"Assurez-vous que ce nom de fichier comporte au plus %(max)d caractères " +"(actuellement %(length)d)." +msgstr[2] "" +"Assurez-vous que ce nom de fichier comporte au plus %(max)d caractères " +"(actuellement %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Envoyez un fichier ou cochez la case d’effacement, mais pas les deux." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Téléversez une image valide. Le fichier que vous avez transféré n’est pas " +"une image ou bien est corrompu." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Sélectionnez un choix valide. %(value)s n’en fait pas partie." + +msgid "Enter a list of values." +msgstr "Saisissez une liste de valeurs." + +msgid "Enter a complete value." +msgstr "Saisissez une valeur complète." + +msgid "Enter a valid UUID." +msgstr "Saisissez un UUID valide." + +msgid "Enter a valid JSON." +msgstr "Saisissez du contenu JSON valide." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr " :" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(champ masqué %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Des données du formulaire ManagementForm sont manquantes ou ont été " +"manipulées. Champs manquants : %(field_names)s. Vous pourriez créer un " +"rapport de bogue si le problème persiste." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Veuillez soumettre au plus %(num)d formulaire." +msgstr[1] "Veuillez soumettre au plus %(num)d formulaires." +msgstr[2] "Veuillez soumettre au plus %(num)d formulaires." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Veuillez soumettre au moins %(num)d formulaire." +msgstr[1] "Veuillez soumettre au moins %(num)d formulaires." +msgstr[2] "Veuillez soumettre au moins %(num)d formulaires." + +msgid "Order" +msgstr "Ordre" + +msgid "Delete" +msgstr "Supprimer" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Corrigez les données en double dans %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Corrigez les données en double dans %(field)s qui doit contenir des valeurs " +"uniques." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Corrigez les données en double dans %(field_name)s qui doit contenir des " +"valeurs uniques pour la partie %(lookup)s de %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Corrigez les valeurs en double ci-dessous." + +msgid "The inline value did not match the parent instance." +msgstr "La valeur en ligne ne correspond pas à l’instance parente." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Sélectionnez un choix valide. Ce choix ne fait pas partie de ceux " +"disponibles." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "« %(pk)s » n’est pas une valeur correcte." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"La valeur %(datetime)s n’a pas pu être interprétée dans le fuseau horaire " +"%(current_timezone)s ; elle est peut-être ambigüe ou elle n’existe pas." + +msgid "Clear" +msgstr "Effacer" + +msgid "Currently" +msgstr "Actuellement" + +msgid "Change" +msgstr "Modifier" + +msgid "Unknown" +msgstr "Inconnu" + +msgid "Yes" +msgstr "Oui" + +msgid "No" +msgstr "Non" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "oui,non,peut-être" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d octet" +msgstr[1] "%(size)d octets" +msgstr[2] "%(size)d octets" + +#, python-format +msgid "%s KB" +msgstr "%s Kio" + +#, python-format +msgid "%s MB" +msgstr "%s Mio" + +#, python-format +msgid "%s GB" +msgstr "%s Gio" + +#, python-format +msgid "%s TB" +msgstr "%s Tio" + +#, python-format +msgid "%s PB" +msgstr "%s Pio" + +msgid "p.m." +msgstr "après-midi" + +msgid "a.m." +msgstr "matin" + +msgid "PM" +msgstr "Après-midi" + +msgid "AM" +msgstr "Matin" + +msgid "midnight" +msgstr "minuit" + +msgid "noon" +msgstr "midi" + +msgid "Monday" +msgstr "lundi" + +msgid "Tuesday" +msgstr "mardi" + +msgid "Wednesday" +msgstr "mercredi" + +msgid "Thursday" +msgstr "jeudi" + +msgid "Friday" +msgstr "vendredi" + +msgid "Saturday" +msgstr "samedi" + +msgid "Sunday" +msgstr "dimanche" + +msgid "Mon" +msgstr "lun" + +msgid "Tue" +msgstr "mar" + +msgid "Wed" +msgstr "mer" + +msgid "Thu" +msgstr "jeu" + +msgid "Fri" +msgstr "ven" + +msgid "Sat" +msgstr "sam" + +msgid "Sun" +msgstr "dim" + +msgid "January" +msgstr "janvier" + +msgid "February" +msgstr "février" + +msgid "March" +msgstr "mars" + +msgid "April" +msgstr "avril" + +msgid "May" +msgstr "mai" + +msgid "June" +msgstr "juin" + +msgid "July" +msgstr "juillet" + +msgid "August" +msgstr "août" + +msgid "September" +msgstr "septembre" + +msgid "October" +msgstr "octobre" + +msgid "November" +msgstr "novembre" + +msgid "December" +msgstr "décembre" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "fév" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "avr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "jui" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aoû" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "déc" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "fév." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mars" + +msgctxt "abbrev. month" +msgid "April" +msgstr "avr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "mai" + +msgctxt "abbrev. month" +msgid "June" +msgstr "juin" + +msgctxt "abbrev. month" +msgid "July" +msgstr "juil." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "août" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "déc." + +msgctxt "alt. month" +msgid "January" +msgstr "Janvier" + +msgctxt "alt. month" +msgid "February" +msgstr "Février" + +msgctxt "alt. month" +msgid "March" +msgstr "Mars" + +msgctxt "alt. month" +msgid "April" +msgstr "Avril" + +msgctxt "alt. month" +msgid "May" +msgstr "Mai" + +msgctxt "alt. month" +msgid "June" +msgstr "Juin" + +msgctxt "alt. month" +msgid "July" +msgstr "Juillet" + +msgctxt "alt. month" +msgid "August" +msgstr "Août" + +msgctxt "alt. month" +msgid "September" +msgstr "Septembre" + +msgctxt "alt. month" +msgid "October" +msgstr "Octobre" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembre" + +msgctxt "alt. month" +msgid "December" +msgstr "Décembre" + +msgid "This is not a valid IPv6 address." +msgstr "Ceci n’est pas une adresse IPv6 valide." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ou" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d année" +msgstr[1] "%(num)d ans" +msgstr[2] "%(num)d ans" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mois" +msgstr[1] "%(num)d mois" +msgstr[2] "%(num)d mois" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d semaine" +msgstr[1] "%(num)d semaines" +msgstr[2] "%(num)d semaines" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d jour" +msgstr[1] "%(num)d jours" +msgstr[2] "%(num)d jours" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d heure" +msgstr[1] "%(num)d heures" +msgstr[2] "%(num)d heures" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minute" +msgstr[1] "%(num)d minutes" +msgstr[2] "%(num)d minutes" + +msgid "Forbidden" +msgstr "Interdit" + +msgid "CSRF verification failed. Request aborted." +msgstr "La vérification CSRF a échoué. La requête a été interrompue." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Vous voyez ce message parce que ce site HTTPS exige que le navigateur web " +"envoie un en-tête « Referer », ce qu’il n'a pas fait. Cet en-tête est exigé " +"pour des raisons de sécurité, afin de s’assurer que le navigateur n’ait pas " +"été piraté par un intervenant externe." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Si vous avez désactivé l’envoi des en-têtes « Referer » par votre " +"navigateur, veuillez les réactiver, au moins pour ce site ou pour les " +"connexions HTTPS, ou encore pour les requêtes de même origine (« same-" +"origin »)." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Si vous utilisez la balise " +"ou que vous incluez l’en-tête « Referrer-Policy: no-referrer », il est " +"préférable de les enlever. La protection CSRF exige que l’en-tête " +"``Referer`` effectue un contrôle de référant strict. Si vous vous souciez de " +"la confidentialité, utilisez des alternatives comme " +"pour les liens vers des sites tiers." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Vous voyez ce message parce que ce site exige la présence d’un cookie CSRF " +"lors de l’envoi de formulaires. Ce cookie est nécessaire pour des raisons de " +"sécurité, afin de s’assurer que le navigateur n’ait pas été piraté par un " +"intervenant externe." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Si vous avez désactivé l’envoi des cookies par votre navigateur, veuillez " +"les réactiver au moins pour ce site ou pour les requêtes de même origine " +"(« same-origin »)." + +msgid "More information is available with DEBUG=True." +msgstr "" +"Des informations plus détaillées sont affichées lorsque la variable DEBUG " +"vaut True." + +msgid "No year specified" +msgstr "Aucune année indiquée" + +msgid "Date out of range" +msgstr "Date hors limites" + +msgid "No month specified" +msgstr "Aucun mois indiqué" + +msgid "No day specified" +msgstr "Aucun jour indiqué" + +msgid "No week specified" +msgstr "Aucune semaine indiquée" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Pas de %(verbose_name_plural)s disponible" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Pas de %(verbose_name_plural)s disponible dans le futur car %(class_name)s." +"allow_future est faux (False)." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Le format « %(format)s » appliqué à la chaîne date « %(datestr)s » n’est pas " +"valide" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Aucun objet %(verbose_name)s trouvé en réponse à la requête" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"La page n’est pas la « dernière », elle ne peut pas non plus être convertie " +"en nombre entier." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Page non valide (%(page_number)s) : %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Liste vide et « %(class_name)s.allow_empty » est faux (False)." + +msgid "Directory indexes are not allowed here." +msgstr "Il n’est pas autorisé d’afficher le contenu de ce répertoire." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "« %(path)s » n’existe pas" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "L’installation s’est déroulée avec succès. Félicitations !" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Afficher les notes de publication de " +"Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Vous voyez cette page parce que votre fichier de réglages contient DEBUG=True et que vous n’avez pas " +"encore configuré d’URL." + +msgid "Django Documentation" +msgstr "Documentation de Django" + +msgid "Topics, references, & how-to’s" +msgstr "Thématiques, références et guides pratiques" + +msgid "Tutorial: A Polling App" +msgstr "Tutoriel : une application de sondage" + +msgid "Get started with Django" +msgstr "Premiers pas avec Django" + +msgid "Django Community" +msgstr "Communauté Django" + +msgid "Connect, get help, or contribute" +msgstr "Se connecter, obtenir de l’aide ou contribuer" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/fr/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fr/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71c65e96709aa3c61f5c37aed4a572e237b0f52d GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFS!ogA-?p9Tm1{_cWSbV5rg@h=BkyG$SfK_Fmq{pha z<}vaZx%QL?s8r=p6=>~Zbyhn&|KIM+?r8CF*r#gy{L@QsS&I7Jh^{fUcvH`^aX=vo zXhZ{p7+?_#9O8gSJRG0{I7EjaKrdyGkW$e9N~0bOP#=!a0EXxYjvZ<`BK*~4KJf{w z%~qt>#*-#wTUcwtgOp1?>9tF<_dwS-6F~$?%q7v^MK@EHjJI?mYBSN8i4J-CA3774 zfHicAArZXwAd-s`?I{v}wAz@Z7)k9Q17WjD0><)N|dCFGELN z$hPcSHac-N%X4H?>9CRM8E;iPys#~Ap_>=qsDiIsZ{1^jJ`21uDaznel2tfRaJ-wL jn|t9^j$xA}ubU4opVyA#IJ!F+o}sy40>|+jEzrLKXWy>{ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/fr/formats.py new file mode 100644 index 0000000..338d8ad --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/fr/formats.py @@ -0,0 +1,27 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j F Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7a0b0561a384718f91cce5a3a08583010b9182d3 GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYF BHDdq( literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a9291dda884d8d6c2fe7a9cfeb0aa7664c559f6 GIT binary patch literal 746 zcmZXS&u*JQ5XQkQ4z}Z@j@ll2@`Zz?7VcJ5l>{7616ce~#R>^gFIY~&M1U2UW1gbN zs<*yIAEVcv@&J{poVtr+7urS4eDmA+23U~|hkXjK&%fQ}J)o$cq-d@VF5cn0AOTU3 zLNugN2X+tx83Z6eEM!p^cF_?$T2hGnN<$9k9?m_~hkZ1F19S|J(a@$QClz}$o{hbV zQKze_SL-p6Obu~eu}DY-uj^;!<$rDgRNfgh?dEd2peKah9iHSqQh=AKZDGp-mFKCBI1V3I_lH-Ml!!bpZ!xj{XA< CQ^9xu literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/formats.py new file mode 100644 index 0000000..84f0657 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/fr_BE/formats.py @@ -0,0 +1,32 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j F Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fr_CA/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dca270b1b306722977fa8bfc43029fe667f7c128 GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFJ&`GMNxQ-Zo0I( z>udNiy6q|tP^rqI>fqQ3D1-Pp|2JpO43n^I2SelgUn~4ZVc74gsSg4*AJCgs1!4e$ zIKUwR2uK1FQhmd{1CK%iFd+szKX7mayPyM)K^L;%81@Wo)Gz7l;cRFZ zZImW&H($1!RnbFwN6&_PRFcS3k_eWx&Br_}SmfEMgXJCptYkQw=VG3NNZmcEQL7vr z=#Y~qoHF4Ig!a?V==6o_oD0g+7siVAnqJg5;vVp`Kh;HTH}@p^s3R71MZuKZnWig( z3A*N7d20IAOdSktNzh$IQ%(7>;MHR%3ig2v3|Z4nx1Rd?88zZ&bKR(%wyVwDPm=Tz zoa~m()rDp5^9=Cj=@?Bu5T)r{5w2WAS_ryeYC1SEWz8}KRjjeTYAF|z?q2GewV11y zKe3cXzrHIE!F1wSnV)9PtsmuyBPPot_SbplgnpKLiJN*w)X-O}&rY_=eg4Kg`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYF?- literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fr_CH/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fr_CH/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bb1cc9f4eb282c392868cb738f6aee7aa7049b24 GIT binary patch literal 746 zcmZXS&yJH&6vm-kI<%e6OegBXRW~e}DC`?!WC|UK12p`J;f91@FEkyYOn}CerBC6~ zxbro947aZ40Zh!Syq8WZ=p~%p*0dB~K!#;)A=ilz?6QHP{q-d@VF5cj~AOTU3 zLNugN2X+tx83Z6eEM!p^cF_quSy71lN<$9k9?m_~hkZ1F19S>c(a@$QXBB%po{znX zQK##wSL-p6Obu~eu}DY-ujV0^((~+t}WADXvXz7DrfPh z*Wn?aO?|hB^1}ZZC1vKz*>amko3ij%QBj6jkcZo(rEk{n{bF54FYm(ThY)x9=r-J} zGI5!0Vll~i1XgpMR|YdZm?;E?9>0|gQi1&0#_oW|Z+d+ga6XLdG@ zBP1$1I=GesItmIzM@NwO7ibPaO+!b^_w8=tB$ogytv{Zbw{O1h&71ez#fe)1o~Q6W zkN0Q1SMch)@Pp@fa1Q(fd)=K3WAF)Z2YeR%tQ>y@K8f-7An)-D z_%e7Kd>Wj%CkW=j%iz7>4R9I!2z(p-24r1-f|tMx6NQeKzz;E=2L-g<0%tM)8%}ut zSMCdfN5Dn!IdBVPof>34pO*7qf~@;HkoElpa-6?{*TBEP7r-m`2f+sT7Ko|fb8r>> zqU3Fm?Itf2Tmd;g3GRTOfSgj!9Y2tp@5leyA3vOjg;w-9}Of~lTXIhCDmZVMbZWDOD)?TIV|FDcdcs6Dl(s|M$T~z z#v;20pU3&@&q=>Pd?Lh?~~Ma0-&CIdgJ22C!BydbD842x=U z9<@HP1RE!JGUYfw+XHPybQGORLM&Sq2rOKKHMLl6Uwz4G$*7PGEjoTX^@wDzBbT8nRy(jaH;eQ+s&15ZfwVU#nOe#Wyv*YuBH5u+y=#?%BIc` zM7V+iOdDhd`7m9Wou}gO!jz#G7ieaBzH+)NBvRpq_&a(+3-K$7^FkTCgY#6TXa{UR zlmbPL`YadB!H)^|gK`*iJCJ!l2nDx;(<^y5IBAS-km2&2HR+W?$(>v|Ypzf=wzN9c z60(o06Iv@{RJ%)jelER6Xq$a#`{={MIW&y4Xcz;Y<$jTA#hKgSgce<+@5|2&m5J;Nce-=nU=&2h zC`@D;0{g0umMjUjPMV@~oa1Rp?eFJ?dGGj7Ppf_$_)#j58ZBkJi%f7JJ*6Y+bFSeo zU!dW^xBHx^qh)R~P$<$qrq=}82kgrT4}OSSBb_%?JE#)2Jj{7Cn)KAOWN}IOn7U#( bM7vh#P^{e0@lRu(Nc*@joNak*ts49T_}r7e literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po new file mode 100644 index 0000000..172f283 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/fy/LC_MESSAGES/django.po @@ -0,0 +1,1218 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Western Frisian (http://www.transifex.com/django/django/" +"language/fy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fy\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "" + +msgid "Bulgarian" +msgstr "" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "" + +msgid "Catalan" +msgstr "" + +msgid "Czech" +msgstr "" + +msgid "Welsh" +msgstr "" + +msgid "Danish" +msgstr "" + +msgid "German" +msgstr "" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "" + +msgid "English" +msgstr "" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "" + +msgid "Argentinian Spanish" +msgstr "" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "" + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "" + +msgid "Basque" +msgstr "" + +msgid "Persian" +msgstr "" + +msgid "Finnish" +msgstr "" + +msgid "French" +msgstr "" + +msgid "Frisian" +msgstr "" + +msgid "Irish" +msgstr "" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "" + +msgid "Hebrew" +msgstr "" + +msgid "Hindi" +msgstr "" + +msgid "Croatian" +msgstr "" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "" + +msgid "Italian" +msgstr "" + +msgid "Japanese" +msgstr "" + +msgid "Georgian" +msgstr "" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "" + +msgid "Kannada" +msgstr "" + +msgid "Korean" +msgstr "" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "" + +msgid "Latvian" +msgstr "" + +msgid "Macedonian" +msgstr "" + +msgid "Malayalam" +msgstr "" + +msgid "Mongolian" +msgstr "" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "" + +msgid "Norwegian Nynorsk" +msgstr "" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "" + +msgid "Polish" +msgstr "" + +msgid "Portuguese" +msgstr "" + +msgid "Brazilian Portuguese" +msgstr "" + +msgid "Romanian" +msgstr "" + +msgid "Russian" +msgstr "" + +msgid "Slovak" +msgstr "" + +msgid "Slovenian" +msgstr "" + +msgid "Albanian" +msgstr "" + +msgid "Serbian" +msgstr "" + +msgid "Serbian Latin" +msgstr "" + +msgid "Swedish" +msgstr "" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "" + +msgid "Telugu" +msgstr "" + +msgid "Thai" +msgstr "" + +msgid "Turkish" +msgstr "" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "" + +msgid "Urdu" +msgstr "" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "" + +msgid "Simplified Chinese" +msgstr "" + +msgid "Traditional Chinese" +msgstr "" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Jou in falide wearde." + +msgid "Enter a valid URL." +msgstr "Jou in falide URL." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Jou in falide IPv4-adres." + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "Jou allinnich sifers, skieden troch komma's." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "Jou in nûmer." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Dit fjild kin net leech wêze." + +msgid "This field cannot be blank." +msgstr "" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s mei dit %(field_label)s bestiet al." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "" + +msgid "File path" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "" + +msgid "URL" +msgstr "" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Dit fjild is fereaske." + +msgid "Enter a whole number." +msgstr "Jou in folslein nûmer." + +msgid "Enter a valid date." +msgstr "Jou in falide datum." + +msgid "Enter a valid time." +msgstr "Jou in falide tiid." + +msgid "Enter a valid date/time." +msgstr "Jou in falide datum.tiid." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Der is gjin bestân yntsjinne. Kontrolearje it kodearringstype op it " +"formulier." + +msgid "No file was submitted." +msgstr "Der is gjin bestân yntsjinne." + +msgid "The submitted file is empty." +msgstr "It yntsjinne bestân is leech." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Laad in falide ôfbylding op. It bestân dy't jo opladen hawwe wie net in " +"ôfbylding of in skansearre ôfbylding." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Selektearje in falide kar. %(value)s is net ien fan de beskikbere karren." + +msgid "Enter a list of values." +msgstr "Jou in list mei weardes." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Oarder" + +msgid "Delete" +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Selektearje in falide kar. Dizze kar is net ien fan de beskikbere karren." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "" + +msgid "Currently" +msgstr "" + +msgid "Change" +msgstr "" + +msgid "Unknown" +msgstr "" + +msgid "Yes" +msgstr "" + +msgid "No" +msgstr "" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%s KB" +msgstr "" + +#, python-format +msgid "%s MB" +msgstr "" + +#, python-format +msgid "%s GB" +msgstr "" + +#, python-format +msgid "%s TB" +msgstr "" + +#, python-format +msgid "%s PB" +msgstr "" + +msgid "p.m." +msgstr "" + +msgid "a.m." +msgstr "" + +msgid "PM" +msgstr "" + +msgid "AM" +msgstr "" + +msgid "midnight" +msgstr "" + +msgid "noon" +msgstr "" + +msgid "Monday" +msgstr "" + +msgid "Tuesday" +msgstr "" + +msgid "Wednesday" +msgstr "" + +msgid "Thursday" +msgstr "" + +msgid "Friday" +msgstr "" + +msgid "Saturday" +msgstr "" + +msgid "Sunday" +msgstr "" + +msgid "Mon" +msgstr "" + +msgid "Tue" +msgstr "" + +msgid "Wed" +msgstr "" + +msgid "Thu" +msgstr "" + +msgid "Fri" +msgstr "" + +msgid "Sat" +msgstr "" + +msgid "Sun" +msgstr "" + +msgid "January" +msgstr "" + +msgid "February" +msgstr "" + +msgid "March" +msgstr "" + +msgid "April" +msgstr "" + +msgid "May" +msgstr "" + +msgid "June" +msgstr "" + +msgid "July" +msgstr "" + +msgid "August" +msgstr "" + +msgid "September" +msgstr "" + +msgid "October" +msgstr "" + +msgid "November" +msgstr "" + +msgid "December" +msgstr "" + +msgid "jan" +msgstr "" + +msgid "feb" +msgstr "" + +msgid "mar" +msgstr "" + +msgid "apr" +msgstr "" + +msgid "may" +msgstr "" + +msgid "jun" +msgstr "" + +msgid "jul" +msgstr "" + +msgid "aug" +msgstr "" + +msgid "sep" +msgstr "" + +msgid "oct" +msgstr "" + +msgid "nov" +msgstr "" + +msgid "dec" +msgstr "" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +msgctxt "abbrev. month" +msgid "March" +msgstr "" + +msgctxt "abbrev. month" +msgid "April" +msgstr "" + +msgctxt "abbrev. month" +msgid "May" +msgstr "" + +msgctxt "abbrev. month" +msgid "June" +msgstr "" + +msgctxt "abbrev. month" +msgid "July" +msgstr "" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +msgctxt "alt. month" +msgid "January" +msgstr "" + +msgctxt "alt. month" +msgid "February" +msgstr "" + +msgctxt "alt. month" +msgid "March" +msgstr "" + +msgctxt "alt. month" +msgid "April" +msgstr "" + +msgctxt "alt. month" +msgid "May" +msgstr "" + +msgctxt "alt. month" +msgid "June" +msgstr "" + +msgctxt "alt. month" +msgid "July" +msgstr "" + +msgctxt "alt. month" +msgid "August" +msgstr "" + +msgctxt "alt. month" +msgid "September" +msgstr "" + +msgctxt "alt. month" +msgid "October" +msgstr "" + +msgctxt "alt. month" +msgid "November" +msgstr "" + +msgctxt "alt. month" +msgid "December" +msgstr "" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "" + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fy/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/fy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/fy/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0e98abaac13c19cee5e4f8fde4dbe001d693a705 GIT binary patch literal 193 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, 2020 +# Jannis Leidel , 2011 +# John Moylan , 2013 +# John Stafford , 2013 +# Seán de Búrca , 2011 +# Luke Blaney , 2019 +# Michael Thornhill , 2011-2012,2015 +# Séamus Ó Cúile , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Aindriú Mac Giolla Eoin, 2024\n" +"Language-Team: Irish (http://app.transifex.com/django/django/language/ga/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ga\n" +"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " +"4);\n" + +msgid "Afrikaans" +msgstr "Afracáinis" + +msgid "Arabic" +msgstr "Araibis" + +msgid "Algerian Arabic" +msgstr "Araibis na hAilgéire" + +msgid "Asturian" +msgstr "Astúiris" + +msgid "Azerbaijani" +msgstr "Asarbaiseáinis" + +msgid "Bulgarian" +msgstr "Bulgáiris" + +msgid "Belarusian" +msgstr "Bealarúisis" + +msgid "Bengali" +msgstr "Beangáilis" + +msgid "Breton" +msgstr "Briotánach" + +msgid "Bosnian" +msgstr "Boisnis" + +msgid "Catalan" +msgstr "Catalóinis" + +msgid "Central Kurdish (Sorani)" +msgstr "Coirdis Láir (Sorani)" + +msgid "Czech" +msgstr "Seicis" + +msgid "Welsh" +msgstr "Breatnais" + +msgid "Danish" +msgstr "Danmhairgis " + +msgid "German" +msgstr "Gearmáinis" + +msgid "Lower Sorbian" +msgstr "Sorbais Íochtarach" + +msgid "Greek" +msgstr "Gréigis" + +msgid "English" +msgstr "Béarla" + +msgid "Australian English" +msgstr "Béarla Astrálach" + +msgid "British English" +msgstr "Béarla na Breataine" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spáinnis" + +msgid "Argentinian Spanish" +msgstr "Spáinnis na hAirgintíne" + +msgid "Colombian Spanish" +msgstr "Spáinnis na Colóime" + +msgid "Mexican Spanish" +msgstr "Spáinnis Mheicsiceo " + +msgid "Nicaraguan Spanish" +msgstr "Spáinnis Nicearagua" + +msgid "Venezuelan Spanish" +msgstr "Spáinnis Veiniséalach" + +msgid "Estonian" +msgstr "Eastóinis" + +msgid "Basque" +msgstr "Bascais" + +msgid "Persian" +msgstr "Peirsis" + +msgid "Finnish" +msgstr "Fionlainnis" + +msgid "French" +msgstr "Fraincis" + +msgid "Frisian" +msgstr "Freaslainnis" + +msgid "Irish" +msgstr "Gaeilge" + +msgid "Scottish Gaelic" +msgstr "Gaeilge na hAlban" + +msgid "Galician" +msgstr "Gailísis" + +msgid "Hebrew" +msgstr "Eabhrais" + +msgid "Hindi" +msgstr "Hiondúis" + +msgid "Croatian" +msgstr "Cróitis" + +msgid "Upper Sorbian" +msgstr "Sorbian Uachtarach" + +msgid "Hungarian" +msgstr "Ungáiris" + +msgid "Armenian" +msgstr "Airméinis" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indinéisis" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Íoslainnis" + +msgid "Italian" +msgstr "Iodáilis" + +msgid "Japanese" +msgstr "Seapáinis" + +msgid "Georgian" +msgstr "Seoirsis" + +msgid "Kabyle" +msgstr "Cabaill" + +msgid "Kazakh" +msgstr "Casaicis" + +msgid "Khmer" +msgstr "Ciméiris" + +msgid "Kannada" +msgstr "Cannadais" + +msgid "Korean" +msgstr "Cóiréis" + +msgid "Kyrgyz" +msgstr "Chirgeastáin" + +msgid "Luxembourgish" +msgstr "Lucsamburgach" + +msgid "Lithuanian" +msgstr "Liotuáinis" + +msgid "Latvian" +msgstr "Laitvis" + +msgid "Macedonian" +msgstr "Macadóinis" + +msgid "Malayalam" +msgstr "Mailéalaimis" + +msgid "Mongolian" +msgstr "Mongóilis" + +msgid "Marathi" +msgstr "Maraitis" + +msgid "Malay" +msgstr "Malaeis" + +msgid "Burmese" +msgstr "Burmais" + +msgid "Norwegian Bokmål" +msgstr "Ioruais Bokmål" + +msgid "Nepali" +msgstr "Neipeailis" + +msgid "Dutch" +msgstr "Ollainnis" + +msgid "Norwegian Nynorsk" +msgstr "Ioruais Nynorsk" + +msgid "Ossetic" +msgstr "Oiséitis" + +msgid "Punjabi" +msgstr "Puinseáibis" + +msgid "Polish" +msgstr "Polainnis" + +msgid "Portuguese" +msgstr "Portaingéilis" + +msgid "Brazilian Portuguese" +msgstr "Portaingéilis na Brasaíle" + +msgid "Romanian" +msgstr "Rómáinis" + +msgid "Russian" +msgstr "Rúisis" + +msgid "Slovak" +msgstr "Slóvaicis" + +msgid "Slovenian" +msgstr "Slóivéinis" + +msgid "Albanian" +msgstr "Albáinis" + +msgid "Serbian" +msgstr "Seirbis" + +msgid "Serbian Latin" +msgstr "Seirbis (Laidineach)" + +msgid "Swedish" +msgstr "Sualainnis" + +msgid "Swahili" +msgstr "Svahaílis" + +msgid "Tamil" +msgstr "Tamailis" + +msgid "Telugu" +msgstr "Teileagúis" + +msgid "Tajik" +msgstr "Táidsíc" + +msgid "Thai" +msgstr "Téalainnis" + +msgid "Turkmen" +msgstr "Tuircméinis" + +msgid "Turkish" +msgstr "Tuircis" + +msgid "Tatar" +msgstr "Tatairis" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Uighur" + +msgid "Ukrainian" +msgstr "Úcráinis" + +msgid "Urdu" +msgstr "Urdais" + +msgid "Uzbek" +msgstr "Úisbéicis" + +msgid "Vietnamese" +msgstr "Vítneamais" + +msgid "Simplified Chinese" +msgstr "Sínis Simplithe" + +msgid "Traditional Chinese" +msgstr "Sínis Traidisiúnta" + +msgid "Messages" +msgstr "Teachtaireachtaí" + +msgid "Site Maps" +msgstr "Léarscáileanna Suímh" + +msgid "Static Files" +msgstr "Comhaid Statach" + +msgid "Syndication" +msgstr "Sindeacáitiú" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Ní slánuimhir í an uimhir leathanaigh sin" + +msgid "That page number is less than 1" +msgstr "Tá uimhir an leathanaigh sin níos lú ná 1" + +msgid "That page contains no results" +msgstr "Níl aon torthaí ar an leathanach sin" + +msgid "Enter a valid value." +msgstr "Iontráil luach bailí" + +msgid "Enter a valid domain name." +msgstr "Cuir isteach ainm fearainn bailí." + +msgid "Enter a valid URL." +msgstr "Iontráil URL bailí." + +msgid "Enter a valid integer." +msgstr "Cuir isteach slánuimhir bhailí." + +msgid "Enter a valid email address." +msgstr "Cuir isteach seoladh ríomhphoist bailí." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Cuir isteach “sluga” bailí ar a bhfuil litreacha, uimhreacha, foscórthaí nó " +"fleiscíní." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Cuir isteach “sluga” bailí ar a bhfuil litreacha Unicode, uimhreacha, fo-" +"scóranna, nó fleiscíní." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Cuir isteach seoladh bailí %(protocol)s." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 nó IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Ná hiontráil ach digití atá deighilte le camóga." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Cinntigh go bhfuil an luach seo %(limit_value)s (tá sé %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Cinntigh go bhfuil an luach seo níos lú ná nó cothrom le %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Cinntigh go bhfuil an luach seo níos mó ná nó cothrom le %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Cinntigh gur iolraí de chéimmhéid %(limit_value)s an luach seo." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Cinntigh gur iolraí de chéimmhéid %(limit_value)s an luach seo, ag tosú ó " +"%(offset)s, m.sh. %(offset)s, %(valid_value1)s, %(valid_value2)s, agus mar " +"sin de." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Cinntigh go bhfuil ar a laghad %(limit_value)d carachtar ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[1] "" +"Cinntigh go bhfuil ar a laghad %(limit_value)d carachtar ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[2] "" +"Cinntigh go bhfuil ar a laghad %(limit_value)d carachtar ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[3] "" +"Cinntigh go bhfuil ar a laghad %(limit_value)d carachtar ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[4] "" +"Cinntigh go bhfuil ar a laghad %(limit_value)d carachtar ag an luach seo (tá " +"%(show_value)d aige)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Cinntigh go bhfuil %(limit_value)d carachtar ar a mhéad ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[1] "" +"Cinntigh go bhfuil %(limit_value)d carachtar ar a mhéad ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[2] "" +"Cinntigh go bhfuil %(limit_value)d carachtar ar a mhéad ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[3] "" +"Cinntigh go bhfuil %(limit_value)d carachtar ar a mhéad ag an luach seo (tá " +"%(show_value)d aige)." +msgstr[4] "" +"Cinntigh go bhfuil %(limit_value)d carachtar ar a mhéad ag an luach seo (tá " +"%(show_value)d aige)." + +msgid "Enter a number." +msgstr "Iontráil uimhir." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Cinntigh nach bhfuil níos mó ná %(max)s digit san iomlán." +msgstr[1] "Cinntigh nach bhfuil níos mó ná %(max)s digit san iomlán." +msgstr[2] "Cinntigh nach bhfuil níos mó ná %(max)s digit san iomlán." +msgstr[3] "Cinntigh nach bhfuil níos mó ná %(max)s digit san iomlán." +msgstr[4] "Cinntigh nach bhfuil níos mó ná %(max)s digit san iomlán." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Cinntigh nach bhfuil níos mó ná %(max)s ionad deachúlach ann." +msgstr[1] "Cinntigh nach bhfuil níos mó ná %(max)s de dheachúlacha ann." +msgstr[2] "Cinntigh nach bhfuil níos mó ná %(max)s de dheachúlacha ann." +msgstr[3] "Cinntigh nach bhfuil níos mó ná %(max)s de dheachúlacha ann." +msgstr[4] "Cinntigh nach bhfuil níos mó ná %(max)s de dheachúlacha ann." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Cinntigh nach bhfuil níos mó ná %(max)s digit ann roimh an bpointe deachúil." +msgstr[1] "" +"Cinntigh nach bhfuil níos mó ná %(max)s dhigit roimh an bpointe deachúil." +msgstr[2] "" +"Cinntigh nach bhfuil níos mó ná %(max)s dhigit roimh an bpointe deachúil." +msgstr[3] "" +"Cinntigh nach bhfuil níos mó ná %(max)s dhigit roimh an bpointe deachúil." +msgstr[4] "" +"Cinntigh nach bhfuil níos mó ná %(max)s dhigit roimh an bpointe deachúil." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Ní cheadaítear iarmhír chomhaid “%(extension)s”. Is iad seo a leanas " +"eisínteachtaí ceadaithe: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Ní cheadaítear carachtair null." + +msgid "and" +msgstr "agus" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Tá %(model_name)s leis an %(field_labels)s seo ann cheana." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Tá srian “%(name)s” sáraithe." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Ní rogha bhailí é luach %(value)r." + +msgid "This field cannot be null." +msgstr "Ní cheadaítear luach nialasach sa réimse seo." + +msgid "This field cannot be blank." +msgstr "Ní cheadaítear luach nialasach sa réimse seo." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Tá %(model_name)s leis an %(field_label)s seo ann cheana." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"Caithfidh %(field_label)s a bheith uathúil le haghaidh %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Réimse de Cineál: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Caithfidh luach “%(value)s” a bheith Fíor nó Bréagach." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Caithfidh luach “%(value)s” a bheith Fíor, Bréagach, nó Neamhní." + +msgid "Boolean (Either True or False)" +msgstr "Boole" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Teaghrán (suas go %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Teaghrán (gan teorainn)" + +msgid "Comma-separated integers" +msgstr "Slánuimhireacha camóg-scartha" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Tá formáid dáta neamhbhailí ag luach “%(value)s”. Caithfidh sé a bheith i " +"bhformáid BBBB-MM-LL." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Tá an fhormáid cheart ag luach “%(value)s” (BBBB-MM-DD) ach is dáta " +"neamhbhailí é." + +msgid "Date (without time)" +msgstr "Dáta (gan am)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Tá formáid neamhbhailí ag luach “%(value)s”. Caithfidh sé a bheith san " +"fhormáid BBBB-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Tá an fhormáid cheart ag luach “%(value)s” (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) ach is dáta/am neamhbhailí é." + +msgid "Date (with time)" +msgstr "Dáta (le am)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Caithfidh luach “%(value)s” a bheith ina uimhir dheachúil." + +msgid "Decimal number" +msgstr "Uimhir deachúlach" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Tá formáid neamhbhailí ag luach “%(value)s”. Caithfidh sé a bheith i " +"bhformáid [DD] [[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Fad" + +msgid "Email address" +msgstr "R-phost" + +msgid "File path" +msgstr "Conair comhaid" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Caithfidh luach “%(value)s” a bheith ina shnámhán." + +msgid "Floating point number" +msgstr "Snámhphointe" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Caithfidh luach “%(value)s” a bheith ina shlánuimhir." + +msgid "Integer" +msgstr "Slánuimhir" + +msgid "Big (8 byte) integer" +msgstr "Mór (8 byte) slánuimhi" + +msgid "Small integer" +msgstr "Slánuimhir beag" + +msgid "IPv4 address" +msgstr "Seoladh IPv4" + +msgid "IP address" +msgstr "Seoladh IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Ní mór luach “%(value)s” a bheith Easpa, Fíor nó Bréagach." + +msgid "Boolean (Either True, False or None)" +msgstr "Boole (Fíor, Bréagach nó Dada)" + +msgid "Positive big integer" +msgstr "Slánuimhir mhór dhearfach" + +msgid "Positive integer" +msgstr "Slánuimhir dearfach" + +msgid "Positive small integer" +msgstr "Slánuimhir beag dearfach" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (suas go %(max_length)s)" + +msgid "Text" +msgstr "Téacs" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Tá formáid neamhbhailí ag luach “%(value)s”. Caithfidh sé a bheith i " +"bhformáid HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Tá an fhormáid cheart ag luach “%(value)s” (HH:MM[:ss[.uuuuuu]]) ach is am " +"neamhbhailí é." + +msgid "Time" +msgstr "Am" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Sonraí dénártha amh" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "Ní UUID bailí é “%(value)s”." + +msgid "Universally unique identifier" +msgstr "Aitheantóir uathúil uilíoch" + +msgid "File" +msgstr "Comhaid" + +msgid "Image" +msgstr "Íomhá" + +msgid "A JSON object" +msgstr "Réad JSON" + +msgid "Value must be valid JSON." +msgstr "Caithfidh an luach a bheith bailí JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Níl sampla %(model)s le %(field)s %(value)r ann." + +msgid "Foreign Key (type determined by related field)" +msgstr "Eochair Eachtracha (cineál a chinnfear de réir réimse a bhaineann)" + +msgid "One-to-one relationship" +msgstr "Duine-le-duine caidreamh" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s caidreamh" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s caidrimh" + +msgid "Many-to-many relationship" +msgstr "Go leor le go leor caidreamh" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Tá an réimse seo riachtanach." + +msgid "Enter a whole number." +msgstr "Iontráil slánuimhir." + +msgid "Enter a valid date." +msgstr "Iontráil dáta bailí." + +msgid "Enter a valid time." +msgstr "Iontráil am bailí." + +msgid "Enter a valid date/time." +msgstr "Iontráil dáta/am bailí." + +msgid "Enter a valid duration." +msgstr "Cuir isteach ré bailí." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Caithfidh líon na laethanta a bheith idir {min_days} agus {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Níor seoladh comhad. Deimhnigh cineál an ionchódaithe ar an bhfoirm." + +msgid "No file was submitted." +msgstr "Níor seoladh aon chomhad." + +msgid "The submitted file is empty." +msgstr "Tá an comhad a seoladh folamh." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Cinntigh go bhfuil %(max)d carachtar ar a mhéad ag an gcomhadainm seo (tá " +"%(length)d aige)." +msgstr[1] "" +"Cinntigh go bhfuil %(max)d carachtar ar a mhéad ag an gcomhadainm seo (tá " +"%(length)d aige)." +msgstr[2] "" +"Cinntigh go bhfuil %(max)d carachtar ar a mhéad ag an gcomhadainm seo (tá " +"%(length)d aige)." +msgstr[3] "" +"Cinntigh go bhfuil %(max)d carachtar ar a mhéad ag an gcomhadainm seo (tá " +"%(length)d aige)." +msgstr[4] "" +"Cinntigh go bhfuil %(max)d carachtar ar a mhéad ag an gcomhadainm seo (tá " +"%(length)d aige)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Cuir ceachtar isteach comhad nó an ticbhosca soiléir, ní féidir an dá " +"sheiceáil." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Uasluchtaigh íomhá bhailí. Níorbh íomhá é an comhad a d'uasluchtaigh tú, nó " +"b'íomhá thruaillithe é." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Déan rogha bhailí. Ní ceann de na roghanna é %(value)s." + +msgid "Enter a list of values." +msgstr "Cuir liosta de luachanna isteach." + +msgid "Enter a complete value." +msgstr "Cuir isteach luach iomlán." + +msgid "Enter a valid UUID." +msgstr "Cuir isteach UUID bailí." + +msgid "Enter a valid JSON." +msgstr "Cuir isteach JSON bailí." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Réimse folaithe %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Tá sonraí ManagementForm in easnamh nó ar cuireadh isteach orthu. Réimsí ar " +"iarraidh: %(field_names)s. Seans go mbeidh ort tuairisc fhabht a chomhdú má " +"leanann an cheist." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Cuir isteach %(num)d foirm ar a mhéad." +msgstr[1] "Cuir isteach %(num)d foirm ar a mhéad." +msgstr[2] "Cuir isteach %(num)d foirm ar a mhéad." +msgstr[3] "Cuir isteach %(num)d foirm ar a mhéad." +msgstr[4] "Cuir isteach %(num)d foirm ar a mhéad." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Cuir isteach ar a laghad %(num)d foirm." +msgstr[1] "Cuir isteach %(num)d foirm ar a laghad." +msgstr[2] "Cuir isteach %(num)d foirm ar a laghad." +msgstr[3] "Cuir isteach %(num)d foirm ar a laghad." +msgstr[4] "Cuir isteach %(num)d foirm ar a laghad." + +msgid "Order" +msgstr "Ord" + +msgid "Delete" +msgstr "Scrios" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Le do thoil ceartaigh an sonra dúbail le %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Ceart le do thoil na sonraí a dhúbailt le haghaidh %(field)s, chaithfidh a " +"bheith uathúil." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Ceart le do thoil na sonraí a dhúbailt le haghaidh %(field_name)s ní mór a " +"bheith uaithúil le haghaidh an %(lookup)s i %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Le do thoil ceartaigh na luachanna dúbail thíos." + +msgid "The inline value did not match the parent instance." +msgstr "Níor mheaitseáil an luach inlíne leis an gcás tuismitheora." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Déan rogha bhailí. Ní ceann de na roghanna é do roghasa." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "Ní luach bailí é “%(pk)s”." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"Níorbh fhéidir %(datetime)s a léirmhíniú i gcrios ama %(current_timezone)s; " +"d'fhéadfadh sé a bheith débhríoch nó b'fhéidir nach bhfuil sé ann." + +msgid "Clear" +msgstr "Glan" + +msgid "Currently" +msgstr "Faoi láthair" + +msgid "Change" +msgstr "Athraigh" + +msgid "Unknown" +msgstr "Anaithnid" + +msgid "Yes" +msgstr "Tá" + +msgid "No" +msgstr "Níl" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "tá,níl,b'fhéidir" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bheart" +msgstr[1] "%(size)d bheart" +msgstr[2] "%(size)d bheart" +msgstr[3] "%(size)d mbeart" +msgstr[4] "%(size)d beart" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "i.n." + +msgid "a.m." +msgstr "r.n." + +msgid "PM" +msgstr "IN" + +msgid "AM" +msgstr "RN" + +msgid "midnight" +msgstr "meán oíche" + +msgid "noon" +msgstr "nóin" + +msgid "Monday" +msgstr "Dé Luain" + +msgid "Tuesday" +msgstr "Dé Máirt" + +msgid "Wednesday" +msgstr "Dé Céadaoin" + +msgid "Thursday" +msgstr "Déardaoin" + +msgid "Friday" +msgstr "Dé hAoine" + +msgid "Saturday" +msgstr "Dé Sathairn" + +msgid "Sunday" +msgstr "Dé Domhnaigh" + +msgid "Mon" +msgstr "L" + +msgid "Tue" +msgstr "M" + +msgid "Wed" +msgstr "C" + +msgid "Thu" +msgstr "D" + +msgid "Fri" +msgstr "A" + +msgid "Sat" +msgstr "S" + +msgid "Sun" +msgstr "D" + +msgid "January" +msgstr "Eanáir" + +msgid "February" +msgstr "Feabhra" + +msgid "March" +msgstr "Márta" + +msgid "April" +msgstr "Aibreán" + +msgid "May" +msgstr "Bealtaine" + +msgid "June" +msgstr "Meitheamh" + +msgid "July" +msgstr "Iúil" + +msgid "August" +msgstr "Lúnasa" + +msgid "September" +msgstr "Meán Fómhair" + +msgid "October" +msgstr "Deireadh Fómhair" + +msgid "November" +msgstr "Samhain" + +msgid "December" +msgstr "Nollaig" + +msgid "jan" +msgstr "ean" + +msgid "feb" +msgstr "feabh" + +msgid "mar" +msgstr "márta" + +msgid "apr" +msgstr "aib" + +msgid "may" +msgstr "beal" + +msgid "jun" +msgstr "meith" + +msgid "jul" +msgstr "iúil" + +msgid "aug" +msgstr "lún" + +msgid "sep" +msgstr "mfómh" + +msgid "oct" +msgstr "dfómh" + +msgid "nov" +msgstr "samh" + +msgid "dec" +msgstr "noll" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ean." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feabh." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Márta" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Aib." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Beal." + +msgctxt "abbrev. month" +msgid "June" +msgstr "Meith." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Iúil" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Lún." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "MFómh." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "DFómh." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Samh." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Noll." + +msgctxt "alt. month" +msgid "January" +msgstr "Mí Eanáir" + +msgctxt "alt. month" +msgid "February" +msgstr "Mí Feabhra" + +msgctxt "alt. month" +msgid "March" +msgstr "Mí na Márta" + +msgctxt "alt. month" +msgid "April" +msgstr "Mí Aibreáin" + +msgctxt "alt. month" +msgid "May" +msgstr "Mí na Bealtaine" + +msgctxt "alt. month" +msgid "June" +msgstr "Mí an Mheithimh" + +msgctxt "alt. month" +msgid "July" +msgstr "Mí Iúil" + +msgctxt "alt. month" +msgid "August" +msgstr "Mí Lúnasa" + +msgctxt "alt. month" +msgid "September" +msgstr "Mí Mheán Fómhair" + +msgctxt "alt. month" +msgid "October" +msgstr "Mí Dheireadh Fómhair" + +msgctxt "alt. month" +msgid "November" +msgstr "Mí na Samhna" + +msgctxt "alt. month" +msgid "December" +msgstr "Mí na Nollag" + +msgid "This is not a valid IPv6 address." +msgstr "Ní seoladh IPv6 bailí é seo." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "nó" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d bhliain" +msgstr[1] "%(num)d bliain" +msgstr[2] "%(num)d bliain" +msgstr[3] "%(num)d bliain" +msgstr[4] "%(num)d bliain" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mí" +msgstr[1] "%(num)d míonna" +msgstr[2] "%(num)d míonna" +msgstr[3] "%(num)d míonna" +msgstr[4] "%(num)d míonna" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d seachtain" +msgstr[1] "%(num)d seachtainí" +msgstr[2] "%(num)d seachtainí" +msgstr[3] "%(num)d seachtainí" +msgstr[4] "%(num)d seachtainí" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d lá" +msgstr[1] "%(num)d laethanta" +msgstr[2] "%(num)d laethanta" +msgstr[3] "%(num)d laethanta" +msgstr[4] "%(num)d laethanta" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d uair" +msgstr[1] "%(num)d huaireanta" +msgstr[2] "%(num)d huaireanta" +msgstr[3] "%(num)d huaireanta" +msgstr[4] "%(num)d huaireanta" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d nóiméad" +msgstr[1] "%(num)d nóiméad" +msgstr[2] "%(num)d nóiméad" +msgstr[3] "%(num)d nóiméad" +msgstr[4] "%(num)d nóiméad" + +msgid "Forbidden" +msgstr "Toirmiscthe" + +msgid "CSRF verification failed. Request aborted." +msgstr "Theip ar fhíorú CSRF. Cuireadh deireadh leis an iarratas." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Tá an teachtaireacht seo á fheiceáil agat toisc go bhfuil “ceanntásc " +"tarchuir” ag teastáil ón suíomh HTTPS seo le bheith seolta ag do bhrabhsálaí " +"gréasáin, ach níor seoladh aon cheann. Tá an ceanntásc seo ag teastáil ar " +"chúiseanna slándála, lena chinntiú nach bhfuil do bhrabhsálaí á fuadach ag " +"tríú páirtithe." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Má tá do bhrabhsálaí cumraithe agat chun ceanntásca “Tagairtí” a dhíchumasú, " +"le do thoil déan iad a athchumasú, le do thoil don suíomh seo, nó do naisc " +"HTTPS, nó d’iarratais “ar an mbunús céanna”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Má tá an chlib 1 á úsáid agat nó má tá an ceanntásc “Polasaí Atreoraithe: " +"gan atreorú” san áireamh, bain amach iad le do thoil. Éilíonn an chosaint " +"CSRF go bhfuil an ceanntásc “Tagairtí” chun seiceáil docht atreoraithe a " +"dhéanamh. Má tá imní ort faoi phríobháideachas, bain úsáid as roghanna eile " +"amhail le haghaidh naisc chuig láithreáin tríú " +"páirtí." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Tá an teachtaireacht seo á fheiceáil agat toisc go bhfuil fianán CSRF ag " +"teastáil ón suíomh seo agus foirmeacha á gcur isteach agat. Tá an fianán seo " +"ag teastáil ar chúiseanna slándála, lena chinntiú nach bhfuil do bhrabhsálaí " +"á fuadach ag tríú páirtithe." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Má tá do bhrabhsálaí cumraithe agat chun fianáin a dhíchumasú, le do thoil " +"athchumasaigh iad, le do thoil, le haghaidh an tsuímh seo ar a laghad, nó le " +"haghaidh iarratais “ar an mbunús céanna”." + +msgid "More information is available with DEBUG=True." +msgstr "Tá tuilleadh eolais ar fáil le DEBUG=True." + +msgid "No year specified" +msgstr "Bliain gan sonrú" + +msgid "Date out of range" +msgstr "Dáta as raon" + +msgid "No month specified" +msgstr "Mí gan sonrú" + +msgid "No day specified" +msgstr "Lá gan sonrú" + +msgid "No week specified" +msgstr "Seachtain gan sonrú" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Gan %(verbose_name_plural)s ar fáil" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Níl %(verbose_name_plural)s sa todhchaí ar fáil mar tá %(class_name)s." +"allow_future Bréagach." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Teaghrán dáta neamhbhailí “%(datestr)s” tugtha formáid “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Níl bhfuarthas %(verbose_name)s le hadhaigh an iarratas" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Níl an leathanach “deireadh”, agus ní féidir é a thiontú go slánuimhir." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Leathanach neamhbhailí (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tá liosta folamh agus “%(class_name)s.allow_empty” bréagach." + +msgid "Directory indexes are not allowed here." +msgstr "Níl innéacsanna chomhadlann cheadaítear anseo." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "Níl “%(path)s” ann" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Innéacs de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "D'éirigh leis an suiteáil! Comhghairdeachas!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Féach ar nótaí scaoilte le haghaidh Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Tá an leathanach seo á fheiceáil agat toisc go bhfuil DEBUG=True i do chomhad socruithe agus nach bhfuil aon " +"URL cumraithe agat." + +msgid "Django Documentation" +msgstr "Doiciméadú Django" + +msgid "Topics, references, & how-to’s" +msgstr "Ábhair, tagairtí, & conas atá" + +msgid "Tutorial: A Polling App" +msgstr "Teagaisc: A Vótaíocht Aip" + +msgid "Get started with Django" +msgstr "Tosaigh le Django" + +msgid "Django Community" +msgstr "Pobal Django" + +msgid "Connect, get help, or contribute" +msgstr "Ceangail, faigh cúnamh, nó ranníoc" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ga/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ga/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ga/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..817cc46b7159ebac913587f1b468949b41b157cf GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFqx@Y1;G;2r3o3K3Ag>fLKmdaTGL2|VCpt5T!CIun z+94R6>{?56V#Yh&9ThuW=_c^Zcn^mMcs(DqN!Lc$Nhf~bAxye>>iwDv&!1yAwNd=j z?uV`)V3iy<`nEHkdT5r0&I1Y%_5*T>T|WxZ+&*S+pwiW?-*m{vqa>2NlF2hKYmwL@ z+phS!mPyWKO+{MKZTU~nipNA2HNV-=?1`$Wge~bh7gi?L3#$|vExDCbYayx?t>tj@ avhUok1lyMUu6dR`S7aClG<1d24*UXw&|k0s literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ga/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ga/formats.py new file mode 100644 index 0000000..7cde1a5 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ga/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "H:i" +# DATETIME_FORMAT = +# YEAR_MONTH_FORMAT = +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "j M Y" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/gd/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..f177bbd99009c588c09490bfbdf2bcb06f4364dc GIT binary patch literal 30752 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 T 2 && n < 20) ? 2 : 3;\n" + +msgid "Afrikaans" +msgstr "Afraganais" + +msgid "Arabic" +msgstr "Arabais" + +msgid "Algerian Arabic" +msgstr "Arabais Aildireach" + +msgid "Asturian" +msgstr "Astùrais" + +msgid "Azerbaijani" +msgstr "Asarbaideànais" + +msgid "Bulgarian" +msgstr "Bulgarais" + +msgid "Belarusian" +msgstr "Bealaruisis" + +msgid "Bengali" +msgstr "Beangailis" + +msgid "Breton" +msgstr "Breatnais" + +msgid "Bosnian" +msgstr "Bosnais" + +msgid "Catalan" +msgstr "Catalanais" + +msgid "Czech" +msgstr "Seacais" + +msgid "Welsh" +msgstr "Cuimris" + +msgid "Danish" +msgstr "Danmhairgis" + +msgid "German" +msgstr "Gearmailtis" + +msgid "Lower Sorbian" +msgstr "Sòrbais Ìochdarach" + +msgid "Greek" +msgstr "Greugais" + +msgid "English" +msgstr "Beurla" + +msgid "Australian English" +msgstr "Beurla Astràilia" + +msgid "British English" +msgstr "Beurla Bhreatainn" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spàinntis" + +msgid "Argentinian Spanish" +msgstr "Spàinntis na h-Argantaine" + +msgid "Colombian Spanish" +msgstr "Spàinntis Choloimbia" + +msgid "Mexican Spanish" +msgstr "Spàinntis Mheagsagach" + +msgid "Nicaraguan Spanish" +msgstr "Spàinntis Niocaragua" + +msgid "Venezuelan Spanish" +msgstr "Spàinntis na Bheiniseala" + +msgid "Estonian" +msgstr "Eastoinis" + +msgid "Basque" +msgstr "Basgais" + +msgid "Persian" +msgstr "Farsaidh" + +msgid "Finnish" +msgstr "Fionnlannais" + +msgid "French" +msgstr "Fraingis" + +msgid "Frisian" +msgstr "Frìsis" + +msgid "Irish" +msgstr "Gaeilge" + +msgid "Scottish Gaelic" +msgstr "Gàidhlig" + +msgid "Galician" +msgstr "Gailìsis" + +msgid "Hebrew" +msgstr "Eabhra" + +msgid "Hindi" +msgstr "Hindis" + +msgid "Croatian" +msgstr "Cròthaisis" + +msgid "Upper Sorbian" +msgstr "Sòrbais Uachdarach" + +msgid "Hungarian" +msgstr "Ungairis" + +msgid "Armenian" +msgstr "Airmeinis" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Innd-Innsis" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Innis Tìlis" + +msgid "Italian" +msgstr "Eadailtis" + +msgid "Japanese" +msgstr "Seapanais" + +msgid "Georgian" +msgstr "Cairtbheilis" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Casachais" + +msgid "Khmer" +msgstr "Cmèar" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Coirèanais" + +msgid "Kyrgyz" +msgstr "Cìorgasais" + +msgid "Luxembourgish" +msgstr "Lugsamburgais" + +msgid "Lithuanian" +msgstr "Liotuainis" + +msgid "Latvian" +msgstr "Laitbheis" + +msgid "Macedonian" +msgstr "Masadonais" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolais" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malaidhis" + +msgid "Burmese" +msgstr "Burmais" + +msgid "Norwegian Bokmål" +msgstr "Nirribhis (Bokmål)" + +msgid "Nepali" +msgstr "Neapàlais" + +msgid "Dutch" +msgstr "Duitsis" + +msgid "Norwegian Nynorsk" +msgstr "Nirribhis (Nynorsk)" + +msgid "Ossetic" +msgstr "Ossetic" + +msgid "Punjabi" +msgstr "Panjabi" + +msgid "Polish" +msgstr "Pòlainnis" + +msgid "Portuguese" +msgstr "Portagailis" + +msgid "Brazilian Portuguese" +msgstr "Portagailis Bhraisileach" + +msgid "Romanian" +msgstr "Romàinis" + +msgid "Russian" +msgstr "Ruisis" + +msgid "Slovak" +msgstr "Slòbhacais" + +msgid "Slovenian" +msgstr "Slòbhainis" + +msgid "Albanian" +msgstr "Albàinis" + +msgid "Serbian" +msgstr "Sèirbis" + +msgid "Serbian Latin" +msgstr "Sèirbis (Laideann)" + +msgid "Swedish" +msgstr "Suainis" + +msgid "Swahili" +msgstr "Kiswahili" + +msgid "Tamil" +msgstr "Taimilis" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Taidigis" + +msgid "Thai" +msgstr "Tàidh" + +msgid "Turkmen" +msgstr "Turcmanais" + +msgid "Turkish" +msgstr "Turcais" + +msgid "Tatar" +msgstr "Tatarais" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "Ucràinis" + +msgid "Urdu" +msgstr "Ùrdu" + +msgid "Uzbek" +msgstr "Usbagais" + +msgid "Vietnamese" +msgstr "Bhiet-Namais" + +msgid "Simplified Chinese" +msgstr "Sìnis Shimplichte" + +msgid "Traditional Chinese" +msgstr "Sìnis Thradaiseanta" + +msgid "Messages" +msgstr "Teachdaireachdan" + +msgid "Site Maps" +msgstr "Mapaichean-làraich" + +msgid "Static Files" +msgstr "Faidhlichean stadastaireachd" + +msgid "Syndication" +msgstr "Siondacaideadh" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Chan eil àireamh na duilleige seo 'na àireamh slàn" + +msgid "That page number is less than 1" +msgstr "Tha àireamh na duilleige seo nas lugha na 1" + +msgid "That page contains no results" +msgstr "Chan eil toradh aig an duilleag seo" + +msgid "Enter a valid value." +msgstr "Cuir a-steach luach dligheach." + +msgid "Enter a valid URL." +msgstr "Cuir a-steach URL dligheach." + +msgid "Enter a valid integer." +msgstr "Cuir a-steach àireamh slàin dhligheach." + +msgid "Enter a valid email address." +msgstr "Cuir a-steach seòladh puist-d dligheach." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Cuir a-steach “sluga” dligheach anns nach eil ach litrichean, àireamhan, fo-" +"loidhnichean is tàthanan." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Cuir a-steach “sluga” dligheach anns nach eil ach litrichean Unicode, " +"àireamhan, fo-loidhnichean is tàthanan." + +msgid "Enter a valid IPv4 address." +msgstr "Cuir a-steach seòladh IPv4 dligheach." + +msgid "Enter a valid IPv6 address." +msgstr "Cuir a-steach seòladh IPv6 dligheach." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Cuir a-steach seòladh IPv4 no IPv6 dligheach." + +msgid "Enter only digits separated by commas." +msgstr "Na cuir a-steach ach àireamhan ’gan sgaradh le cromagan." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Dèan cinnteach gu bheil an luach seo %(limit_value)s (’s e %(show_value)s a " +"th’ ann)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Dèan cinnteach gu bheil an luach seo nas lugha na no co-ionnan ri " +"%(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Dèan cinnteach gu bheil an luach seo nas motha na no co-ionnan ri " +"%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Dèan cinnteach gu bheil %(limit_value)d charactar aig an luach seo air a’ " +"char as lugha (tha %(show_value)d aige an-dràsta)." +msgstr[1] "" +"Dèan cinnteach gu bheil %(limit_value)d charactar aig an luach seo air a’ " +"char as lugha (tha %(show_value)d aige an-dràsta)." +msgstr[2] "" +"Dèan cinnteach gu bheil %(limit_value)d caractaran aig an luach seo air a’ " +"char as lugha (tha %(show_value)d aige an-dràsta)." +msgstr[3] "" +"Dèan cinnteach gu bheil %(limit_value)d caractar aig an luach seo air a’ " +"char as lugha (tha %(show_value)d aige an-dràsta)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Dèan cinnteach gu bheil %(limit_value)d charactar aig an luach seo air a’ " +"char as motha (tha %(show_value)d aige an-dràsta)." +msgstr[1] "" +"Dèan cinnteach gu bheil %(limit_value)d charactar aig an luach seo air a’ " +"char as motha (tha %(show_value)d aige an-dràsta)." +msgstr[2] "" +"Dèan cinnteach gu bheil %(limit_value)d caractaran aig an luach seo air a’ " +"char as motha (tha %(show_value)d aige an-dràsta)." +msgstr[3] "" +"Dèan cinnteach gu bheil %(limit_value)d caractar aig an luach seo air a’ " +"char as motha (tha %(show_value)d aige an-dràsta)." + +msgid "Enter a number." +msgstr "Cuir a-steach àireamh." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamh ann gu h-iomlan." +msgstr[1] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamh ann gu h-iomlan." +msgstr[2] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamhan ann gu h-iomlan." +msgstr[3] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamh ann gu h-iomlan." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Dèan cinnteach nach eil barrachd air %(max)s ionad deicheach ann." +msgstr[1] "Dèan cinnteach nach eil barrachd air %(max)s ionad deicheach ann." +msgstr[2] "Dèan cinnteach nach eil barrachd air %(max)s ionadan deicheach ann." +msgstr[3] "Dèan cinnteach nach eil barrachd air %(max)s ionad deicheach ann." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamh ann ron phuing " +"dheicheach." +msgstr[1] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamh ann ron phuing " +"dheicheach." +msgstr[2] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamhan ann ron phuing " +"dheicheach." +msgstr[3] "" +"Dèan cinnteach nach eil barrachd air %(max)s àireamh ann ron phuing " +"dheicheach." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Chan eil an leudachan faidhle “%(extension)s” ceadaichte. Seo na leudachain " +"a tha ceadaichte: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Chan eil caractaran null ceadaichte." + +msgid "and" +msgstr "agus" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Tha %(model_name)s lis a’ %(field_labels)s seo ann mar-thà." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Chan eil an luach %(value)r ’na roghainn dhligheach." + +msgid "This field cannot be null." +msgstr "Chan fhaod an raon seo a bhith ’na neoni." + +msgid "This field cannot be blank." +msgstr "Chan fhaod an raon seo a bhith bàn." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Tha %(model_name)s leis a’ %(field_label)s seo ann mar-thà." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"Chan fhaod %(field_label)s a bhith ann ach aon turas airson " +"%(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Raon dhen t-seòrsa: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Feumaidh “%(value)s” a bhith True no False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Feumaidh “%(value)s” a bhith True, False no None." + +msgid "Boolean (Either True or False)" +msgstr "Booleach (True no False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Sreang (suas ri %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Àireamhan slàna sgaraichte le cromagan" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Tha fòrmat cinn-là mì-dhligheach aig an luach “%(value)s”. Feumaidh e bhith " +"san fhòrmat BBBB-MM-LL." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Tha fòrmat mar bu chòir (BBBB-MM-LL) aig an luach “%(value)s” ach tha an " +"ceann-là mì-dligheach." + +msgid "Date (without time)" +msgstr "Ceann-là (gun àm)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Tha fòrmat mì-dhligheach aig an luach “%(value)s”. Feumaidh e bhith san " +"fhòrmat BBBB-MM-LL HH:MM[:dd[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Tha fòrmat mar bu chòir (BBBB-MM-LL HH:MM[:dd[.uuuuuu]][TZ]) aig an luach " +"“%(value)s” ach tha an ceann-là/an t-àm mì-dligheach." + +msgid "Date (with time)" +msgstr "Ceann-là (le àm)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Feumaidh “%(value)s” a bhith ’na àireamh dheicheach." + +msgid "Decimal number" +msgstr "Àireamh dheicheach" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Tha fòrmat mì-dhligheach aig an luach “%(value)s”. Feumaidh e bhith san " +"fhòrmat [DD] [[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Faid" + +msgid "Email address" +msgstr "Seòladh puist-d" + +msgid "File path" +msgstr "Slighe an fhaidhle" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Feumaidh “%(value)s” a bhith ’na àireamh floda." + +msgid "Floating point number" +msgstr "Àireamh le puing floda" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Feumaidh “%(value)s” a bhith ’na àireamh shlàn." + +msgid "Integer" +msgstr "Àireamh shlàn" + +msgid "Big (8 byte) integer" +msgstr "Mòr-àireamh shlàn (8 baidht)" + +msgid "Small integer" +msgstr "Beag-àireamh slàn" + +msgid "IPv4 address" +msgstr "Seòladh IPv4" + +msgid "IP address" +msgstr "Seòladh IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Feumaidh “%(value)s” a bhith None, True no False." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleach (True, False no None)" + +msgid "Positive big integer" +msgstr "Àireamh shlàn dhearbh" + +msgid "Positive integer" +msgstr "Àireamh shlàn dhearbh" + +msgid "Positive small integer" +msgstr "Beag-àireamh shlàn dhearbh" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Sluga (suas ri %(max_length)s)" + +msgid "Text" +msgstr "Teacsa" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Tha fòrmat mì-dhligheach aig an luach “%(value)s”. Feumaidh e bhith san " +"fhòrmat HH:MM[:dd[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Tha fòrmat mar bu chòir (HH:MM[:dd[.uuuuuu]]) aig an luach “%(value)s” ach " +"tha an t-àm mì-dligheach." + +msgid "Time" +msgstr "Àm" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Dàta bìnearaidh amh" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "Chan eil “%(value)s” ’na UUID dligheach." + +msgid "Universally unique identifier" +msgstr "Aithnichear àraidh gu h-uile-choitcheann" + +msgid "File" +msgstr "Faidhle" + +msgid "Image" +msgstr "Dealbh" + +msgid "A JSON object" +msgstr "Oibseact JSON" + +msgid "Value must be valid JSON." +msgstr "Feumaidh an luach a bhith ’na JSON dligheach." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Chan eil ionstans dhe %(model)s le %(field)s %(value)r ann." + +msgid "Foreign Key (type determined by related field)" +msgstr "Iuchair chèin (thèid a sheòrsa a mhìneachadh leis an raon dàimheach)" + +msgid "One-to-one relationship" +msgstr "Dàimh aonan gu aonan" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Dàimh %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Dàimhean %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Dàimh iomadh rud gu iomadh rud" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Tha an raon seo riatanach." + +msgid "Enter a whole number." +msgstr "Cuir a-steach àireamh shlàn." + +msgid "Enter a valid date." +msgstr "Cuir a-steach ceann-là dligheach." + +msgid "Enter a valid time." +msgstr "Cuir a-steach àm dligheach." + +msgid "Enter a valid date/time." +msgstr "Cuir a-steach ceann-là ’s àm dligheach." + +msgid "Enter a valid duration." +msgstr "Cuir a-steach faid dhligheach." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" +"Feumaidh an àireamh de làithean a bhith eadar {min_days} is {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Cha deach faidhle a chur a-null. Dearbhaich seòrsa a’ chòdachaidh air an " +"fhoirm." + +msgid "No file was submitted." +msgstr "Cha deach faidhle a chur a-null." + +msgid "The submitted file is empty." +msgstr "Tha am faidhle a chaidh a chur a-null falamh." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Dèan cinnteach nach eil barrachd air %(max)d charactar ann an ainm an " +"fhaidhle (tha %(length)d aige)." +msgstr[1] "" +"Dèan cinnteach nach eil barrachd air %(max)d charactar ann an ainm an " +"fhaidhle (tha %(length)d aige)." +msgstr[2] "" +"Dèan cinnteach nach eil barrachd air %(max)d caractaran ann an ainm an " +"fhaidhle (tha %(length)d aige)." +msgstr[3] "" +"Dèan cinnteach nach eil barrachd air %(max)d caractar ann an ainm an " +"fhaidhle (tha %(length)d aige)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Cuir a-null faidhle no cuir cromag sa bhogsa fhalamh, na dèan an dà chuidh " +"dhiubh." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Luchdaich suas dealbh dligheach. Cha robh am faidhle a luchdaich thu suas " +"’na dhealbh no bha an dealbh coirbte." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Tagh rud dligheach. Chan eil %(value)s ’na roghainn dhut." + +msgid "Enter a list of values." +msgstr "Cuir a-steach liosta de luachan." + +msgid "Enter a complete value." +msgstr "Cuir a-steach luach slàn." + +msgid "Enter a valid UUID." +msgstr "Cuir a-steach UUID dligheach." + +msgid "Enter a valid JSON." +msgstr "Cuir a-steach JSON dligheach." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Raon falaichte %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Tha dàta an fhoirm stiùiridh a dhìth no chaidh beantainn ris. Seo na " +"raointean a tha a dhìth: %(field_names)s. Ma mhaireas an duilgheadas, saoil " +"an cuir thu aithris air buga thugainn?" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "Na cuir a-null barrachd air %d fhoirm." +msgstr[1] "Na cuir a-null barrachd air %d fhoirm." +msgstr[2] "Na cuir a-null barrachd air %d foirmean." +msgstr[3] "Na cuir a-null barrachd air %d foirm." + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "Cuir a-null %d fhoirm air a char as lugha." +msgstr[1] "Cuir a-null %d fhoirm air a char as lugha." +msgstr[2] "Cuir a-null %d foirmichean air a char as lugha." +msgstr[3] "Cuir a-null %d foirm air a char as lugha." + +msgid "Order" +msgstr "Òrdugh" + +msgid "Delete" +msgstr "Sguab às" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ceartaich an dàta dùblaichte airson %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Ceartaich an dàta dùblaichte airson %(field)s, chan fhaod gach nì a bhith " +"ann ach aon turas." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Ceartaich an dàta dùblaichte airson %(field_name)s nach fhaod a bhith ann " +"ach aon turas airson %(lookup)s ann an %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Ceartaich na luachan dùblaichte gu h-ìosal." + +msgid "The inline value did not match the parent instance." +msgstr "" +"Chan eil an luach am broinn na loidhne a’ freagairt ris an ionstans-pàraint." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Tagh rud dligheach. Chan eil an rud seo ’na roghainn dhut." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "Chan e luach dligheach a tha ann an “%(pk)s”." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"Cha chiall dha %(datetime)s san roinn-tìde %(current_timezone)s; dh’fhaoidte " +"gu bheil e dà-sheaghach no nach eil e ann." + +msgid "Clear" +msgstr "Falamhaich" + +msgid "Currently" +msgstr "An-dràsta" + +msgid "Change" +msgstr "Atharraich" + +msgid "Unknown" +msgstr "Chan eil fhios" + +msgid "Yes" +msgstr "Tha" + +msgid "No" +msgstr "Chan eil" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "yes,no,maybe" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d baidht" +msgstr[1] "%(size)d baidht" +msgstr[2] "%(size)d baidht" +msgstr[3] "%(size)d baidht" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "f" + +msgid "a.m." +msgstr "m" + +msgid "PM" +msgstr "f" + +msgid "AM" +msgstr "m" + +msgid "midnight" +msgstr "meadhan-oidhche" + +msgid "noon" +msgstr "meadhan-latha" + +msgid "Monday" +msgstr "DiLuain" + +msgid "Tuesday" +msgstr "DiMàirt" + +msgid "Wednesday" +msgstr "DiCiadain" + +msgid "Thursday" +msgstr "DiarDaoin" + +msgid "Friday" +msgstr "DihAoine" + +msgid "Saturday" +msgstr "DiSathairne" + +msgid "Sunday" +msgstr "DiDòmhnaich" + +msgid "Mon" +msgstr "DiL" + +msgid "Tue" +msgstr "DiM" + +msgid "Wed" +msgstr "DiC" + +msgid "Thu" +msgstr "Dia" + +msgid "Fri" +msgstr "Dih" + +msgid "Sat" +msgstr "DiS" + +msgid "Sun" +msgstr "DiD" + +msgid "January" +msgstr "Am Faoilleach" + +msgid "February" +msgstr "An Gearran" + +msgid "March" +msgstr "Am Màrt" + +msgid "April" +msgstr "An Giblean" + +msgid "May" +msgstr "An Cèitean" + +msgid "June" +msgstr "An t-Ògmhios" + +msgid "July" +msgstr "An t-Iuchar" + +msgid "August" +msgstr "An Lùnastal" + +msgid "September" +msgstr "An t-Sultain" + +msgid "October" +msgstr "An Dàmhair" + +msgid "November" +msgstr "An t-Samhain" + +msgid "December" +msgstr "An Dùbhlachd" + +msgid "jan" +msgstr "faoi" + +msgid "feb" +msgstr "gearr" + +msgid "mar" +msgstr "màrt" + +msgid "apr" +msgstr "gibl" + +msgid "may" +msgstr "cèit" + +msgid "jun" +msgstr "ògmh" + +msgid "jul" +msgstr "iuch" + +msgid "aug" +msgstr "lùna" + +msgid "sep" +msgstr "sult" + +msgid "oct" +msgstr "dàmh" + +msgid "nov" +msgstr "samh" + +msgid "dec" +msgstr "dùbh" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Faoi" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Gearr" + +msgctxt "abbrev. month" +msgid "March" +msgstr "Màrt" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Gibl" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Cèit" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Ògmh" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Iuch" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Lùna" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sult" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Dàmh" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Samh" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dùbh" + +msgctxt "alt. month" +msgid "January" +msgstr "Am Faoilleach" + +msgctxt "alt. month" +msgid "February" +msgstr "An Gearran" + +msgctxt "alt. month" +msgid "March" +msgstr "Am Màrt" + +msgctxt "alt. month" +msgid "April" +msgstr "An Giblean" + +msgctxt "alt. month" +msgid "May" +msgstr "An Cèitean" + +msgctxt "alt. month" +msgid "June" +msgstr "An t-Ògmhios" + +msgctxt "alt. month" +msgid "July" +msgstr "An t-Iuchar" + +msgctxt "alt. month" +msgid "August" +msgstr "An Lùnastal" + +msgctxt "alt. month" +msgid "September" +msgstr "An t-Sultain" + +msgctxt "alt. month" +msgid "October" +msgstr "An Dàmhair" + +msgctxt "alt. month" +msgid "November" +msgstr "An t-Samhain" + +msgctxt "alt. month" +msgid "December" +msgstr "An Dùbhlachd" + +msgid "This is not a valid IPv6 address." +msgstr "Chan eil seo ’na sheòladh IPv6 dligheach." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "no" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d bliadhna" +msgstr[1] "%(num)d bhliadhna" +msgstr[2] "%(num)d bliadhnaichean" +msgstr[3] "%(num)d bliadhna" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mhìos" +msgstr[1] "%(num)d mhìos" +msgstr[2] "%(num)d mìosan" +msgstr[3] "%(num)d mìos" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d seachdain" +msgstr[1] "%(num)d sheachdain" +msgstr[2] "%(num)d seachdainean" +msgstr[3] "%(num)d seachdain" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d latha" +msgstr[1] "%(num)d latha" +msgstr[2] "%(num)d làithean" +msgstr[3] "%(num)d latha" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d uair a thìde" +msgstr[1] "%(num)d uair a thìde" +msgstr[2] "%(num)d uairean a thìde" +msgstr[3] "%(num)d uair a thìde" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d mhionaid" +msgstr[1] "%(num)d mhionaid" +msgstr[2] "%(num)d mionaidean" +msgstr[3] "%(num)d mionaid" + +msgid "Forbidden" +msgstr "Toirmisgte" + +msgid "CSRF verification failed. Request aborted." +msgstr "Dh’fhàillig le dearbhadh CSRF. chaidh sgur dhen iarrtas." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Chì thu an teachdaireachd seo air sgàth ’s gu bheil an làrach-lìn HTTPS seo " +"ag iarraidh air a’ bhrabhsair-lìn agad gun cuir e bann-cinn “Referer” thuice " +"ach cha deach gin a chur a-null. Tha feum air a’ bhann-chinn seo a chum " +"tèarainteachd ach nach cleachd treas-phàrtaidh am brabhsair agad gu droch-" +"rùnach." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ma rèitich thu am brabhsair agad ach an cuir e bannan-cinn “Referer” à " +"comas, cuir an comas iad a-rithist, co-dhiù airson na làraich seo no airson " +"ceanglaichean HTTPS no airson iarrtasan “same-origin”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Ma tha thu a’ cleachdadh taga no a’ gabhail a-staigh bann-cinn “'Referrer-Policy: no-referrer” feuch " +"an doir thu air falbh iad. Iarraidh an dìon CSRF bann-cinn “Referer” gus na " +"referers a dhearbhadh gu teann. Ma tha thu iomagaineach a thaobh do " +"prìobhaideachd, cleachd roghainnean eile mar airson " +"ceangal gu làraichean-lìn threas-phàrtaidhean." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Chì thu an teachdaireachd seo air sgàth ’s gu bheil an làrach-lìn seo ag " +"iarraidh briosgaid CSRF nuair a chuireas tu foirm a-null. Tha feum air a’ " +"bhriosgaid seo a chum tèarainteachd ach nach cleachd treas-phàrtaidh am " +"brabhsair agad gu droch-rùnach." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ma rèitich thu am brabhsair agad ach an cuir e briosgaidean à comas, cuir an " +"comas iad a-rithist, co-dhiù airson na làraich seo no airson iarrtasan “same-" +"origin”." + +msgid "More information is available with DEBUG=True." +msgstr "Gheibh thu barrachd fiosrachaidh le DEBUG=True." + +msgid "No year specified" +msgstr "Cha deach bliadhna a shònrachadh" + +msgid "Date out of range" +msgstr "Tha ceann-là taobh thar na rainse" + +msgid "No month specified" +msgstr "Cha deach mìos a shònrachadh" + +msgid "No day specified" +msgstr "Cha deach latha a shònrachadh" + +msgid "No week specified" +msgstr "Cha deach seachdain a shònrachadh" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Chan eil %(verbose_name_plural)s ri fhaighinn" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Chan eil %(verbose_name_plural)s san àm ri teachd ri fhaighinn air sgàth ’s " +"gun deach %(class_name)s.allow_future a shuidheachadh air False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Sreang cinn-là “%(datestr)s” mì-dhligheach airson an fhòrmait “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Cha deach %(verbose_name)s a lorg a fhreagras dhan cheist" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Chan eil an duilleag ’na “last” is cha ghabh a h-iompachadh gu àireamh shlàn." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Duilleag mhì-dhligheach (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" +"Tha liosta fhalamh ann agus chaidh “%(class_name)s.allow_empty” a " +"shuidheachadh air False." + +msgid "Directory indexes are not allowed here." +msgstr "Chan eil clàran-amais pasgain falamh ceadaichte an-seo." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "Chan eil “%(path)s” ann" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Clàr-amais dhe %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Chaidh a stàladh! Meal do naidheachd!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Seall na nòtaichean sgaoilidh airson Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Chì thu an duilleag seo on a tha DEBUG=True ann am faidhle nan roghainnean agad agus cha do rèitich " +"thu URL sam bith fhathast." + +msgid "Django Documentation" +msgstr "Docamaideadh Django" + +msgid "Topics, references, & how-to’s" +msgstr "Cuspairean, iomraidhean ⁊ treòraichean" + +msgid "Tutorial: A Polling App" +msgstr "Oideachadh: Aplacaid cunntais-bheachd" + +msgid "Get started with Django" +msgstr "Dèan toiseach-tòiseachaidh le Django" + +msgid "Django Community" +msgstr "Coimhearsnachd Django" + +msgid "Connect, get help, or contribute" +msgstr "Dèan ceangal, faigh taic no cuidich" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gd/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/gd/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/gd/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..226b3106f3ecb2184ce2e594a1e6c54d11476541 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFDTY@_mJ{Nqo&Au`<}!fs-k@6;<$hmw{nUL2~@!f1sG5jtF(km6kD=Cx@E?^(^d%;AoR0J<9$#`J$XtQLi zOaw6#8R20{HpxFenm-0&p0TSniJpn<3h08YVy;JgHPaIwk%Z|n)n`0il1y~huRHB} Y$>}CxH~B}2mIMePkV7pHz={Tb0D-4_<^TWy literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gd/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/gd/formats.py new file mode 100644 index 0000000..5ef6774 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/gd/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "h:ia" +DATETIME_FORMAT = "j F Y h:ia" +# YEAR_MONTH_FORMAT = +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "j M Y" +SHORT_DATETIME_FORMAT = "j M Y h:ia" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..4a9d16448006c2993b7c09e8382675b259949ba1 GIT binary patch literal 28464 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 HC+vR$p!k*c literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po new file mode 100644 index 0000000..7ebeab2 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po @@ -0,0 +1,1356 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# fasouto , 2011-2012 +# fonso , 2011,2013 +# fonso , 2013 +# fasouto , 2017 +# Jannis Leidel , 2011 +# Leandro Regueiro , 2013 +# 948a55bc37dd6d642f1875bb84258fff_07a28cc , 2012 +# X Bello , 2023-2024 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: X Bello , 2023-2024\n" +"Language-Team: Galician (http://app.transifex.com/django/django/language/" +"gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Africáner" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Algerian Arabic" +msgstr "Árabe Arxelino" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azerí" + +msgid "Bulgarian" +msgstr "Búlgaro" + +msgid "Belarusian" +msgstr "Bielorruso" + +msgid "Bengali" +msgstr "Bengalí" + +msgid "Breton" +msgstr "Bretón" + +msgid "Bosnian" +msgstr "Bosníaco" + +msgid "Catalan" +msgstr "Catalán" + +msgid "Central Kurdish (Sorani)" +msgstr "Kurdo Central (Sorani)" + +msgid "Czech" +msgstr "Checo" + +msgid "Welsh" +msgstr "Galés" + +msgid "Danish" +msgstr "Dinamarqués" + +msgid "German" +msgstr "Alemán" + +msgid "Lower Sorbian" +msgstr "Baixo Sorabo" + +msgid "Greek" +msgstr "Grego" + +msgid "English" +msgstr "Inglés" + +msgid "Australian English" +msgstr "Inglés australiano" + +msgid "British English" +msgstr "inglés británico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Español" + +msgid "Argentinian Spanish" +msgstr "Español da Arxentina" + +msgid "Colombian Spanish" +msgstr "Español de Colombia" + +msgid "Mexican Spanish" +msgstr "Español de México" + +msgid "Nicaraguan Spanish" +msgstr "Español de Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Español de Venezuela" + +msgid "Estonian" +msgstr "Estoniano" + +msgid "Basque" +msgstr "Vasco" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finés" + +msgid "French" +msgstr "Francés" + +msgid "Frisian" +msgstr "Frisón" + +msgid "Irish" +msgstr "Irlandés" + +msgid "Scottish Gaelic" +msgstr "Gaélico Escocés" + +msgid "Galician" +msgstr "Galego" + +msgid "Hebrew" +msgstr "Hebreo" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "Alto Sorabo" + +msgid "Hungarian" +msgstr "Húngaro" + +msgid "Armenian" +msgstr "Armenio" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesio" + +msgid "Igbo" +msgstr "Ibo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandés" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Xaponés" + +msgid "Georgian" +msgstr "Xeorxiano" + +msgid "Kabyle" +msgstr "Cabilio" + +msgid "Kazakh" +msgstr "Casaco" + +msgid "Khmer" +msgstr "Camboxano" + +msgid "Kannada" +msgstr "Canará" + +msgid "Korean" +msgstr "Coreano" + +msgid "Kyrgyz" +msgstr "Kirguiz" + +msgid "Luxembourgish" +msgstr "Luxemburgués" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Letón" + +msgid "Macedonian" +msgstr "Macedonio" + +msgid "Malayalam" +msgstr "Mala" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malaio" + +msgid "Burmese" +msgstr "Birmano" + +msgid "Norwegian Bokmål" +msgstr "Bokmål Noruegués" + +msgid "Nepali" +msgstr "Nepalés" + +msgid "Dutch" +msgstr "Holandés" + +msgid "Norwegian Nynorsk" +msgstr "Noruegués (nynorsk)" + +msgid "Ossetic" +msgstr "Osetio" + +msgid "Punjabi" +msgstr "Panxabiano" + +msgid "Polish" +msgstr "Polaco" + +msgid "Portuguese" +msgstr "Portugués" + +msgid "Brazilian Portuguese" +msgstr "Portugués do Brasil" + +msgid "Romanian" +msgstr "Romanés" + +msgid "Russian" +msgstr "Ruso" + +msgid "Slovak" +msgstr "Eslovaco" + +msgid "Slovenian" +msgstr "Esloveno" + +msgid "Albanian" +msgstr "Albanés" + +msgid "Serbian" +msgstr "Serbio" + +msgid "Serbian Latin" +msgstr "Serbio (alfabeto latino)" + +msgid "Swedish" +msgstr "Sueco" + +msgid "Swahili" +msgstr "Suahili" + +msgid "Tamil" +msgstr "Támil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Taxico" + +msgid "Thai" +msgstr "Tai" + +msgid "Turkmen" +msgstr "Turcomá" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tártaro" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Uigur" + +msgid "Ukrainian" +msgstr "Ucraíno" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbeco" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chinés simplificado" + +msgid "Traditional Chinese" +msgstr "Chinés tradicional" + +msgid "Messages" +msgstr "Mensaxes" + +msgid "Site Maps" +msgstr "Mapas do sitio" + +msgid "Static Files" +msgstr "Arquivos Estáticos" + +msgid "Syndication" +msgstr "Sindicación" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Ese número de páxina non é un enteiro" + +msgid "That page number is less than 1" +msgstr "Ese número de páxina é menor que 1" + +msgid "That page contains no results" +msgstr "Esa páxina non contén resultados" + +msgid "Enter a valid value." +msgstr "Insira un valor válido." + +msgid "Enter a valid domain name." +msgstr "Introduza un nome de dominio válido." + +msgid "Enter a valid URL." +msgstr "Insira un URL válido." + +msgid "Enter a valid integer." +msgstr "Introduza un enteiro válido." + +msgid "Enter a valid email address." +msgstr "Insira un enderezo de correo electrónico válido." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Insira un “slug” valido composto por letras, números, guións baixos ou " +"medios." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Insira un “slug” valido composto por letras Unicode, números, guións baixos " +"ou medios." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Introduza unha dirección %(protocol)s válida." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 ou IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Insira só díxitos separados por comas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Asegúrese de que este valor é %(limit_value)s (agora é %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Asegure que este valor é menor ou igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Asegure que este valor é maior ou igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Asegúrese de que este valor é un múltiplo do tamaño do paso %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Asegúrese de que este valor é un múltiplo do tamaño do paso %(limit_value)s, " +"comezando por %(offset)s, p. ex. %(offset)s, %(valid_value1)s, " +"%(valid_value2)s, e sucesivos." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor ten polo menos %(limit_value)d caracter (agora " +"ten %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor ten polo menos %(limit_value)d caracteres (agora " +"ten %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asegúrese de que este valor ten como moito %(limit_value)d caracter (agora " +"ten %(show_value)d)." +msgstr[1] "" +"Asegúrese de que este valor ten como moito %(limit_value)d caracteres (agora " +"ten %(show_value)d)." + +msgid "Enter a number." +msgstr "Insira un número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asegure que non hai mais de %(max)s díxito en total." +msgstr[1] "Asegure que non hai mais de %(max)s díxitos en total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Asegúrese de que non hai máis de %(max)s lugar decimal." +msgstr[1] "Asegúrese de que non hai máis de %(max)s lugares decimais." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Asegúrese de que no hai máis de %(max)s díxito antes do punto decimal." +msgstr[1] "" +"Asegúrese de que non hai máis de %(max)s díxitos antes do punto decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Non se permite a extensión “%(extension)s”. As extensións permitidas son: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Non se permiten caracteres nulos." + +msgid "and" +msgstr "e" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Xa existe un %(model_name)s con este %(field_labels)s." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Viólase a restricción “%(name)s”." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "O valor %(value)r non é unha opción válida." + +msgid "This field cannot be null." +msgstr "Este campo non pode ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo non pode estar baleiro." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" +"Xa existe un modelo %(model_name)s coa etiqueta de campo %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s ten que ser único para %(lookup_type)s en " +"%(date_field_label)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo de tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "O valor “%(value)s” ten que ser ou True ou False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "O valor “%(value)s” ten que ser True, False ou None." + +msgid "Boolean (Either True or False)" +msgstr "Valor booleano (verdadeiro ou falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Cadea (máximo %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Texto (sin límite)" + +msgid "Comma-separated integers" +msgstr "Números enteiros separados por comas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"O valor “%(value)s” ten un formato inválido de data. Debe estar no formato " +"AAAA-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"O valor “%(value)s” ten o formato correcto (AAAA-MM-DD) pero non é unha data " +"válida." + +msgid "Date (without time)" +msgstr "Data (sen a hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"O valor “%(value)s” ten un formato non válido. Debe de ter o formato AAAA-MM-" +"DD HH:MM[:ss[.uuuuuu]][TZ]. " + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"O valor “%(value)s” ten o formato correcto (AAAA-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) pero non é unha data/hora válida." + +msgid "Date (with time)" +msgstr "Data (coa hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” ten que ser un número en formato decimal." + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"O valor “%(value)s” ten un formato non válido. Debe de ter o formato [DD] " +"[[HH:]MM:]ss[.uuuuuu]. " + +msgid "Duration" +msgstr "Duración" + +msgid "Email address" +msgstr "Enderezo electrónico" + +msgid "File path" +msgstr "Ruta de ficheiro" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "O valor “%(value)s” ten que ser un número en coma flotante." + +msgid "Floating point number" +msgstr "Número en coma flotante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "O valor “%(value)s” ten que ser un número enteiro." + +msgid "Integer" +msgstr "Número enteiro" + +msgid "Big (8 byte) integer" +msgstr "Enteiro grande (8 bytes)" + +msgid "Small integer" +msgstr "Enteiro pequeno" + +msgid "IPv4 address" +msgstr "Enderezo IPv4" + +msgid "IP address" +msgstr "Enderezo IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "O valor “%(value)s” ten que ser None, True ou False." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (verdadeiro, falso ou ningún)" + +msgid "Positive big integer" +msgstr "Número enteiro positivo grande" + +msgid "Positive integer" +msgstr "Numero enteiro positivo" + +msgid "Positive small integer" +msgstr "Enteiro pequeno positivo" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (ata %(max_length)s)" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"O valor “%(value)s” ten un formato non válido. Ten que ter o formato HH:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"O valor “%(value)s” ten o formato correcto (HH:MM[:ss[.uuuuuu]]) pero non é " +"unha hora válida." + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datos binarios en crú" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” non é un UUID válido." + +msgid "Universally unique identifier" +msgstr "Identificador único universal" + +msgid "File" +msgstr "Ficheiro" + +msgid "Image" +msgstr "Imaxe" + +msgid "A JSON object" +msgstr "Un obxeto JSON" + +msgid "Value must be valid JSON." +msgstr "O valor ten que ser JSON válido." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "A instancia de %(model)s co %(field)s %(value)r non existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clave Foránea (tipo determinado por un campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relación un a un" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relación %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relacións %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relación moitos a moitos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Requírese este campo." + +msgid "Enter a whole number." +msgstr "Insira un número enteiro." + +msgid "Enter a valid date." +msgstr "Insira unha data válida." + +msgid "Enter a valid time." +msgstr "Insira unha hora válida." + +msgid "Enter a valid date/time." +msgstr "Insira unha data/hora válida." + +msgid "Enter a valid duration." +msgstr "Introduza unha duración válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "O número de días ten que estar entre {min_days} e {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Non se enviou ficheiro ningún. Comprobe o tipo de codificación do formulario." + +msgid "No file was submitted." +msgstr "Non se enviou ficheiro ningún." + +msgid "The submitted file is empty." +msgstr "O ficheiro enviado está baleiro." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Asegúrese de que este nome de arquivo ten como moito %(max)d caracter (agora " +"ten %(length)d)." +msgstr[1] "" +"Asegúrese de que este nome de arquivo ten como moito %(max)d caracteres " +"(agora ten %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Ou ben envíe un ficheiro, ou ben marque a casilla de eliminar, pero non " +"ambas as dúas cousas." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Suba unha imaxe válida. O ficheiro subido non era unha imaxe ou esta estaba " +"corrupta." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Escolla unha opción válida. %(value)s non se atopa entre as opcións " +"dispoñibles." + +msgid "Enter a list of values." +msgstr "Insira unha lista de valores." + +msgid "Enter a complete value." +msgstr "Introduza un valor completo." + +msgid "Enter a valid UUID." +msgstr "Insira un UUID válido." + +msgid "Enter a valid JSON." +msgstr "Introduza un JSON válido." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) %(error)s." + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Faltan datos ou foron manipulados de ManagementForm. Campos afectados: " +"%(field_names)s. Debería abrir un informe de bug si o problema é persistente." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Por favor envíe como moito %(num)d formulario." +msgstr[1] "Por favor envíe como moito %(num)d formularios." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Por favor envíe polo menos %(num)d formulario." +msgstr[1] "Pro favor envíe polo menos %(num)d formularios." + +msgid "Order" +msgstr "Orde" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Corrixa os datos duplicados no campo %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Corrixa os datos duplicados no campo %(field)s, que debe ser único." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Corrixa os datos duplicados no campo %(field_name)s, que debe ser único para " +"a busca %(lookup)s no campo %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Corrixa os valores duplicados de abaixo." + +msgid "The inline value did not match the parent instance." +msgstr "O valor na liña non coincide ca instancia nai." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Escolla unha opción válida. Esta opción non se atopa entre as opcións " +"dispoñíbeis" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” non é un valor válido." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s non se puido interpretar na zona hora horaria " +"%(current_timezone)s; pode ser ambiguo ou non existir." + +msgid "Clear" +msgstr "Limpar" + +msgid "Currently" +msgstr "Actualmente" + +msgid "Change" +msgstr "Modificar" + +msgid "Unknown" +msgstr "Descoñecido" + +msgid "Yes" +msgstr "Si" + +msgid "No" +msgstr "Non" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "si,non,quizais" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "medianoite" + +msgid "noon" +msgstr "mediodía" + +msgid "Monday" +msgstr "Luns" + +msgid "Tuesday" +msgstr "Martes" + +msgid "Wednesday" +msgstr "Mércores" + +msgid "Thursday" +msgstr "Xoves" + +msgid "Friday" +msgstr "Venres" + +msgid "Saturday" +msgstr "Sábado" + +msgid "Sunday" +msgstr "Domingo" + +msgid "Mon" +msgstr "lun" + +msgid "Tue" +msgstr "mar" + +msgid "Wed" +msgstr "mér" + +msgid "Thu" +msgstr "xov" + +msgid "Fri" +msgstr "ven" + +msgid "Sat" +msgstr "sáb" + +msgid "Sun" +msgstr "dom" + +msgid "January" +msgstr "Xaneiro" + +msgid "February" +msgstr "Febreiro" + +msgid "March" +msgstr "Marzo" + +msgid "April" +msgstr "Abril" + +msgid "May" +msgstr "Maio" + +msgid "June" +msgstr "Xuño" + +msgid "July" +msgstr "Xullo" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Setembro" + +msgid "October" +msgstr "Outubro" + +msgid "November" +msgstr "Novembro" + +msgid "December" +msgstr "Decembro" + +msgid "jan" +msgstr "xan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "xuñ" + +msgid "jul" +msgstr "xul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "set" + +msgid "oct" +msgstr "out" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Xan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marzo" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maio" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Xuño" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Xullo" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Set." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Out." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Xaneiro" + +msgctxt "alt. month" +msgid "February" +msgstr "Febreiro" + +msgctxt "alt. month" +msgid "March" +msgstr "Marzo" + +msgctxt "alt. month" +msgid "April" +msgstr "Abril" + +msgctxt "alt. month" +msgid "May" +msgstr "Maio" + +msgctxt "alt. month" +msgid "June" +msgstr "Xuño" + +msgctxt "alt. month" +msgid "July" +msgstr "Xullo" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Setembro" + +msgctxt "alt. month" +msgid "October" +msgstr "Outubro" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembro" + +msgctxt "alt. month" +msgid "December" +msgstr "Decembro" + +msgid "This is not a valid IPv6 address." +msgstr "Isto non é un enderezo IPv6 válido." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ou" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d ano" +msgstr[1] "%(num)d anos" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mes" +msgstr[1] "%(num)d meses" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d semana" +msgstr[1] "%(num)d semanas" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d día" +msgstr[1] "%(num)d días" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hora" +msgstr[1] "%(num)d horas" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuto" +msgstr[1] "%(num)d minutos" + +msgid "Forbidden" +msgstr "Denegado" + +msgid "CSRF verification failed. Request aborted." +msgstr "Fallóu a verificación CSRF. Abortouse a petición." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Está vendo esta mensaxe porque este sitio HTTPS require que o navegador " +"envíe un \"Referer header\", pero non envióu ningún. Este encabezamento é " +"necesario por razóns de seguridade, para asegurar que o navegador non está " +"sendo suplantado por terceiros." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Se ten o navegador configurado para deshabilitar os encabezamentos " +"\"Referer\", por favor habilíteos polo menos para este sitio, ou para " +"conexións HTTPS, ou para peticións de \"mesmo-orixe\"." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Si está usando a etiqueta " +"ou incluíndo o encabezado “Referrer-Policy: no-referrer”, por favor quíteos. " +"A protección CSRF require o encabezado “Referer” para facer a comprobación " +"estricta de referer. Si lle preocupa a privacidade, use alternativas como para enlazar con sitios de terceiros." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Está vendo esta mensaxe porque este sitio HTTPS require unha cookie CSRF ó " +"enviar formularios. Esta cookie é necesaria por razóns de seguridade, para " +"asegurar que o navegador non está sendo suplantado por terceiros." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Se ten o navegador configurado para deshabilitar as cookies, por favor " +"habilíteas, polo menos para este sitio, ou para peticións de “same-origin”." + +msgid "More information is available with DEBUG=True." +msgstr "Pode ver máis información se establece DEBUG=True." + +msgid "No year specified" +msgstr "Non se especificou ningún ano" + +msgid "Date out of range" +msgstr "Data fora de rango" + +msgid "No month specified" +msgstr "Non se especificou ningún mes" + +msgid "No day specified" +msgstr "Non se especificou ningún día" + +msgid "No week specified" +msgstr "Non se especificou ningunha semana" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Non hai %(verbose_name_plural)s dispoñibles" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Non hai dispoñibles %(verbose_name_plural)s futuros/as porque %(class_name)s." +"allow_futuro é False" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "A data “%(datestr)s” non é válida para o formato “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Non se atopou ningún/ha %(verbose_name)s que coincidise coa consulta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "A páxina non é “last” nin se pode converter a int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Páxina non válida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "A lista está baleira pero “%(class_name)s.allow_empty” é False." + +msgid "Directory indexes are not allowed here." +msgstr "Os índices de directorio non están permitidos aquí." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” non existe" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índice de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "A instalación foi un éxito! Noraboa!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Ver as notas de publicación para Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Está vendo esta páxina porque no arquivo de axustes ten DEBUG=True e non hai ningunha URL " +"configurada." + +msgid "Django Documentation" +msgstr "Documentación de Django" + +msgid "Topics, references, & how-to’s" +msgstr "Temas, referencias, & guías de uso" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: aplicación de enquisas" + +msgid "Get started with Django" +msgstr "Comenzar con Django" + +msgid "Django Community" +msgstr "Comunidade de Django" + +msgid "Connect, get help, or contribute" +msgstr "Conectar, conseguir axuda, ou contribuir" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gl/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/gl/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/gl/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..668f2ec45f47ead8ac675e0a8de4b9dd583a3596 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF+R;`jwU}jj{C~MaqtY>u}vE+VGeSbhdj=~9L~c$ z7NCF&uz=6t87{&i7NLksu!JRxtC!R2Ohy<5vc4@&n(wx!$u%4FPms~)JEAgEQ*mz= zcc!#}oAaiVN}JNiY~R_n)_h~dw}y2ImQ`SDu5OqEV8gQA8|*1L6u%>FA-T?GnOM3t&uniMl*j-~} zfuVZfKDbC=Z`h=@-)W-}4I+wOf-ojXC4Mpw7BNMWfW{tiBQFV0&i&~VqSH8NE*$~zQXmF-k{PTIQ;Y=D1b+RGr+fl zs`oU=|G^9V84m_$1i_`i<=|yt89W($7(5kx7Ucinhx}3dVQ0GXGd(tgDqjE|0v0?j z^Y{*r@Ah~Pcoy|mfWyF#fRG(L3LXqT1|AJQ?(csAJc9gl;Nf6D_?RGeKAv%mEJr7lJ2(ZJ_483_J&11M2?cpzc2f zs{OY>qX!h7FM+D}U*LJ*Fea;fBPhOJ1ghO^Q1mYVj{_I_`(0p2{x0xba0jUQd>K^# z{h-?Y08~Fe0gnZL32OeYg6i*tI@fLlcntX_Q1vH(Bf%-4+GRn_=XOxztOC{ldQj`I z1(aMo3~C-f154nq!TZ7Xvx8s>_y=$WSb|yGz(Ym^!B%iLcsba@WY&Q9fD^zvh`0iL zD=0a95IhO|j>q4C;_H$1L2w#)8psgAB|g6p)O?qMTGxAhev`+Kfa3S(LG}ARP;&Zv z@QvV!4X*w9pyq!icq2F;oCAIc)K+>Ggyi52Eanm5<>2AqG>_MU+D~r=CBI9+R`6}0 z>VFqJ4E!mm{$BFshn~-xkUtjGx?Bmq4xHxmSA%MI9e5LXBdBp7@%SlF?LH4`e$Rng zw-gF9L^AJ_Cfc!7T6`a2a?kxDgaT zKLlzYJPk^o4;tt8@rfSK^?0ert3lCqGZ=yqDEjXLB@g$3n#Xou{y|W5JOVa@kNNVK z!D;0G3xxDw;srsF2MZvg8oU5b0*}5h2(AX_fHT1LpyvN0P<;Odcp~^aQ1d$SA~&x$ zfuidIQ2ZMYitbsyd_E{X-|WlZ3aVZPoC@}U)4?Y}@%gZeU4O@cTIW;1i~+bgD!FX9RjM|Q65hOCGT$n#pimD zO&%`$4> zQ1ll-wO;|=2(AUi-bPGEjV<2TFe0!TZ45K#i+K(0B)f zYJUu<@)N;Vz>~q}z~eYvz6E{{)VQC3X`1H~p!)y1#}_@m;_*lhAKgF0<5*DbrhvzR zZ}#Q4dc57=Uja(Kw}Gnns4suU<99&y`zug#JnTw`$AfBD2Oa}n0BXERpz2=_YX4+F z&GQ`|-{tWxkN0@I&*LhO_j`Q6<0g+=LCM2*Q2cq=mp|h1SGM1=%j@F*pQs0J5=wrdK?FyNqz#Tdbfa*pId#t2h{r9 z1r7(dd3+cYKRyYn{=b4Fz!$)?!NX^<_rX!1`n?HMc?YO=_k!A|+d#E{!k0e>jv@bJ zQ1qX44Z07k2Zw{#fro=PgX%8=#m~FJOTj07`75CMeN&5TcRqLo`HMldzY3JSHWL(I z+QBoxJ3)=J8GHly0iXX2sByjoYF`eU?eIkKQ1a)38m|%5KD!*$`d$Yf1+E3hvtSQ_ zZv%gDE&3h2mVEi`V3GUxfLf0~f|92b*wkuw4k-B<>+=ghjo0e23lzP} zz@x$Ug3`Brp!#_T6x|;K-^Y4A3EoeBMv5~Q{2r+O-rwqQ4R|K`t)TSrXF>J%P4Hy! zMQ{%IM^Ni^ZJTTN9#C|w@c9Ql?glmfqaL5|<Yo8hZq5ha2u=kx?#-a)u^3eQCEzaby`bhZ7NxBA*MS=6EgmCZo&`^*yvLWX@wf?8 z{||v7_z0+ez6q-S3*fM50Ph74%{V=@ z3YnYS`G@JFEf{p4aN2hV__Cmyeyc!O7wiVvdcm=5s-wUzQ0Zny4j;283Edi)4DlKcI9p3_92Od#y>wC1v5Ui*C0#Nh58GIXfD=2>c z7}Wg#2&%s$P+rG?r-I|a2Jn3FW>E6{KJa*OJNO{@2~h2CEICYrqAw3>AH7}qgWv=B zGWq+;LGZu8JD0fnxup(!z{4nix5xK;?De<-)cS1m_)nnt^)Zj10@eO0k6-fm4N&y` zJ1Dw-;`6`t`B#1ZsAaDIlRSo?`fu^>~}dWgg$@ z@h*>l@3Gh8dQkJ+3LXc3z?Xl@<5Qsc`bALt=&Qc`$Dr2bKfpJEL618xPY2H?dliU? z25FEg!8gEnfi25fBk-$WL3xDZ9`MuPE#NF}UJ35<_%rY_@(s5;Kei22ewWYx5R@D? zyu;av*Rb{)_Y#uoX-?lKY3$#VencAhn?{?TPsmehWxHwksDKnn3yMNz$*d$?+3B)Yrce97}rI zw>e35$UhEV@5>GWM^JV#>3v+cfam&qt`|F!M3QizN zFYZ=`-ya;<-;wn3uUz%}GRfm`%H9nAn)EX1bn^O5A!(gB_Jbdg{*I*I3ep**o0Q=v z-7%GPIqeSeZB-usKEs9fbNoA=I^ARtr{H6xpOUU2JxH4F+t1o>d2o6UQL?J^;U2r=_1naNNY$>kRBlEH;+1!{qK?CSWH;}ZS_4_vIUr4u*-b`Kn?sX7+)uUhnX_C*M>FXWiaW3T-kWM9alDbIeaPI_v z|Bc|~lzoe&-zf5Tx=Z`}KlxiGo$Bkqh3i>%$JxgV{q^Dg{@2O>7wN6O{75kCuP^a+ z?jo-<=VH?9{k^3gTrUB4TF(7Bm$I`-`i&vgbA2A^d9FinC3pyU9e5Quj`S(6Um(T5!zdd? z<|I(R?>Gpycsvv2NDVSRzY2Vgq_cJycp>S0t{cH-@CMRh&0Cc{RZ$IsXLosa2m$T{I3wNw5g{@JT$(5o) zcOfc8X|6-n376+{Q8=Q$tz0NXxzZw)si>hiKFpNDu2hd2rn*`)9p!wv80HIcaV}p9 zqh*<5sfi)mGf_6ZD4S}HvW(hQF4}nIT;{fN6t>gIQMIVH-iZ2aKEJr!y{OdF&4|`f zA>Y+dY#dQv%F|IH%BD)0e6HA;>DDNFyjkRKS3Yf{XL7|-D%Tc;OEaZT2DUNjY()K% zRJI&76vA{qDuy-mTiZpslrhcPl{zzOQcG|uTZmHW9yf2JcYhid8GLZdT)C?u9i~$~ zke*y?9xl_FFBfVum0MkzT)7k_H(j>sc0O0?tlU+ua&u`EEl%z!Q@Pa>r79yTqg%zy z@(40pdu+g}95;*M^hx?V%l@|5-#PYo{-mIOMkbw(a-lIWWLC!82Ckw)Az#2f7!_h@ zHDB3uRxmNVdfv6O!+h(lQClgP*b+=^FJu;{Qn_L;lx6!HPaSM z>@H-oL7XXcAiNn>4Ci&zpxDW+uE@14mda`wOe}XGm_V^qNM%)bYOW(|b(cql)>P(J zS_YF+MT9n(gyCdWA%y*!hloO^1gQzhlginSluc_= znVC{?^1Qjz!X+@NJ=12pCTve-vQfGzoEtGCwq&Z6ZYc;Rr%I_TGn)+8U`05qTu7_) z`g!>RJZK0eccyY3bjj2T!Q^~4j{>OT?c{t{SE{iXb*BpG8Yz=f1T%_M&E;6bQDH|^ z3Ol20_bAP>4H+zCS|zkp5cg>izHrBeSS((+V`Ip6TawAM-;KaRo+*ezr#>*?fD*w3yG7s4ePhW!1RIbTM)En#*QUioujj z0pjz89wwBImPKsaLS%{}mCfdtGEr7IY6_+xC>{AwTtLN@dg6j9`L;4bS2FGgQ_3(0 z<;6t_%BOa*8euA(E=0v5x$aU=i14v0xwPX&TQ*fJdL`6kBQA@E@s0K$L zTBX$4kZ!1=VZZw+?z|$!z$3{*z)0HVLa_8XCWEDH}OXCUyNIQ@os|noSEmx$4D3aL(d!a>eH2*7KN);Y)ZjidVZ~-??U6urr9@4!JHkLH z<+;MvlHD;aYAuvgg`QxVJR8kYK1wr!?K}eKv2d5?Mf!tFP-12r_wFoDvJFLle9PbP zW<*ms(c2SAH8VBTy|1#Uaz~Dl4bh##uAi34nRz=cD+`GQ=+8#2@Kg;uk>1FoV> zM=qQd^@R1Jmh+d@!CAnJVeaNyacR?O2&UovVWdneWR&EU0A~G8D`P%OQDIuP=8KUT zD2uwYh@gBuo7NIcn^Y@YXpP!Z<)S&1gN>PX*ArUDn=;eckZt1j^eA8Ga2JIx%a@!Y zgg`U$oW&JPFUWnF!P-PigBciUnP5g4N~uuC_k_Aa)Q*P|73$1v#hRN?m&-RMrB{Td6jF~HoNLRL({T@M zj=8>JS=~GNi)enC$3{u7!{(!Qn08Hb>)|sWz^La&W8xI-@6O>5;myhsDL)b zAeDxUBvjUaRH$?%MVrpUs6wW#M0My!PquYNZHpnRDRfiC`Dgjqv29U7YmXCvNsRZj zB-Pf#7KM~l7RksVPD>aqn^_D)QW6l&JefEoY`?;M`D`Y)7^?CRmMNqgaRM-9i1t!MQVI(n7|*Q82I)Y&z7 z(`9@;UE+BaLOfHspusieWw>yNQ-{WG!J&aAy3vA1+vEOn)x}i~D&>w%W2yvN*x{(2 zu1wLky-p+S@YV=klu}(B0AANLg)P2{sm5YO=Sx2j%V`R4M1d$WmWybEG|TqKK4~p? zAb;KX*kOkAf?Z2TL<8tsrzJ88O+AgJd?Px}YhVe7f?F-}q&qW0)NqSt;@Di|Vi^v7 zC9u(gOG%QB20BnSnmt@ZCApQ9_KO~GtjcOn|I>9~+WbSk~i z&Ihw)zg25{)O>rMvz$re$;K*=m;&eHpvsk_AsJtlAUEWgZ6i7nrBz@|Tgnm?%dI#i z=JpR=98Q)>Glp_V<(GP?);S6ocV5*Id@UCw4J&YYdu)!~6A-hwIR6;QY~7ipc@tkR|qcq>P~u8(bCRLTjzivE!`bhHwV}tiLDMXwpZ@v3|TxFdBe%B z4jIb^+AD!(v1&ULr%9?tE+pp!j16icC&ni7)W)QJzBRv0Y$s%qFLfqe#BJkqC=Sm$ zne!y=tx|>XN-gh~qE!j4?xCkab<`1i9i>+l9GsKqJVc*|#OEayio$W<7Y-^Yc41yt z>Xmc15=#x{rk2t^hqY_s63oq`pCnmx%jimQUaF)-kPw|SuPtA)NaXZXgpdXEqO8O& zCHD*Ws;x7hA;=^RV$pV%(n+`Wg3M?(Y@!%^ZKk$|Ugj&h<+|M8e!5F;ug=3&TO#fD&B z4KL%U^E?Ir+Ctgu^oM1}5nNx+S>zx}(<&|+x=(kP(FppM3puu`j;BI7r--hMRosGu zc{t)qqVysa=-}QS%qufHl(d#;X{wVrG8ieW8_esG`D1JdW6dqvd;6Ynymd#3vB~eF+7QJ2P8O)MTqtUJ=MxbK=I6UJZ76eR z_G8?0eJ*y)_>ce|XAfpSYgI_4(GU3?QJGlW=ksub7E3_pgIG!+(eF$u+Z;{| zQ8qFw!-?J90WpkVLAtA4CCGD;PcNgdKOR3e3 zql(wzr$yAg1MQ&IG@i;Ag0xS)_O z2Mc;SU{bJPc`I(>_0m6y9>QU(Ww2LNzFPdq(kU?)$GJYrMa#=_9+QVk*Jq-VnSoKj zbUNQwY)aen0bDsf&uSvdFgnVOHj_#Lf`;N~Yy$a!#nE-x zo;Lw9r%X;s90?Oh7=X2AYZUk7_O@cr6ys-MplCyLoWubEIY4L?)+yD5 z@t$fWq_d>SS?~wDXS)N+${ho%@eprd5n;Q5MYyGdisYEqc5iNKZIN@u29^zMh;J~k zdz^rQMf0L=m1Wrp=A^_^tSWF1r>m+Y4=bz6lCWe|S?qUL7uf_Wox9mp@_uU71n$D$=Z+vBgpcsqR9MDt81tZ4BC@)&M0K+*;0(azPh%1|DRUM;%$_wN_Oda|%YdDkVd;T34ME^#9jV&#WQ>K`Hpu(VW zhwO6b-e$~bZfRNATr4hZD%^g7tK=Mx=B1BJ zZahvjFLYsOE|@>9@zP2?jm2|=#;HEA)*N2inkgkzHe<65pJUH@8mGzj;i-mu^i!O0 z;dr9zwt>AK3a8vz^ zqn``L4-fh`^sfl}H}|jW-`)RUNN!vI&i-9t|BC+IK3pU%&`=EfS5kI=e_#L3u)mj! zO;jKHB}Z=esnf0fySP}VPJ8LUj~@G1_xC;j1Z{Vbw(8!B{ytTp`VQ)>>)+TE#191H zcOU!L*qxO%9jWdb`dqC}wnCf;tB!9auTBnnC6bYLS>>9S9|KoRcZ^^CR%Bo-S=Yao z8}SQ~jJQ$t^duAB#F3eT=CclNGN-EPRKL;q*~irOvyTm!B*pjl_r|R@iB;>F)J}0@ zpUsJ&(|!ePOvc?LRwjLr>FeJZ80Zf7=+_0y$XMmU1#oF=e{W#0dtfWwV?`^i;sRD= z2d$Fsm943`#{$2eyMp*);FxZ`ch!<#T?nZXgsr04E(Z1x7uOI}T}Z>tZqA$85Cb@+ zdo`?!3mA<36DIF=GJF4CCwJ71*u5Vm?6OsL{VVkbX#bA*VpDvvExuT*i+V_1Es@#8 zjJGg~#9xjy&y=_t{7R^{ni0B=6*fmPxkUvVxNE8*V6}Hz zV+2#>t42~&wRcws%u(n)%|8N z8{&?vl!{iMyZ6VfR#IQP4w6GC>)-JF$GO+{{Nw#wo`1yOu+B6CtGCIK8N$mA z+ApghxUYYM-brP)wsH+(5@j?HCF{a^&^D;4u3ci@p6ZNJ$J`eK*qZC&1>Hsri*qze_?U7OaK*-X`hE6?WYhPhh=Gz%TVC23+swQ4f1H zH)9;r*49Ni_OA=*Y71${06CGW5RW!7py#)i(=QW6tdW+=t2dDyOBr`olG#Ef34v+5 z?Og1X{F%mQHFi*Eg9^4n;Z9A=7N(a@ck`cCg5i4Uf0fnj4eR1fRVRM9;T#i?EMtTT z(pF;{YBuQKK9XxITpcrLHx;!q4KFpVdg)$q2xe^+4U%wi%NXI-%5JWw{)4vEI=RI$ z7atR~>uAcko0RA-wHE0jtjIU8X@2khDl~*3mES-RZJPPIJEa->FGr+y0>@fVT~xzl5U0!HPxc-M_;Dv4{ePm5 zT~blnm@B38%rxF)YSolhpWn%8?R-vEiC?_k>)G$pzZPQ zri5IZrRr7u>Qx(RWBmnJ?Qg@aQ~YI*drg{70fyQIUF=$ z9gCIh^%DzhLdfVF`6m!QfI0i@DfavNH_4X6Ra4}uPi)wrc~x%>p0DkLpRwLKu+9`y zGrQGqQS(SEV>f*4b z?f^RNBh|RVU;=oYnKU2bE{~e_avQZ4dtG}Tp}JBZtBy;SbScgb9uT_AS=c1dH-X`aqEOHniH9lM?KYLZ>9ccgEOKj~b zBBDuKh^aR&RUCpx5AJ)Ih9bcTjjY&8uLWx2Hb$hD)O-m2)e1kT(T4sE22!=;1lPT_ zEvg;knLxs>D(BA4lA&uqh+!C;SV)fwvuxEFMpqi&PhE6r6e1MFJ+?#qHXEFQ6c->> zUASPR#lr%6!n5B@^X(>K_Lj~NU(PVBdoaO1)~r@*{mj>AbMY@A3=w1SU(irbr`2lw zF8?JBITt2W5Xk~qTG3UO5#M!X1yy0pUPe{Kg~MC3-wHj7lyI>z372SX69G{TMMCJv zo$EwTbg2qSb=DJ9p?y{cEBJDaRzMry;veiJpti&awTZrlfqBG~O7btSxUoWYKvx+yNj zYLSRNf3!nY9hx!|Y*tu6JTcQ+%4lNAb$pvho04E56wp)z6~YxillT~!n$R{&#H`fH z5otj!h2-_9%9Bqois-F&)?8v{I5D$Y7B?_&*%r=)Z#4|;to^KKFj;lBn)*u1y;N2d z&98wrc&v@D6UgSOJy1g&6|_mL9DcdCV;PXT)kHX`>LNHtXj8-hf6) zRMVJ;nydb}C%LccUX>&&%?zx#i?uAB7EIet`kKDQYANsgHI0fbQT6GM)q=!;XT!xsHf@CReUM!%dQSkKMMD+)`=p$(^C5t5@T)g zTSWI2G1`Sb(2-*TXt!yor=}75%HU z% zb_O8W^eqFM1=Z2U16}@FqiPwH>B9t}P#2OlN%MoQjh?s~E#5%tWdrnDw{#qEndmDm zCj^Ie`j*N}&pzu^Jk}0EwzOp=(9B;?=S+ab3b_ChF$u6u+s?J!5KJRm5sl;BSgnHM z4<^dCb&^*sI5Xt@Bo)ym?iA5E;<&3g~jk+e#c*a=lzYkzJ@Kd+UFkwL;+A}ivq{0Xkz ziWEZ-ma;pw&`NqVESJ|)tc=$fQnM%y53x^Xnp_8gS7CNm%Q=v;He=HaXEM}GY_sZ5 z=pexEI-t`flhQY$(7uaOO3?!(LjVVVN<)U*%%R)wND@JrZw3rf+b*1+(dKH_lt+5YU zhWbwLLwa8oeyu=A>~O2P)NxN37h23XQUx96#*1E9wOy=|2`Gj@?ppU^ljoL}!&*uL zH7Re0%LYeuRVLGHty~gk@+7Z6Bxk30#=NX0p*Hc?Vj1c>*^O0at}!`OSbgl!6%zSP zT1yf8gWJqlO;Gb<60raxiQZN-ecr#41?c5J9gLf$@?AiJiGQ@zs4h( zuOkIPL32oDb!0}iUeA&*z^-VrZxs=6?HqXXP-&_MUHJs@8nl=S1hZN7gybso!?(cXu!sl+`3l*U{=zdi$ThZ z#zkRiYg|`3b>24;(RzWg&rMX}2Nf98b?<)G$1~Uk-R;Si{cEV6Bc}JOPJ(JNab~YQ zM-Z!OUTz-vRHRDNh77#fgd*|bp;y5>^4S>B^fflVmYcrAZ>Y@;xo^MI_M& zleC{{B+rkCq8j#+sSUGfhiS+3VY|k$FCY4szYc_pQyT z;D$-!N|pkpNe}C(f##JyR3Sczl-$sSSpRFNg~PtJPR#~I5f6|VwG4eLrJOQ#xqxb9M(U)7q~YOPxy@*g<8l=9!04dx|EjuhVHO zd(ZP+o~J)cU;Ed?fATk*P?M-89jW#(!3l-r24NDLVMu%nHacbNKH8+c=7Z9ezLC$2 zCUUB0)yM$e@UAClkCZ?Q(iy5-Hj-@C&AOF@CCkV`_G_8D+S2do! zbL+{|2k5MqKPoE?oxD~C^4f4;;|=kFVb#F*b;wx1>&mR1(q3uclM1ai, 2011-2012 +# Jannis Leidel , 2011 +# Meir Kriheli , 2011-2015,2017,2019-2020,2023 +# Menachem G., 2021 +# Menachem G., 2021 +# אורי רודברג , 2021 +# Yaron Shahrabani , 2021 +# אורי רודברג , 2020,2022-2023 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-04 06:49+0000\n" +"Last-Translator: Meir Kriheli , " +"2011-2015,2017,2019-2020,2023\n" +"Language-Team: Hebrew (http://app.transifex.com/django/django/language/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % " +"1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +msgid "Afrikaans" +msgstr "אפריקאנס" + +msgid "Arabic" +msgstr "ערבית" + +msgid "Algerian Arabic" +msgstr "ערבית אלג'ירית" + +msgid "Asturian" +msgstr "אסטורית" + +msgid "Azerbaijani" +msgstr "אזרית" + +msgid "Bulgarian" +msgstr "בולגרית" + +msgid "Belarusian" +msgstr "בֶּלָרוּסִית" + +msgid "Bengali" +msgstr "בנגאלית" + +msgid "Breton" +msgstr "בְּרֶטוֹנִית" + +msgid "Bosnian" +msgstr "בוסנית" + +msgid "Catalan" +msgstr "קאטלונית" + +msgid "Central Kurdish (Sorani)" +msgstr "כורדית מרכזית (סוראני)" + +msgid "Czech" +msgstr "צ'כית" + +msgid "Welsh" +msgstr "וולשית" + +msgid "Danish" +msgstr "דנית" + +msgid "German" +msgstr "גרמנית" + +msgid "Lower Sorbian" +msgstr "סורבית תחתונה" + +msgid "Greek" +msgstr "יוונית" + +msgid "English" +msgstr "אנגלית" + +msgid "Australian English" +msgstr "אנגלית אוסטרלית" + +msgid "British English" +msgstr "אנגלית בריטית" + +msgid "Esperanto" +msgstr "אספרנטו" + +msgid "Spanish" +msgstr "ספרדית" + +msgid "Argentinian Spanish" +msgstr "ספרדית ארגנטינית" + +msgid "Colombian Spanish" +msgstr "ספרדית קולומביאנית" + +msgid "Mexican Spanish" +msgstr "ספרדית מקסיקנית" + +msgid "Nicaraguan Spanish" +msgstr "ספרדית ניקרגואה" + +msgid "Venezuelan Spanish" +msgstr "ספרדית ונצואלית" + +msgid "Estonian" +msgstr "אסטונית" + +msgid "Basque" +msgstr "בסקית" + +msgid "Persian" +msgstr "פרסית" + +msgid "Finnish" +msgstr "פינית" + +msgid "French" +msgstr "צרפתית" + +msgid "Frisian" +msgstr "פריזית" + +msgid "Irish" +msgstr "אירית" + +msgid "Scottish Gaelic" +msgstr "גאלית סקוטית" + +msgid "Galician" +msgstr "גאליציאנית" + +msgid "Hebrew" +msgstr "עברית" + +msgid "Hindi" +msgstr "הינדי" + +msgid "Croatian" +msgstr "קרואטית" + +msgid "Upper Sorbian" +msgstr "סורבית עילית" + +msgid "Hungarian" +msgstr "הונגרית" + +msgid "Armenian" +msgstr "ארמנית" + +msgid "Interlingua" +msgstr "אינטרלינגואה" + +msgid "Indonesian" +msgstr "אינדונזית" + +msgid "Igbo" +msgstr "איגבו" + +msgid "Ido" +msgstr "אידו" + +msgid "Icelandic" +msgstr "איסלנדית" + +msgid "Italian" +msgstr "איטלקית" + +msgid "Japanese" +msgstr "יפנית" + +msgid "Georgian" +msgstr "גיאורגית" + +msgid "Kabyle" +msgstr "קבילה" + +msgid "Kazakh" +msgstr "קזחית" + +msgid "Khmer" +msgstr "חמר" + +msgid "Kannada" +msgstr "קאנאדה" + +msgid "Korean" +msgstr "קוריאנית" + +msgid "Kyrgyz" +msgstr "קירגיזית" + +msgid "Luxembourgish" +msgstr "לוקסמבורגית" + +msgid "Lithuanian" +msgstr "ליטאית" + +msgid "Latvian" +msgstr "לטבית" + +msgid "Macedonian" +msgstr "מקדונית" + +msgid "Malayalam" +msgstr "מלאיאלאם" + +msgid "Mongolian" +msgstr "מונגולי" + +msgid "Marathi" +msgstr "מראטהי" + +msgid "Malay" +msgstr "מלאית" + +msgid "Burmese" +msgstr "בּוּרְמֶזִית" + +msgid "Norwegian Bokmål" +msgstr "נורבגית ספרותית" + +msgid "Nepali" +msgstr "נפאלית" + +msgid "Dutch" +msgstr "הולנדית" + +msgid "Norwegian Nynorsk" +msgstr "נורבגית חדשה" + +msgid "Ossetic" +msgstr "אוסטית" + +msgid "Punjabi" +msgstr "פנג'אבי" + +msgid "Polish" +msgstr "פולנית" + +msgid "Portuguese" +msgstr "פורטוגזית" + +msgid "Brazilian Portuguese" +msgstr "פורטוגזית ברזילאית" + +msgid "Romanian" +msgstr "רומנית" + +msgid "Russian" +msgstr "רוסית" + +msgid "Slovak" +msgstr "סלובקית" + +msgid "Slovenian" +msgstr "סלובנית" + +msgid "Albanian" +msgstr "אלבנית" + +msgid "Serbian" +msgstr "סרבית" + +msgid "Serbian Latin" +msgstr "סרבית לטינית" + +msgid "Swedish" +msgstr "שוודית" + +msgid "Swahili" +msgstr "סווהילי" + +msgid "Tamil" +msgstr "טמילית" + +msgid "Telugu" +msgstr "טלגו" + +msgid "Tajik" +msgstr "טג'יקית" + +msgid "Thai" +msgstr "תאילנדית" + +msgid "Turkmen" +msgstr "טורקמנית" + +msgid "Turkish" +msgstr "טורקית" + +msgid "Tatar" +msgstr "טטרית" + +msgid "Udmurt" +msgstr "אודמורטית" + +msgid "Uyghur" +msgstr "אויגורית" + +msgid "Ukrainian" +msgstr "אוקראינית" + +msgid "Urdu" +msgstr "אורדו" + +msgid "Uzbek" +msgstr "אוזבקית" + +msgid "Vietnamese" +msgstr "וייטנאמית" + +msgid "Simplified Chinese" +msgstr "סינית פשוטה" + +msgid "Traditional Chinese" +msgstr "סינית מסורתית" + +msgid "Messages" +msgstr "הודעות" + +msgid "Site Maps" +msgstr "מפות אתר" + +msgid "Static Files" +msgstr "קבצים סטטיים" + +msgid "Syndication" +msgstr "הפצת תכנים" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "מספר העמוד אינו מספר שלם" + +msgid "That page number is less than 1" +msgstr "מספר העמוד קטן מ־1" + +msgid "That page contains no results" +msgstr "עמוד זה אינו מכיל תוצאות" + +msgid "Enter a valid value." +msgstr "יש להזין ערך חוקי." + +msgid "Enter a valid URL." +msgstr "יש להזין URL חוקי." + +msgid "Enter a valid integer." +msgstr "יש להזין מספר שלם חוקי." + +msgid "Enter a valid email address." +msgstr "נא להזין כתובת דוא\"ל חוקית" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"יש להזין 'slug' חוקי המכיל אותיות לטיניות, ספרות, קווים תחתונים או מקפים." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"יש להזין 'slug' חוקי המכיל אותיות יוניקוד, ספרות, קווים תחתונים או מקפים." + +msgid "Enter a valid IPv4 address." +msgstr "יש להזין כתובת IPv4 חוקית." + +msgid "Enter a valid IPv6 address." +msgstr "יש להזין כתובת IPv6 חוקית." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "יש להזין כתובת IPv4 או IPv6 חוקית." + +msgid "Enter only digits separated by commas." +msgstr "יש להזין רק ספרות מופרדות בפסיקים." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "יש לוודא שערך זה הינו %(limit_value)s (כרגע %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "יש לוודא שערך זה פחות מ או שווה ל־%(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "יש לוודא שערך זה גדול מ או שווה ל־%(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "יש לוודא שערך זה מהווה מכפלה של %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"יש לוודא שערך זה מהווה מכפלה של צעד בגודל %(limit_value)s, החל מ־%(offset)s, " +"לדוגמה: %(offset)s, %(valid_value1)s, %(valid_value2)s וכו'." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"נא לוודא שערך זה מכיל תו %(limit_value)d לכל הפחות (מכיל %(show_value)d)." +msgstr[1] "" +"נא לוודא שערך זה מכיל %(limit_value)d תווים לכל הפחות (מכיל %(show_value)d)." +msgstr[2] "" +"נא לוודא שערך זה מכיל %(limit_value)d תווים לכל הפחות (מכיל %(show_value)d)." +msgstr[3] "" +"נא לוודא שערך זה מכיל %(limit_value)d תווים לכל הפחות (מכיל %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"נא לוודא שערך זה מכיל תו %(limit_value)d לכל היותר (מכיל %(show_value)d)." +msgstr[1] "" +"נא לוודא שערך זה מכיל %(limit_value)d תווים לכל היותר (מכיל %(show_value)d)." +msgstr[2] "" +"נא לוודא שערך זה מכיל %(limit_value)d תווים לכל היותר (מכיל %(show_value)d)." +msgstr[3] "" +"נא לוודא שערך זה מכיל %(limit_value)d תווים לכל היותר (מכיל %(show_value)d)." + +msgid "Enter a number." +msgstr "נא להזין מספר." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "נא לוודא שאין יותר מספרה %(max)s בסה\"כ." +msgstr[1] "נא לוודא שאין יותר מ־%(max)s ספרות בסה\"כ." +msgstr[2] "נא לוודא שאין יותר מ־%(max)s ספרות בסה\"כ." +msgstr[3] "נא לוודא שאין יותר מ־%(max)s ספרות בסה\"כ." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "נא לוודא שאין יותר מספרה %(max)s אחרי הנקודה." +msgstr[1] "נא לוודא שאין יותר מ־%(max)s ספרות אחרי הנקודה." +msgstr[2] "נא לוודא שאין יותר מ־%(max)s ספרות אחרי הנקודה." +msgstr[3] "נא לוודא שאין יותר מ־%(max)s ספרות אחרי הנקודה." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "נא לוודא שאין יותר מספרה %(max)s לפני הנקודה העשרונית" +msgstr[1] "נא לוודא שאין יותר מ־%(max)s ספרות לפני הנקודה העשרונית" +msgstr[2] "נא לוודא שאין יותר מ־%(max)s ספרות לפני הנקודה העשרונית" +msgstr[3] "נא לוודא שאין יותר מ־%(max)s ספרות לפני הנקודה העשרונית" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"סיומת הקובץ \"%(extension)s\" אסורה. הסיומות המותרות הן: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "תווי NULL אינם מותרים. " + +msgid "and" +msgstr "ו" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s·עם·%(field_labels)s·אלו קיימים כבר." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "המגבלה \"%(name)s\" הופרה." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "ערך %(value)r אינו אפשרות חוקית." + +msgid "This field cannot be null." +msgstr "שדה זה אינו יכול להיות ריק." + +msgid "This field cannot be blank." +msgstr "שדה זה אינו יכול להיות ריק." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s·עם·%(field_label)s·זה קיימת כבר." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s חייב להיות ייחודי עבור %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "שדה מסוג: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "הערך \"%(value)s\" חייב להיות True או False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "\"%(value)s\" חייב להיות אחד מ־True‏, False, או None." + +msgid "Boolean (Either True or False)" +msgstr "בוליאני (אמת או שקר)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "מחרוזת (עד %(max_length)s תווים)" + +msgid "String (unlimited)" +msgstr "מחרוזת (ללא הגבלה)." + +msgid "Comma-separated integers" +msgstr "מספרים שלמים מופרדים בפסיקים" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"הערך \"%(value)s\" מכיל פורמט תאריך לא חוקי. חייב להיות בפורמט YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "הערך \"%(value)s\" בפורמט הנכון (YYYY-MM-DD), אך אינו תאריך חוקי." + +msgid "Date (without time)" +msgstr "תאריך (ללא שעה)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"הערך \"%(value)s\" מכיל פורמט לא חוקי. הוא חייב להיות בפורמטYYYY-MM-DD HH:" +"MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"הערך \"%(value)s\" בפורמט הנכון (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) אך אינו " +"מהווה תאריך/שעה חוקיים." + +msgid "Date (with time)" +msgstr "תאריך (כולל שעה)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "הערך \"%(value)s\" חייב להיות מספר עשרוני." + +msgid "Decimal number" +msgstr "מספר עשרוני" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"הערך \"%(value)s\" מכיל פורמט לא חוקי. הוא חייב להיות בפורמט [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "משך" + +msgid "Email address" +msgstr "כתובת דוא\"ל" + +msgid "File path" +msgstr "נתיב קובץ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” חייב להיות מספר נקודה צפה." + +msgid "Floating point number" +msgstr "מספר עשרוני" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "הערך '%(value)s' חייב להיות מספר שלם." + +msgid "Integer" +msgstr "מספר שלם" + +msgid "Big (8 byte) integer" +msgstr "מספר שלם גדול (8 בתים)" + +msgid "Small integer" +msgstr "מספר שלם קטן" + +msgid "IPv4 address" +msgstr "כתובת IPv4" + +msgid "IP address" +msgstr "כתובת IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "\"%(value)s\" חייב להיות אחד מ־None‏, True, או False." + +msgid "Boolean (Either True, False or None)" +msgstr "בוליאני (אמת, שקר או כלום)" + +msgid "Positive big integer" +msgstr "מספר שלם גדול וחיובי" + +msgid "Positive integer" +msgstr "מספר שלם חיובי" + +msgid "Positive small integer" +msgstr "מספר שלם חיובי קטן" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (עד %(max_length)s תווים)" + +msgid "Text" +msgstr "טקסט" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"הערך “%(value)s” מכיל פורמט לא חוקי. הוא חייב להיות בפורמט HH:MM[:ss[." +"uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"הערך “%(value)s” בפורמט הנכון (HH:MM[:ss[.uuuuuu]]) אך אינו מהווה שעה חוקית." + +msgid "Time" +msgstr "זמן" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "מידע בינארי גולמי" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" אינו UUID חוקי." + +msgid "Universally unique identifier" +msgstr "מזהה ייחודי אוניברסלי" + +msgid "File" +msgstr "קובץ" + +msgid "Image" +msgstr "תמונה" + +msgid "A JSON object" +msgstr "אובייקט JSON" + +msgid "Value must be valid JSON." +msgstr "הערך חייב להיות JSON חוקי." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "פריט %(model)s עם %(field)s %(value)r אינו קיים." + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (הסוג נקבע לפי השדה המקושר)" + +msgid "One-to-one relationship" +msgstr "יחס של אחד לאחד" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "קשר %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "קשרי %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "יחס של רבים לרבים" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "יש להזין תוכן בשדה זה." + +msgid "Enter a whole number." +msgstr "נא להזין מספר שלם." + +msgid "Enter a valid date." +msgstr "יש להזין תאריך חוקי." + +msgid "Enter a valid time." +msgstr "יש להזין שעה חוקית." + +msgid "Enter a valid date/time." +msgstr "יש להזין תאריך ושעה חוקיים." + +msgid "Enter a valid duration." +msgstr "יש להזין משך חוקי." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "מספר הימים חייב להיות בין {min_days} ל־{max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "לא נשלח שום קובץ. נא לבדוק את סוג הקידוד של הטופס." + +msgid "No file was submitted." +msgstr "לא נשלח שום קובץ" + +msgid "The submitted file is empty." +msgstr "הקובץ שנשלח ריק." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "נא לוודא ששם קובץ זה מכיל תו %(max)d לכל היותר (מכיל %(length)d)." +msgstr[1] "" +"נא לוודא ששם קובץ זה מכיל %(max)d תווים לכל היותר (מכיל %(length)d)." +msgstr[2] "" +"נא לוודא ששם קובץ זה מכיל %(max)d תווים לכל היותר (מכיל %(length)d)." +msgstr[3] "" +"נא לוודא ששם קובץ זה מכיל %(max)d תווים לכל היותר (מכיל %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "נא לשים קובץ או סימן את התיבה לניקוי, לא שניהם." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "נא להעלות תמונה חוקית. הקובץ שהעלת אינו תמונה או מכיל תמונה מקולקלת." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "יש לבחור אפשרות חוקית. %(value)s אינו בין האפשרויות הזמינות." + +msgid "Enter a list of values." +msgstr "יש להזין רשימת ערכים" + +msgid "Enter a complete value." +msgstr "יש להזין ערך שלם." + +msgid "Enter a valid UUID." +msgstr "יש להזין UUID חוקי." + +msgid "Enter a valid JSON." +msgstr "נא להזין JSON חוקי." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(שדה מוסתר %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"המידע של ManagementForm חסר או שובש. שדות חסרים: %(field_names)s. יתכן " +"שתצטרך להגיש דיווח באג אם הבעיה נמשכת." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "נא לשלוח טופס %(num)d לכל היותר." +msgstr[1] "נא לשלוח %(num)d טפסים לכל היותר." +msgstr[2] "נא לשלוח %(num)d טפסים לכל היותר." +msgstr[3] "נא לשלוח %(num)d טפסים לכל היותר." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "נא לשלוח טופס %(num)dאו יותר." +msgstr[1] "נא לשלוח %(num)d טפסים או יותר." +msgstr[2] "נא לשלוח %(num)d טפסים או יותר." +msgstr[3] "נא לשלוח %(num)d טפסים או יותר." + +msgid "Order" +msgstr "מיון" + +msgid "Delete" +msgstr "מחיקה" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "נא לתקן את הערכים הכפולים ל%(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "נא לתקן את הערכים הכפולים ל%(field)s, שערכים בו חייבים להיות ייחודיים." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"נא לתקן את הערכים הכפולים %(field_name)s, שחייבים להיות ייחודיים ל%(lookup)s " +"של %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "נא לתקן את הערכים הכפולים למטה." + +msgid "The inline value did not match the parent instance." +msgstr "הערך הפנימי אינו תואם לאב." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "יש לבחור אפשרות חוקית; אפשרות זו אינה אחת מהזמינות." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" אינו ערך חוקי." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"לא ניתן לפרש את %(datetime)s באזור הזמן %(current_timezone)s; הוא עשוי להיות " +"דו־משמעי או לא קיים." + +msgid "Clear" +msgstr "לסלק" + +msgid "Currently" +msgstr "עכשיו" + +msgid "Change" +msgstr "שינוי" + +msgid "Unknown" +msgstr "לא ידוע" + +msgid "Yes" +msgstr "כן" + +msgid "No" +msgstr "לא" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "כן,לא,אולי" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "בית %(size)d " +msgstr[1] "%(size)d בתים" +msgstr[2] "%(size)d בתים" +msgstr[3] "%(size)d בתים" + +#, python-format +msgid "%s KB" +msgstr "%s ק\"ב" + +#, python-format +msgid "%s MB" +msgstr "%s מ\"ב" + +#, python-format +msgid "%s GB" +msgstr "%s ג\"ב" + +#, python-format +msgid "%s TB" +msgstr "%s ט\"ב" + +#, python-format +msgid "%s PB" +msgstr "%s פ\"ב" + +msgid "p.m." +msgstr "אחר הצהריים" + +msgid "a.m." +msgstr "בבוקר" + +msgid "PM" +msgstr "אחר הצהריים" + +msgid "AM" +msgstr "בבוקר" + +msgid "midnight" +msgstr "חצות" + +msgid "noon" +msgstr "12 בצהריים" + +msgid "Monday" +msgstr "שני" + +msgid "Tuesday" +msgstr "שלישי" + +msgid "Wednesday" +msgstr "רביעי" + +msgid "Thursday" +msgstr "חמישי" + +msgid "Friday" +msgstr "שישי" + +msgid "Saturday" +msgstr "שבת" + +msgid "Sunday" +msgstr "ראשון" + +msgid "Mon" +msgstr "שני" + +msgid "Tue" +msgstr "שלישי" + +msgid "Wed" +msgstr "רביעי" + +msgid "Thu" +msgstr "חמישי" + +msgid "Fri" +msgstr "שישי" + +msgid "Sat" +msgstr "שבת" + +msgid "Sun" +msgstr "ראשון" + +msgid "January" +msgstr "ינואר" + +msgid "February" +msgstr "פברואר" + +msgid "March" +msgstr "מרץ" + +msgid "April" +msgstr "אפריל" + +msgid "May" +msgstr "מאי" + +msgid "June" +msgstr "יוני" + +msgid "July" +msgstr "יולי" + +msgid "August" +msgstr "אוגוסט" + +msgid "September" +msgstr "ספטמבר" + +msgid "October" +msgstr "אוקטובר" + +msgid "November" +msgstr "נובמבר" + +msgid "December" +msgstr "דצמבר" + +msgid "jan" +msgstr "ינו" + +msgid "feb" +msgstr "פבר" + +msgid "mar" +msgstr "מרץ" + +msgid "apr" +msgstr "אפר" + +msgid "may" +msgstr "מאי" + +msgid "jun" +msgstr "יונ" + +msgid "jul" +msgstr "יול" + +msgid "aug" +msgstr "אוג" + +msgid "sep" +msgstr "ספט" + +msgid "oct" +msgstr "אוק" + +msgid "nov" +msgstr "נוב" + +msgid "dec" +msgstr "דצמ" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "יאנ'" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "פבר'" + +msgctxt "abbrev. month" +msgid "March" +msgstr "מרץ" + +msgctxt "abbrev. month" +msgid "April" +msgstr "אפריל" + +msgctxt "abbrev. month" +msgid "May" +msgstr "מאי" + +msgctxt "abbrev. month" +msgid "June" +msgstr "יוני" + +msgctxt "abbrev. month" +msgid "July" +msgstr "יולי" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "אוג'" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "ספט'" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "אוק'" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "נוב'" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "דצמ'" + +msgctxt "alt. month" +msgid "January" +msgstr "ינואר" + +msgctxt "alt. month" +msgid "February" +msgstr "פברואר" + +msgctxt "alt. month" +msgid "March" +msgstr "מרץ" + +msgctxt "alt. month" +msgid "April" +msgstr "אפריל" + +msgctxt "alt. month" +msgid "May" +msgstr "מאי" + +msgctxt "alt. month" +msgid "June" +msgstr "יוני" + +msgctxt "alt. month" +msgid "July" +msgstr "יולי" + +msgctxt "alt. month" +msgid "August" +msgstr "אוגוסט" + +msgctxt "alt. month" +msgid "September" +msgstr "ספטמבר" + +msgctxt "alt. month" +msgid "October" +msgstr "אוקטובר" + +msgctxt "alt. month" +msgid "November" +msgstr "נובמבר" + +msgctxt "alt. month" +msgid "December" +msgstr "דצמבר" + +msgid "This is not a valid IPv6 address." +msgstr "זו אינה כתובת IPv6 חוקית." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s‮…" + +msgid "or" +msgstr "או" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "שנה" +msgstr[1] "שנתיים" +msgstr[2] "%(num)d שנים" +msgstr[3] "%(num)d שנים" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "חודש" +msgstr[1] "חודשיים" +msgstr[2] "%(num)d חודשים" +msgstr[3] "%(num)d חודשים" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "שבוע" +msgstr[1] "שבועיים" +msgstr[2] "%(num)d שבועות" +msgstr[3] "%(num)d שבועות" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "יום" +msgstr[1] "יומיים" +msgstr[2] "%(num)d ימים" +msgstr[3] "%(num)d ימים" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "שעה" +msgstr[1] "שעתיים" +msgstr[2] "%(num)d שעות" +msgstr[3] "%(num)d שעות" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "דקה" +msgstr[1] "%(num)d דקות" +msgstr[2] "%(num)d דקות" +msgstr[3] "%(num)d דקות" + +msgid "Forbidden" +msgstr "אסור" + +msgid "CSRF verification failed. Request aborted." +msgstr "אימות CSRF נכשל. הבקשה בוטלה." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"הודעה זו מופיעה מאחר ואתר ה־HTTPS הזה דורש מהדפדפן שלך לשלוח \"Referer " +"header\", אך הוא לא נשלח. זה נדרש מסיבות אבטחה, כדי להבטיח שהדפדפן שלך לא " +"נחטף ע\"י צד שלישי." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"אם ביטלת \"Referer\" headers בדפדפן שלך, נא לאפשר אותם מחדש, לפחות עבור אתר " +"זה, חיבורי HTTPS או בקשות \"same-origin\"." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"אם השתמשת בתגאו הוספת header " +"של “Referrer-Policy: no-referrer”, נא להסיר אותם. הגנת ה־CSRF דורשת " +"‎“Referer” header לבדיקת ה־referer. אם פרטיות מדאיגה אותך, ניתן להשתמש " +"בתחליפים כמו לקישור אל אתרי צד שלישי." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"הודעה זו מופיעה מאחר ואתר זה דורש עוגיית CSRF כאשר שולחים טפסים. עוגיה זו " +"נדרשת מסיבות אבטחה, כדי לוודא שהדפדפן שלך לא נחטף על ידי אחרים." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"אם ביטלת עוגיות בדפדפן שלך, נא לאפשר אותם מחדש לפחות עבור אתר זה או בקשות " +"“same-origin”." + +msgid "More information is available with DEBUG=True." +msgstr "מידע נוסף זמין עם " + +msgid "No year specified" +msgstr "לא צוינה שנה" + +msgid "Date out of range" +msgstr "תאריך מחוץ לטווח" + +msgid "No month specified" +msgstr "לא צוין חודש" + +msgid "No day specified" +msgstr "לא צוין יום" + +msgid "No week specified" +msgstr "לא צוין שבוע" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "לא נמצאו %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"לא נמצאו %(verbose_name_plural)s בזמן עתיד מאחר ש-%(class_name)s." +"allow_future מוגדר False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "מחרוזת תאריך %(datestr)s אינה חוקית בפורמט %(format)s." + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "לא נמצא/ה %(verbose_name)s התואם/ת לשאילתה" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "העמוד אינו \"last\" או לא ניתן להמרה למספר שם." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "עמוד לא חוקי (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "רשימה ריקה ו־“%(class_name)s.allow_empty” הוא False." + +msgid "Directory indexes are not allowed here." +msgstr "אינדקסים על תיקיה אסורים כאן." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" אינו קיים" + +#, python-format +msgid "Index of %(directory)s" +msgstr "אינדקס של %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "ההתקנה עברה בהצלחה! מזל טוב!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"ראו הערות השחרור עבור Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"עמוד זה מופיע בעקבות המצאות DEBUG=True בקובץ ההגדרות שלך ולא הגדרת שום URLs." + +msgid "Django Documentation" +msgstr "תיעוד Django" + +msgid "Topics, references, & how-to’s" +msgstr "נושאים, הפניות ומדריכים לביצוע" + +msgid "Tutorial: A Polling App" +msgstr "מדריך ללומד: יישום לסקרים." + +msgid "Get started with Django" +msgstr "התחילו לעבוד עם Django" + +msgid "Django Community" +msgstr "קהילת Django" + +msgid "Connect, get help, or contribute" +msgstr "יצירת קשר, קבלת עזרה או השתתפות" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/he/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/he/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/he/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e33e4d4d494b8b784060736b1a6589c517337c46 GIT binary patch literal 193 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 JaqN3b@c-~O#9ROX literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po new file mode 100644 index 0000000..20da376 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po @@ -0,0 +1,1254 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# alkuma , 2013 +# Bharat Toge, 2022 +# Chandan kumar , 2012 +# Claude Paroz , 2020 +# Jannis Leidel , 2011 +# Pratik , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-05-17 05:23-0500\n" +"PO-Revision-Date: 2022-07-25 06:49+0000\n" +"Last-Translator: Bharat Toge\n" +"Language-Team: Hindi (http://www.transifex.com/django/django/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "अफ़्रीकांस" + +msgid "Arabic" +msgstr "अरबी" + +msgid "Algerian Arabic" +msgstr "अल्जीरियाई अरब" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "आज़रबाइजानी" + +msgid "Bulgarian" +msgstr "बलगारियन" + +msgid "Belarusian" +msgstr "बेलारूसी" + +msgid "Bengali" +msgstr "बंगाली" + +msgid "Breton" +msgstr "ब्रेटन" + +msgid "Bosnian" +msgstr "बोस्नियन" + +msgid "Catalan" +msgstr "कटलान" + +msgid "Czech" +msgstr "च्चेक" + +msgid "Welsh" +msgstr "वेल्श" + +msgid "Danish" +msgstr "दानिश" + +msgid "German" +msgstr "जर्मन" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "ग्रीक" + +msgid "English" +msgstr "अंग्रेज़ी " + +msgid "Australian English" +msgstr "ऑस्ट्रेलियाई अंग्रेज़ी " + +msgid "British English" +msgstr "ब्रिटिश अंग्रेजी" + +msgid "Esperanto" +msgstr "एस्परेन्तो" + +msgid "Spanish" +msgstr "स्पानिश" + +msgid "Argentinian Spanish" +msgstr "अर्जेंटीना स्पैनिश " + +msgid "Colombian Spanish" +msgstr "कोलंबियाई स्पेनी" + +msgid "Mexican Spanish" +msgstr "मेक्सिकन स्पैनिश" + +msgid "Nicaraguan Spanish" +msgstr "निकारागुआ स्पैनिश" + +msgid "Venezuelan Spanish" +msgstr "वेनेज़ुएलाई स्पेनिश" + +msgid "Estonian" +msgstr "एस्टोनियन" + +msgid "Basque" +msgstr "बास्क" + +msgid "Persian" +msgstr "पारसी" + +msgid "Finnish" +msgstr "फ़िन्निश" + +msgid "French" +msgstr "फ्रेंच" + +msgid "Frisian" +msgstr "फ्रिसियन" + +msgid "Irish" +msgstr "आयरिश" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "गलिशियन" + +msgid "Hebrew" +msgstr "हि‍ब्रू" + +msgid "Hindi" +msgstr "हिंदी" + +msgid "Croatian" +msgstr "क्रोयेशियन" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "हंगेरियन" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "इंतर्लिंगुआ" + +msgid "Indonesian" +msgstr "इन्डोनेशियन " + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "आयिस्लान्डिक" + +msgid "Italian" +msgstr "इटैलियन" + +msgid "Japanese" +msgstr "जपानी" + +msgid "Georgian" +msgstr "ज्योर्जियन" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "कज़ाख" + +msgid "Khmer" +msgstr "ख्मेर" + +msgid "Kannada" +msgstr "कन्‍नड़" + +msgid "Korean" +msgstr "कोरियन" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "लक्संबर्गी" + +msgid "Lithuanian" +msgstr "लिथुवेनियन" + +msgid "Latvian" +msgstr "लात्वियन" + +msgid "Macedonian" +msgstr "मेसिडोनियन" + +msgid "Malayalam" +msgstr "मलयालम" + +msgid "Mongolian" +msgstr "मंगोलियन" + +msgid "Marathi" +msgstr "मराठी" + +msgid "Malay" +msgstr "मलय भाषा" + +msgid "Burmese" +msgstr "बर्मीज़" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "नेपाली" + +msgid "Dutch" +msgstr "डच" + +msgid "Norwegian Nynorsk" +msgstr "नार्वेजियन नायनॉर्स्क" + +msgid "Ossetic" +msgstr "ओस्सेटिक" + +msgid "Punjabi" +msgstr "पंजाबी" + +msgid "Polish" +msgstr "पोलिश" + +msgid "Portuguese" +msgstr "पुर्तगाली" + +msgid "Brazilian Portuguese" +msgstr "ब्रजिलियन पुर्तगाली" + +msgid "Romanian" +msgstr "रोमानियन" + +msgid "Russian" +msgstr "रूसी" + +msgid "Slovak" +msgstr "स्लोवाक" + +msgid "Slovenian" +msgstr "स्लोवेनियन" + +msgid "Albanian" +msgstr "अल्बेनियन्" + +msgid "Serbian" +msgstr "सर्बियन" + +msgid "Serbian Latin" +msgstr "सर्बियाई लैटिन" + +msgid "Swedish" +msgstr "स्वीडिश" + +msgid "Swahili" +msgstr "स्वाहिली" + +msgid "Tamil" +msgstr "तमिल" + +msgid "Telugu" +msgstr "तेलुगु" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "थाई" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "तुर्किश" + +msgid "Tatar" +msgstr "तातार" + +msgid "Udmurt" +msgstr "उद्मर्त" + +msgid "Ukrainian" +msgstr "यूक्रानियन" + +msgid "Urdu" +msgstr "उर्दू" + +msgid "Uzbek" +msgstr "उज़्बेक" + +msgid "Vietnamese" +msgstr "वियतनामी" + +msgid "Simplified Chinese" +msgstr "सरल चीनी" + +msgid "Traditional Chinese" +msgstr "पारम्परिक चीनी" + +msgid "Messages" +msgstr "संदेश" + +msgid "Site Maps" +msgstr "साइट मैप" + +msgid "Static Files" +msgstr "स्थिर फ़ाइलें" + +msgid "Syndication" +msgstr "सिंडिकेशन" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "यह पृष्ठ संख्या पूर्णांक नहीं है" + +msgid "That page number is less than 1" +msgstr "यह पृष्ठ संख्या 1 से कम है " + +msgid "That page contains no results" +msgstr "उस पृष्ठ पर कोई परिणाम नहीं हैं" + +msgid "Enter a valid value." +msgstr "एक मान्य मूल्य दर्ज करें" + +msgid "Enter a valid URL." +msgstr "वैध यू.आर.एल भरें ।" + +msgid "Enter a valid integer." +msgstr "एक मान्य पूर्ण संख्या दर्ज करें" + +msgid "Enter a valid email address." +msgstr "वैध डाक पता प्रविष्ट करें।" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "वैध आइ.पि वी 4 पता भरें ।" + +msgid "Enter a valid IPv6 address." +msgstr "वैध IPv6 पता दर्ज करें." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "वैध IPv4 या IPv6 पता दर्ज करें." + +msgid "Enter only digits separated by commas." +msgstr "अल्पविराम अंक मात्र ही भरें ।" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"सुनिश्चित करें कि यह मान %(limit_value)s (यह\n" +" %(show_value)s है) है ।" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "सुनिश्चित करें कि यह मान %(limit_value)s से कम या बराबर है ।" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "सुनिश्चित करें यह मान %(limit_value)s से बड़ा या बराबर है ।" + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "एक संख्या दर्ज करें ।" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "और" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "यह मूल्य खाली नहीं हो सकता ।" + +msgid "This field cannot be blank." +msgstr "इस फ़ील्ड रिक्त नहीं हो सकता है." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "इस %(field_label)s के साथ एक %(model_name)s पहले से ही उपस्थित है ।" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "फील्ड के प्रकार: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "बूलियन (सही अथ‌वा गलत)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "स्ट्रिंग (अधिकतम लम्बाई %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "अल्पविराम सीमांकित संख्या" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "तिथि (बिना समय)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "तिथि (समय के साथ)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "दशमलव संख्या" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "अवधि" + +msgid "Email address" +msgstr "ईमेल पता" + +msgid "File path" +msgstr "संचिका पथ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "चल बिन्दु संख्या" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "पूर्णांक" + +msgid "Big (8 byte) integer" +msgstr "बड़ा (8 बाइट) पूर्णांक " + +msgid "Small integer" +msgstr "छोटा पूर्णांक" + +msgid "IPv4 address" +msgstr "IPv4 पता" + +msgid "IP address" +msgstr "आइ.पि पता" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "बूलियन (सही, गलत या कुछ नहीं)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "धनात्मक पूर्णांक" + +msgid "Positive small integer" +msgstr "धनात्मक छोटा पूर्णांक" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "स्लग (%(max_length)s तक)" + +msgid "Text" +msgstr "पाठ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "समय" + +msgid "URL" +msgstr "यू.आर.एल" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "फाइल" + +msgid "Image" +msgstr "छवि" + +msgid "A JSON object" +msgstr "एक JSON डेटा object" + +msgid "Value must be valid JSON." +msgstr "दर्ज किया गया डेटा वैध JSON होना अनिवार्य है" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "विदेशी कुंजी (संबंधित क्षेत्र के द्वारा प्रकार निर्धारित)" + +msgid "One-to-one relationship" +msgstr "एक-एक संबंध" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "बहुत से कई संबंध" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "यह क्षेत्र अपेक्षित हैं" + +msgid "Enter a whole number." +msgstr "एक पूर्ण संख्या दर्ज करें ।" + +msgid "Enter a valid date." +msgstr "वैध तिथि भरें ।" + +msgid "Enter a valid time." +msgstr "वैध समय भरें ।" + +msgid "Enter a valid date/time." +msgstr "वैध तिथि/समय भरें ।" + +msgid "Enter a valid duration." +msgstr "एक वैध अवधी दर्ज करें" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "दिनों की संख्या {min_days} और {max_days} के बीच होना अनिवार्य है " + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "कोई संचिका निवेदित नहीं हुई । कृपया कूटलेखन की जाँच करें ।" + +msgid "No file was submitted." +msgstr "कोई संचिका निवेदित नहीं हुई ।" + +msgid "The submitted file is empty." +msgstr "निवेदित संचिका खाली है ।" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "कृपया या फ़ाइल प्रस्तुत करे या साफ जांचपेटी की जाँच करे,दोनों नहीं ." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "वैध चित्र निवेदन करें । आप के द्वारा निवेदित संचिका अमान्य अथवा दूषित है ।" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "मान्य इच्छा चयन करें । %(value)s लभ्य इच्छाओं में उप्लब्ध नहीं हैं ।" + +msgid "Enter a list of values." +msgstr "मूल्य सूची दर्ज करें ।" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "एक वैध UUID भरें " + +msgid "Enter a valid JSON." +msgstr "एक वैध JSON भरें " + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "छाटें" + +msgid "Delete" +msgstr "मिटाएँ" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "कृपया %(field)s के लिए डुप्लिकेट डेटा को सही करे." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "कृपया %(field)s के डुप्लिकेट डेटा जो अद्वितीय होना चाहिए को सही करें." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"कृपया %(field_name)s के लिए डुप्लिकेट डेटा को सही करे जो %(date_field)s में " +"%(lookup)s के लिए अद्वितीय होना चाहिए." + +msgid "Please correct the duplicate values below." +msgstr "कृपया डुप्लिकेट मानों को सही करें." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "मान्य विकल्प चयन करें । यह विकल्प उपस्थित विकल्पों में नहीं है ।" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "रिक्त करें" + +msgid "Currently" +msgstr "फिलहाल" + +msgid "Change" +msgstr "बदलें" + +msgid "Unknown" +msgstr "अनजान" + +msgid "Yes" +msgstr "हाँ" + +msgid "No" +msgstr "नहीं" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "हाँ,नहीं,शायद" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d बाइट" +msgstr[1] "%(size)d बाइट" + +#, python-format +msgid "%s KB" +msgstr "%s केबी " + +#, python-format +msgid "%s MB" +msgstr "%s मेबी " + +#, python-format +msgid "%s GB" +msgstr "%s जीबी " + +#, python-format +msgid "%s TB" +msgstr "%s टीबी" + +#, python-format +msgid "%s PB" +msgstr "%s पीबी" + +msgid "p.m." +msgstr "बजे" + +msgid "a.m." +msgstr "बजे" + +msgid "PM" +msgstr "बजे" + +msgid "AM" +msgstr "बजे" + +msgid "midnight" +msgstr "मध्यरात्री" + +msgid "noon" +msgstr "दोपहर" + +msgid "Monday" +msgstr "सोम‌वार" + +msgid "Tuesday" +msgstr "मंगलवार" + +msgid "Wednesday" +msgstr "बुधवार" + +msgid "Thursday" +msgstr "गुरूवार" + +msgid "Friday" +msgstr "शुक्रवार" + +msgid "Saturday" +msgstr "शनिवार" + +msgid "Sunday" +msgstr "रविवार" + +msgid "Mon" +msgstr "सोम" + +msgid "Tue" +msgstr "मंगल" + +msgid "Wed" +msgstr "बुध" + +msgid "Thu" +msgstr "गुरू" + +msgid "Fri" +msgstr "शुक्र" + +msgid "Sat" +msgstr "शनि" + +msgid "Sun" +msgstr "रवि" + +msgid "January" +msgstr "जनवरी" + +msgid "February" +msgstr "फ़रवरी" + +msgid "March" +msgstr "मार्च" + +msgid "April" +msgstr "अप्रैल" + +msgid "May" +msgstr "मई" + +msgid "June" +msgstr "जून" + +msgid "July" +msgstr "जुलाई" + +msgid "August" +msgstr "अगस्त" + +msgid "September" +msgstr "सितमबर" + +msgid "October" +msgstr "अक्टूबर" + +msgid "November" +msgstr "नवमबर" + +msgid "December" +msgstr "दिसमबर" + +msgid "jan" +msgstr "जन" + +msgid "feb" +msgstr "फ़र" + +msgid "mar" +msgstr "मा" + +msgid "apr" +msgstr "अप्र" + +msgid "may" +msgstr "मई" + +msgid "jun" +msgstr "जून" + +msgid "jul" +msgstr "जुल" + +msgid "aug" +msgstr "अग" + +msgid "sep" +msgstr "सित" + +msgid "oct" +msgstr "अक्ट" + +msgid "nov" +msgstr "नव" + +msgid "dec" +msgstr "दिस्" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "जनवरी." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "फ़रवरी." + +msgctxt "abbrev. month" +msgid "March" +msgstr "मार्च" + +msgctxt "abbrev. month" +msgid "April" +msgstr "अप्रैल" + +msgctxt "abbrev. month" +msgid "May" +msgstr "मई" + +msgctxt "abbrev. month" +msgid "June" +msgstr "जून" + +msgctxt "abbrev. month" +msgid "July" +msgstr "जुलाई" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "अग." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "सितम्बर." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "अक्टूबर" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "नवम्बर." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "दिसम्बर" + +msgctxt "alt. month" +msgid "January" +msgstr "जनवरी" + +msgctxt "alt. month" +msgid "February" +msgstr "फरवरी" + +msgctxt "alt. month" +msgid "March" +msgstr "मार्च" + +msgctxt "alt. month" +msgid "April" +msgstr "अप्रैल" + +msgctxt "alt. month" +msgid "May" +msgstr "मई" + +msgctxt "alt. month" +msgid "June" +msgstr "जून" + +msgctxt "alt. month" +msgid "July" +msgstr "जुलाई" + +msgctxt "alt. month" +msgid "August" +msgstr "अगस्त" + +msgctxt "alt. month" +msgid "September" +msgstr "सितंबर" + +msgctxt "alt. month" +msgid "October" +msgstr "अक्टूबर" + +msgctxt "alt. month" +msgid "November" +msgstr "नवंबर" + +msgctxt "alt. month" +msgid "December" +msgstr "दिसंबर" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "अथवा" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF सत्यापन असफल रहा. Request निरस्त की गई " + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "कोई साल निर्दिष्ट नहीं किया गया " + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "कोई महीने निर्दिष्ट नहीं किया गया " + +msgid "No day specified" +msgstr "कोई दिन निर्दिष्ट नहीं किया गया " + +msgid "No week specified" +msgstr "कोई सप्ताह निर्दिष्ट नहीं किया गया " + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s उपलब्ध नहीं है" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"भविष्य %(verbose_name_plural)s उपलब्ध नहीं है क्योंकि %(class_name)s.allow_future " +"गलत है." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr " इस प्रश्न %(verbose_name)s से मेल नहीं खाते है" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "अवैध पन्ना (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "निर्देशिका अनुक्रमित की अनुमति यहाँ नहीं है." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s का अनुक्रमणिका" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hi/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/hi/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/hi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8e45f07b4895d014eec71ede423ff068f52295c9 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFkd?vTNNGf^Bntdw7>TSEB1W)HTJ^7W@KW3t({o literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hi/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/hi/formats.py new file mode 100644 index 0000000..ac078ec --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/hi/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "g:i A" +# DATETIME_FORMAT = +# YEAR_MONTH_FORMAT = +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d-m-Y" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..f7afa5d2fe61f1c26eb815313d4f0eaf076a79e5 GIT binary patch literal 19457 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po new file mode 100644 index 0000000..574a7ab --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po @@ -0,0 +1,1274 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# aljosa , 2011,2013 +# Berislav Lopac , 2013 +# Bojan Mihelač , 2012 +# Boni Đukić , 2017 +# Jannis Leidel , 2011 +# Mislav Cimperšak , 2015-2016 +# Nino , 2013 +# senko , 2012 +# Ylodi , 2011 +# zmasek , 2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Croatian (http://www.transifex.com/django/django/language/" +"hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arapski" + +msgid "Asturian" +msgstr "Asturijski" + +msgid "Azerbaijani" +msgstr "Azarbejdžanac" + +msgid "Bulgarian" +msgstr "Unesite ispravnu IPv4 adresu." + +msgid "Belarusian" +msgstr "Bjeloruski" + +msgid "Bengali" +msgstr "Bengalski" + +msgid "Breton" +msgstr "Bretonski" + +msgid "Bosnian" +msgstr "Bošnjački" + +msgid "Catalan" +msgstr "Katalanski" + +msgid "Czech" +msgstr "Češki" + +msgid "Welsh" +msgstr "Velški" + +msgid "Danish" +msgstr "Danski" + +msgid "German" +msgstr "Njemački" + +msgid "Lower Sorbian" +msgstr "Donjolužičkosrpski" + +msgid "Greek" +msgstr "Grčki" + +msgid "English" +msgstr "Engleski" + +msgid "Australian English" +msgstr "Australski engleski" + +msgid "British English" +msgstr "Britanski engleski" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Španjolski" + +msgid "Argentinian Spanish" +msgstr "Argentinski španjolski" + +msgid "Colombian Spanish" +msgstr "Kolumbijski španjolski" + +msgid "Mexican Spanish" +msgstr "Meksički španjolski" + +msgid "Nicaraguan Spanish" +msgstr "Nikaragvanski Španjolski" + +msgid "Venezuelan Spanish" +msgstr "Venezuelanski Španjolski" + +msgid "Estonian" +msgstr "Estonski" + +msgid "Basque" +msgstr "Baskijski" + +msgid "Persian" +msgstr "Perzijski" + +msgid "Finnish" +msgstr "Finski" + +msgid "French" +msgstr "Francuski" + +msgid "Frisian" +msgstr "Frizijski" + +msgid "Irish" +msgstr "Irski" + +msgid "Scottish Gaelic" +msgstr "Škotski gaelski" + +msgid "Galician" +msgstr "Galičanski" + +msgid "Hebrew" +msgstr "Hebrejski" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Hrvatski" + +msgid "Upper Sorbian" +msgstr "Gornjolužičkosrpski" + +msgid "Hungarian" +msgstr "Mađarski" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonezijski" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandski" + +msgid "Italian" +msgstr "Talijanski" + +msgid "Japanese" +msgstr "Japanski" + +msgid "Georgian" +msgstr "Gruzijski" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Kazaški" + +msgid "Khmer" +msgstr "Kambođanski" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreanski" + +msgid "Luxembourgish" +msgstr "Luksemburški" + +msgid "Lithuanian" +msgstr "Litvanski" + +msgid "Latvian" +msgstr "Latvijski" + +msgid "Macedonian" +msgstr "Makedonski" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolski" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Burmese" +msgstr "Burmanski" + +msgid "Norwegian Bokmål" +msgstr "Bokmål" + +msgid "Nepali" +msgstr "Nepalski" + +msgid "Dutch" +msgstr "Nizozemski" + +msgid "Norwegian Nynorsk" +msgstr "Norveški Nynorsk" + +msgid "Ossetic" +msgstr "Osetski" + +msgid "Punjabi" +msgstr "Pendžabljanin" + +msgid "Polish" +msgstr "Poljski" + +msgid "Portuguese" +msgstr "Portugalski" + +msgid "Brazilian Portuguese" +msgstr "Brazilski portugalski" + +msgid "Romanian" +msgstr "Rumunjski" + +msgid "Russian" +msgstr "Ruski" + +msgid "Slovak" +msgstr "Slovački" + +msgid "Slovenian" +msgstr "Slovenski" + +msgid "Albanian" +msgstr "Albanski" + +msgid "Serbian" +msgstr "Srpski" + +msgid "Serbian Latin" +msgstr "Latinski srpski" + +msgid "Swedish" +msgstr "Švedski" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamilski" + +msgid "Telugu" +msgstr "Teluški" + +msgid "Thai" +msgstr "Thai (tajlandski)" + +msgid "Turkish" +msgstr "Turski" + +msgid "Tatar" +msgstr "Tatarski" + +msgid "Udmurt" +msgstr "Udmurtski" + +msgid "Ukrainian" +msgstr "Ukrajinski" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vijetnamski" + +msgid "Simplified Chinese" +msgstr "Pojednostavljeni kineski" + +msgid "Traditional Chinese" +msgstr "Tradicionalni kineski" + +msgid "Messages" +msgstr "Poruke" + +msgid "Site Maps" +msgstr "Mape stranica" + +msgid "Static Files" +msgstr "Statične datoteke" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "Broj stranice nije cijeli broj" + +msgid "That page number is less than 1" +msgstr "Broj stranice je manji od 1" + +msgid "That page contains no results" +msgstr "Stranica ne sadrži rezultate" + +msgid "Enter a valid value." +msgstr "Unesite ispravnu vrijednost." + +msgid "Enter a valid URL." +msgstr "Unesite ispravan URL." + +msgid "Enter a valid integer." +msgstr "Unesite vrijednost u obliku cijelog broja." + +msgid "Enter a valid email address." +msgstr "Unesite ispravnu e-mail adresu." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Unesite ispravnu IPv4 adresu." + +msgid "Enter a valid IPv6 address." +msgstr "Unesite ispravnu IPv6 adresu." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Unesite ispravnu IPv4 ili IPv6 adresu." + +msgid "Enter only digits separated by commas." +msgstr "Unesite samo brojeve razdvojene zarezom." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Osigurajte da ova vrijednost ima %(limit_value)s (trenutno je " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Osigurajte da je ova vrijednost manja ili jednaka %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Osigurajte da je ova vrijednost veća ili jednaka %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Osigurajte da ova vrijednost ima najmanje %(limit_value)d znak (trenutno ima " +"%(show_value)d)." +msgstr[1] "" +"Osigurajte da ova vrijednost ima najmanje %(limit_value)d znakova (trenutno " +"ima %(show_value)d)." +msgstr[2] "" +"Osigurajte da ova vrijednost ima najmanje %(limit_value)d znakova (trenutno " +"ima %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Osigurajte da ova vrijednost ima najviše %(limit_value)d znak (trenutno ima " +"%(show_value)d)." +msgstr[1] "" +"Osigurajte da ova vrijednost ima najviše %(limit_value)d znakova (trenutno " +"ima %(show_value)d)." +msgstr[2] "" +"Osigurajte da ova vrijednost ima najviše %(limit_value)d znakova (trenutno " +"ima %(show_value)d)." + +msgid "Enter a number." +msgstr "Unesite broj." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Osigurajte da nema više od ukupno %(max)s numeričkog znaka." +msgstr[1] "Osigurajte da nema više od ukupno %(max)s numerička znaka." +msgstr[2] "Osigurajte da nema više od ukupno %(max)s numeričkih znakova." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Osigurajte da nema više od ukupno %(max)s decimalnog mjesta." +msgstr[1] "Osigurajte da nema više od ukupno %(max)s decimalna mjesta." +msgstr[2] "Osigurajte da nema više od ukupno %(max)s decimalnih mjesta." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Osigurajte da nema više od ukupno %(max)s numberičkog znaka prije decimalne " +"točke." +msgstr[1] "" +"Osigurajte da nema više od ukupno %(max)s numberička znaka prije decimalne " +"točke." +msgstr[2] "" +"Osigurajte da nema više od ukupno %(max)s numberičkih znakova prije " +"decimalne točke." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "i" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s sa navedenim %(field_labels)s već postoji." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Vrijednost %(value)r nije jedna od raspoloživih opcija." + +msgid "This field cannot be null." +msgstr "Ovo polje ne može biti null." + +msgid "This field cannot be blank." +msgstr "Ovo polje ne može biti prazno." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s sa navedenim %(field_label)s već postoji." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s mora biti jedinstven pojam za %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Polje tipa: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (True ili False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Slova (do %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Cijeli brojevi odvojeni zarezom" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Datum (bez vremena/sati)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Datum (sa vremenom/satima)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Decimalni broj" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Trajanje" + +msgid "Email address" +msgstr "E-mail adresa" + +msgid "File path" +msgstr "Put do datoteke" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Broj s pomičnim zarezom (floating point number)" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Cijeli broj" + +msgid "Big (8 byte) integer" +msgstr "Big (8 byte) integer" + +msgid "IPv4 address" +msgstr "IPv4 adresa" + +msgid "IP address" +msgstr "IP adresa" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (True, False ili None)" + +msgid "Positive integer" +msgstr "Pozitivan cijeli broj" + +msgid "Positive small integer" +msgstr "Pozitivan mali cijeli broj" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "'Slug' (do %(max_length)s)" + +msgid "Small integer" +msgstr "Mali broj" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Vrijeme" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Binarni podaci" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Datoteka" + +msgid "Image" +msgstr "Slika" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s instanca sa %(field)s %(value)r ne postoji." + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (type determined by related field)" + +msgid "One-to-one relationship" +msgstr "One-to-one relationship" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s veza" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s veze" + +msgid "Many-to-many relationship" +msgstr "Many-to-many relationship" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Unos za ovo polje je obavezan." + +msgid "Enter a whole number." +msgstr "Unesite cijeli broj." + +msgid "Enter a valid date." +msgstr "Unesite ispravan datum." + +msgid "Enter a valid time." +msgstr "Unesite ispravno vrijeme." + +msgid "Enter a valid date/time." +msgstr "Unesite ispravan datum/vrijeme." + +msgid "Enter a valid duration." +msgstr "Unesite ispravno trajanje." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Datoteka nije poslana. Provjerite 'encoding type' forme." + +msgid "No file was submitted." +msgstr "Datoteka nije poslana." + +msgid "The submitted file is empty." +msgstr "Poslana datoteka je prazna." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Osigurajte da naziv datoteke ima najviše %(max)d znak (ima %(length)d)." +msgstr[1] "" +"Osigurajte da naziv datoteke ima najviše %(max)d znakova (ima %(length)d)." +msgstr[2] "" +"Osigurajte da naziv datoteke ima najviše %(max)d znakova (ima %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Molimo Vas da pošaljete ili datoteku ili označite izbor, a ne oboje." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Upload-ajte ispravnu sliku. Datoteka koju ste upload-ali ili nije slika ili " +"je oštečena." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Odaberite iz ponuđenog. %(value)s nije ponuđen kao opcija." + +msgid "Enter a list of values." +msgstr "Unesite listu vrijednosti." + +msgid "Enter a complete value." +msgstr "Unesite kompletnu vrijednost." + +msgid "Enter a valid UUID." +msgstr "Unesite ispravan UUID." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Skriveno polje %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "ManagementForm podaci nedostaju ili su promijenjeni" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Molimo unesite %d obrazac." +msgstr[1] "Molimo unesite %d ili manje obrazaca." +msgstr[2] "Molimo unesite %d ili manje obrazaca." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "Molimo unesite %d ili više obrazaca." +msgstr[1] "Molimo unesite %d ili više obrazaca." +msgstr[2] "Molimo unesite %d ili više obrazaca." + +msgid "Order" +msgstr "Redoslijed:" + +msgid "Delete" +msgstr "Izbriši" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ispravite duplicirane podatke za %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Molimo ispravite duplicirane podatke za %(field)s, koji moraju biti " +"jedinstveni." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Molimo ispravite duplicirane podatke za %(field_name)s koji moraju biti " +"jedinstveni za %(lookup)s u %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Molimo ispravite duplicirane vrijednosti ispod." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Izaberite ispravnu opciju. Ta opcija nije jedna od dostupnih opcija." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Isprazni" + +msgid "Currently" +msgstr "Trenutno" + +msgid "Change" +msgstr "Promijeni" + +msgid "Unknown" +msgstr "Nepoznat pojam" + +msgid "Yes" +msgstr "Da" + +msgid "No" +msgstr "Ne" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "da,ne,možda" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d byte-a" +msgstr[2] "%(size)d byte-a" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "popodne" + +msgid "a.m." +msgstr "ujutro" + +msgid "PM" +msgstr "popodne" + +msgid "AM" +msgstr "ujutro" + +msgid "midnight" +msgstr "ponoć" + +msgid "noon" +msgstr "podne" + +msgid "Monday" +msgstr "Ponedjeljak" + +msgid "Tuesday" +msgstr "Utorak" + +msgid "Wednesday" +msgstr "Srijeda" + +msgid "Thursday" +msgstr "Četvrtak" + +msgid "Friday" +msgstr "Petak" + +msgid "Saturday" +msgstr "Subota" + +msgid "Sunday" +msgstr "Nedjelja" + +msgid "Mon" +msgstr "Pon" + +msgid "Tue" +msgstr "Uto" + +msgid "Wed" +msgstr "Sri" + +msgid "Thu" +msgstr "Čet" + +msgid "Fri" +msgstr "Pet" + +msgid "Sat" +msgstr "Sub" + +msgid "Sun" +msgstr "Ned" + +msgid "January" +msgstr "Siječanj" + +msgid "February" +msgstr "Veljača" + +msgid "March" +msgstr "Ožujak" + +msgid "April" +msgstr "Travanj" + +msgid "May" +msgstr "Svibanj" + +msgid "June" +msgstr "Lipanj" + +msgid "July" +msgstr "Srpanj" + +msgid "August" +msgstr "Kolovoz" + +msgid "September" +msgstr "Rujan" + +msgid "October" +msgstr "Listopad" + +msgid "November" +msgstr "Studeni" + +msgid "December" +msgstr "Prosinac" + +msgid "jan" +msgstr "sij." + +msgid "feb" +msgstr "velj." + +msgid "mar" +msgstr "ožu." + +msgid "apr" +msgstr "tra." + +msgid "may" +msgstr "svi." + +msgid "jun" +msgstr "lip." + +msgid "jul" +msgstr "srp." + +msgid "aug" +msgstr "kol." + +msgid "sep" +msgstr "ruj." + +msgid "oct" +msgstr "lis." + +msgid "nov" +msgstr "stu." + +msgid "dec" +msgstr "pro." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Sij." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Velj." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Ožu." + +msgctxt "abbrev. month" +msgid "April" +msgstr "Tra." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Svi." + +msgctxt "abbrev. month" +msgid "June" +msgstr "Lip." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Srp." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Kol." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Ruj." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Lis." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Stu." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Pro." + +msgctxt "alt. month" +msgid "January" +msgstr "siječnja" + +msgctxt "alt. month" +msgid "February" +msgstr "veljače" + +msgctxt "alt. month" +msgid "March" +msgstr "ožujka" + +msgctxt "alt. month" +msgid "April" +msgstr "travnja" + +msgctxt "alt. month" +msgid "May" +msgstr "svibnja" + +msgctxt "alt. month" +msgid "June" +msgstr "lipnja" + +msgctxt "alt. month" +msgid "July" +msgstr "srpnja" + +msgctxt "alt. month" +msgid "August" +msgstr "kolovoza" + +msgctxt "alt. month" +msgid "September" +msgstr "rujna" + +msgctxt "alt. month" +msgid "October" +msgstr "listopada" + +msgctxt "alt. month" +msgid "November" +msgstr "studenoga" + +msgctxt "alt. month" +msgid "December" +msgstr "prosinca" + +msgid "This is not a valid IPv6 address." +msgstr "To nije ispravna IPv6 adresa." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "ili" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d godina" +msgstr[1] "%d godina" +msgstr[2] "%d godina" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d mjesec" +msgstr[1] "%d mjeseci" +msgstr[2] "%d mjeseci" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d tjedan" +msgstr[1] "%d tjedna" +msgstr[2] "%d tjedana" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d dana" +msgstr[1] "%d dana" +msgstr[2] "%d dana" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d sat" +msgstr[1] "%d sati" +msgstr[2] "%d sati" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minutu" +msgstr[1] "%d minute" +msgstr[2] "%d minuta" + +msgid "0 minutes" +msgstr "0 minuta" + +msgid "Forbidden" +msgstr "Zabranjeno" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF verifikacija nije uspjela. Zahtjev je prekinut." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Ova poruka vam se prikazuje jer stranica na kojoj se nalazite zahtjeva CSRF " +"kolačić prilikom slanja forme. Navedeni kolačić je obavezan iz sigurnosnih " +"razloga, kako bi se osiguralo da vaš internetski preglednik ne bude otet od " +"strane trećih osoba." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Dodatne informacije su dostupne sa postavkom DEBUG=True." + +msgid "No year specified" +msgstr "Nije navedena godina" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Nije naveden mjesec" + +msgid "No day specified" +msgstr "Nije naveden dan" + +msgid "No week specified" +msgstr "Tjedan nije određen" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nije dostupno: %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s nije dostupno jer je %(class_name)s.allow_future " +"False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "%(verbose_name)s - pretragom nisu pronađeni rezultati za upit" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Nevažeća stranica (%(page_number)s):%(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Sadržaji direktorija ovdje nisu dozvoljeni." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Sadržaj direktorija %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hr/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/hr/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/hr/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c319ea61ee893a020f858e342cdc64deef7419de GIT binary patch literal 193 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

l}Lw%Xz3y-?Jh)m1pOq zgNzTeqP0=bHbmDoH{xpTv(FAu=uB2~HP2z|0hC8m7M$8WO_W%WwfPwu<^b)39U@rL#rX zZqLHA1QQ35sneB(S7bVL?_KS^)4tf~?4`qq?Tu2CRVE7ycbm~fGev{dnMLj+xGLr~ zD-Rd{k*#y>#kVm|xuR=cb-4BBZBO}sO0vbdy?yFA66HJ`HdJr=jgdWQ9OsHlmhzgE zGp<;(kx3}x)u>nrVz-qLC9`snnB8AU{ONndc4zD%2p?=*c^$gA+~yIIkua4XBbYcB zTdlX?8b?zMzpgYa!0occ=BS?o#O_^e!7bo1N_MZ&JR-?PLLT?s=Q9N~nnBMq>)x&>|wCs8HkeRu(Z{?uXLsnOs$?qxFZQ3zs&yx1z}SHr;|BG z(t!W_C+pnw8+nY9dCY^9vN^K!Mx_;E1j*ve)0B>fqu#d1JXGoU%KSG@da%+C5ji*+ zx0xEwtKHLd)LKvUz#+t_Q$hkT52qsx2Z#mEaOX}bm-F5tOUH4HDUts}plgjfQuQ`w zrw{Hm3$I(Xvr0_hOwT=DF{X)b=?0y_JY=y)w(xDZKvLJSb1hix@62Htilim7<`(l1 z77HKSyKdO{_QH}TZN}3TJlVsQ>|&A?a##e03XJSicZa>McjoE`gOeb#Ae5Se;Ot(L z>HdraJYaD}cj6eh1{Q&wj?+hF`LKq^z`VV8s(dz5({F4v;V%sYfEa7X)Jp?ir-W4= zpj*ATmgmA2GGa3-@W4gSR`TZA3O(pvQrDyn*aJ5c0;VWN%O@cr3PR0F^EO8DEDcDnU)n97 z;LUy8Gs#n!%+n^O-Zat zTVI3!(ZZj^XYQwz(~hByn9#R&184YHGV{R<&nYNBhnyzkZ%eap4uPR;%r3X1N935; zwq3@lCsG%sAhMH6ZihT(X)ioNNgI%5_Nazv%#OOw5H)JrW#J&O4(`S@-700RaVJBz zDNbzMT?<_SGQqYfUF{$dJgZ|(QWMJ9a*Pdn!2{!l#9l>`VW~YB#ey4(Or8^c^TtVB zb|Pr^&RCyJ!5F0f@Kg`f8?%cI2u+uSIweqlR${WJZtXMo zf<0p(%U+Tgjkaxi@wg^d=M~A4E@p_*Wv>;Og{NEQ*w@S>4rg6+dmZOvoPy0^nzNI0 z?oB}*Cd!;zYo3T-4@w5jO=M?MK(Gw`!NGx{p#eQmaNM@dk@r{lzRR5FF~y&+@U8~W zQ;&IIVlPb}Y)9-15{-?0WkN02>5<8dS0?+fqKw56%Y4f{NSXhMiDka5!x__N4=o?A z{c{T6|EToNUzZ^fcT9SaH9lO)10C6QHa*!LKf9ZjsipfPl>bUD-R9@2@WQIdF4MY) ZC-Ry@tcB+`k53LV-|Q>Bu2#K5`QQ0;)|3DM literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po new file mode 100644 index 0000000..46f12d0 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/hsb/LC_MESSAGES/django.po @@ -0,0 +1,1384 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Michael Wolf , 2016-2024 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Michael Wolf , 2016-2024\n" +"Language-Team: Upper Sorbian (http://app.transifex.com/django/django/" +"language/hsb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hsb\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" + +msgid "Afrikaans" +msgstr "Afrikaanšćina" + +msgid "Arabic" +msgstr "Arabšćina" + +msgid "Algerian Arabic" +msgstr "Algeriska arabšćina" + +msgid "Asturian" +msgstr "Asturišćina" + +msgid "Azerbaijani" +msgstr "Azerbajdźanšćina" + +msgid "Bulgarian" +msgstr "Bołharšćina" + +msgid "Belarusian" +msgstr "Běłorušćina" + +msgid "Bengali" +msgstr "Bengalšćina" + +msgid "Breton" +msgstr "Bretonšćina" + +msgid "Bosnian" +msgstr "Bosnišćina" + +msgid "Catalan" +msgstr "Katalanšćina" + +msgid "Central Kurdish (Sorani)" +msgstr "Centralna kurdišćina (Sorani)" + +msgid "Czech" +msgstr "Čěšćina" + +msgid "Welsh" +msgstr "Walizišćina" + +msgid "Danish" +msgstr "Danšćina" + +msgid "German" +msgstr "Němčina" + +msgid "Lower Sorbian" +msgstr "Delnjoserbšćina" + +msgid "Greek" +msgstr "Grjekšćina" + +msgid "English" +msgstr "Jendźelšćina" + +msgid "Australian English" +msgstr "Awstralska jendźelšćina" + +msgid "British English" +msgstr "Britiska jendźelšćina" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Španišćina" + +msgid "Argentinian Spanish" +msgstr "Argentinska španišćina" + +msgid "Colombian Spanish" +msgstr "Kolumbiska španišćina" + +msgid "Mexican Spanish" +msgstr "Mexiska španišćina" + +msgid "Nicaraguan Spanish" +msgstr "Nikaraguaska španišćina" + +msgid "Venezuelan Spanish" +msgstr "Venezuelska španišćina" + +msgid "Estonian" +msgstr "Estišćina" + +msgid "Basque" +msgstr "Baskišćina" + +msgid "Persian" +msgstr "Persišćina" + +msgid "Finnish" +msgstr "Finšćina" + +msgid "French" +msgstr "Francošćina" + +msgid "Frisian" +msgstr "Frizišćina" + +msgid "Irish" +msgstr "Irišćina" + +msgid "Scottish Gaelic" +msgstr "Šotiska gaelšćina" + +msgid "Galician" +msgstr "Galicišćina" + +msgid "Hebrew" +msgstr "Hebrejšćina" + +msgid "Hindi" +msgstr "Hindišćina" + +msgid "Croatian" +msgstr "Chorwatšćina" + +msgid "Upper Sorbian" +msgstr "Hornjoserbšćina" + +msgid "Hungarian" +msgstr "Madźaršćina" + +msgid "Armenian" +msgstr "Armenšćina" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonezišćina" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandšćina" + +msgid "Italian" +msgstr "Italšćina" + +msgid "Japanese" +msgstr "Japanšćina" + +msgid "Georgian" +msgstr "Georgišćina" + +msgid "Kabyle" +msgstr "Kabylšćina" + +msgid "Kazakh" +msgstr "Kazachšćina" + +msgid "Khmer" +msgstr "Khmeršćina" + +msgid "Kannada" +msgstr "Kannadšćina" + +msgid "Korean" +msgstr "Korejšćina" + +msgid "Kyrgyz" +msgstr "Kirgišćina" + +msgid "Luxembourgish" +msgstr "Luxemburgšćina" + +msgid "Lithuanian" +msgstr "Litawšćina" + +msgid "Latvian" +msgstr "Letišćina" + +msgid "Macedonian" +msgstr "Makedonšćina" + +msgid "Malayalam" +msgstr "Malajalam" + +msgid "Mongolian" +msgstr "Mongolšćina" + +msgid "Marathi" +msgstr "Marathišćina" + +msgid "Malay" +msgstr "Malajšćina" + +msgid "Burmese" +msgstr "Myanmaršćina" + +msgid "Norwegian Bokmål" +msgstr "Norwegski bokmål" + +msgid "Nepali" +msgstr "Nepalšćina" + +msgid "Dutch" +msgstr "Nižozemšćina" + +msgid "Norwegian Nynorsk" +msgstr "Norwegski nynorsk" + +msgid "Ossetic" +msgstr "Osetšćina" + +msgid "Punjabi" +msgstr "Pundźabišćina" + +msgid "Polish" +msgstr "Pólšćina" + +msgid "Portuguese" +msgstr "Portugalšćina" + +msgid "Brazilian Portuguese" +msgstr "Brazilska portugalšćina" + +msgid "Romanian" +msgstr "Rumunšćina" + +msgid "Russian" +msgstr "Rušćina" + +msgid "Slovak" +msgstr "Słowakšćina" + +msgid "Slovenian" +msgstr "Słowjenšćina" + +msgid "Albanian" +msgstr "Albanšćina" + +msgid "Serbian" +msgstr "Serbišćina" + +msgid "Serbian Latin" +msgstr "Serbšćina, łaćonska" + +msgid "Swedish" +msgstr "Šwedšćina" + +msgid "Swahili" +msgstr "Suahelšćina" + +msgid "Tamil" +msgstr "Tamilšćina" + +msgid "Telugu" +msgstr "Telugušćina" + +msgid "Tajik" +msgstr "Tadźikišćina" + +msgid "Thai" +msgstr "Thaišćina" + +msgid "Turkmen" +msgstr "Turkmenšćina" + +msgid "Turkish" +msgstr "Turkowšćina" + +msgid "Tatar" +msgstr "Tataršćina" + +msgid "Udmurt" +msgstr "Udmurtšćina" + +msgid "Uyghur" +msgstr "Ujguršćina" + +msgid "Ukrainian" +msgstr "Ukrainšćina" + +msgid "Urdu" +msgstr "Urdušćina" + +msgid "Uzbek" +msgstr "Uzbekšćina" + +msgid "Vietnamese" +msgstr "Vietnamšćina" + +msgid "Simplified Chinese" +msgstr "Zjednorjene chinšćina" + +msgid "Traditional Chinese" +msgstr "Tradicionalna chinšćina" + +msgid "Messages" +msgstr "Powěsće" + +msgid "Site Maps" +msgstr "Přehlady sydła" + +msgid "Static Files" +msgstr "Statiske dataje" + +msgid "Syndication" +msgstr "Syndikacija" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Tute čisko strony cyła ličba njeje." + +msgid "That page number is less than 1" +msgstr "Tute čisło strony je mjeńše hač 1." + +msgid "That page contains no results" +msgstr "Tuta strona wuslědki njewobsahuje" + +msgid "Enter a valid value." +msgstr "Zapodajće płaćiwu hódnotu." + +msgid "Enter a valid domain name." +msgstr "Zapodajće płaćiwe domenowe mjeno." + +msgid "Enter a valid URL." +msgstr "Zapodajće płaćiwy URL." + +msgid "Enter a valid integer." +msgstr "Zapodajće płaćiwu cyłu ličbu." + +msgid "Enter a valid email address." +msgstr "Zapodajće płaćiwu e-mejlowu adresu." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Zapodajće płaćiwe adresowe mjeno, kotrež jenož pismiki, ličby, podsmužki abo " +"wjazawki wobsahuje." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Zapodajće płaćiwe „adresowe mjeno“, kotrež jenož pismiki, ličby, podsmužki " +"abo wjazawki wobsahuje." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Zapodajće płaćiwu %(protocol)s-adresu." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 abo IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Zapodajće jenož přez komy dźělene cyfry," + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Zawěsćće, zo tuta hódnota je %(limit_value)s (je %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Zawěsćće, zo hódnota je mjeńša hač abo runja %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Zawěsćće, zo tuta hódnota je wjetša hač abo runja %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Zawěsćće, zo tuta hódnota je množina kročeloweje wulkosće %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Zawěsćće, zo tuta hódnota je mnoho króć kročeloweje wulkosće " +"%(limit_value)s, započinajo z %(offset)s, na př. %(offset)s, " +"%(valid_value1)s, %(valid_value2)s a tak dale." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Zawěsćće, zo tuta hódnota ma znajmjeńša %(limit_value)d znamješko (ma " +"%(show_value)d)." +msgstr[1] "" +"Zawěsćće, zo tuta hódnota ma znajmjeńša %(limit_value)d znamješce (ma " +"%(show_value)d)." +msgstr[2] "" +"Zawěsćće, zo tuta hódnota ma znajmjeńša %(limit_value)d znamješka (ma " +"%(show_value)d)." +msgstr[3] "" +"Zawěsćće, zo tuta hódnota ma znajmjeńša %(limit_value)d znamješkow (ma " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Zawěsćće, zo tuta hódnota ma maksimalnje %(limit_value)d znamješko (ima " +"%(show_value)d)." +msgstr[1] "" +"Zawěsćće, zo tuta hódnota ma maksimalnje %(limit_value)d znamješce (ima " +"%(show_value)d)." +msgstr[2] "" +"Zawěsćće, zo tuta hódnota ma maksimalnje %(limit_value)d znamješka (ima " +"%(show_value)d)." +msgstr[3] "" +"Zawěsćće, zo tuta hódnota ma maksimalnje %(limit_value)d znamješkow (ima " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Zapodajće ličbu." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Zawěsćće, zo njeje wjace hač %(max)s cyfry dohromady." +msgstr[1] "Zawěsćće, zo njeje wjace hač %(max)s cyfrow dohromady." +msgstr[2] "Zawěsćće, zo njeje wjace hač %(max)s cyfrow dohromady." +msgstr[3] "Zawěsćće, zo njeje wjace hač %(max)s cyfrow dohromady." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Zawěsćće, zo njeje wjace hač %(max)s decimalneho městna." +msgstr[1] "Zawěsćće, zo njeje wjace hač %(max)s decimalneju městnow." +msgstr[2] "Zawěsćće, zo njeje wjace hač %(max)s decimalnych městnow." +msgstr[3] "Zawěsćće, zo njeje wjace hač %(max)s decimalnych městnow." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Zawěsćće, zo njeje wjace hač %(max)s cyfry před decimalnej komu." +msgstr[1] "Zawěsćće, zo njeje wjace hač %(max)s cyfrow před decimalnej komu." +msgstr[2] "Zawěsćće, zo njeje wjace hač %(max)s cyfrow před decimalnej komu." +msgstr[3] "Zawěsćće, zo njeje wjace hač %(max)s cyfrow před decimalnej komu." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Datajowy sufiks ' %(extension)s' dowoleny njeje. Dowolene sufiksy su: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Prózdne znamješka dowolene njejsu." + +msgid "and" +msgstr "a" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s z tutym %(field_labels)s hižo eksistuje." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Wobmjezowanje \"%(name)s\" je překročene." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Hódnota %(value)r płaćiwa wólba njeje." + +msgid "This field cannot be null." +msgstr "Tute polo njesmě nul być." + +msgid "This field cannot be blank." +msgstr "Tute polo njesmě prózdne być." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s z tutym %(field_label)s hižo eksistuje." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s dyrbi za %(date_field_label)s %(lookup_type)s jónkróćne być." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Polo typa: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Hódnota „%(value)s“ dyrbi pak True pak False być." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Hódnota „%(value)s“ dyrbi pak True, False pak None być." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (pak True pak False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Znamješkowy rjećazk (hač %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Znamješkowy rjećazk (njewobmjezowany)" + +msgid "Comma-separated integers" +msgstr "Cyłe ličby dźělene přez komu" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Hódnota „%(value)s“ ma njepłaćiwy datumowy format. Dyrbi we formaće DD.MM." +"YYYY być." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Hódnota „%(value)s“ ma korektny format (DD.MM.YYYY), ale je njepłaćiwy datum." + +msgid "Date (without time)" +msgstr "Datum (bjez časa)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Hódnota „%(value)s“ ma njepłaćiwy format. Dyrbi we formaće DD.MM.YYYY HH:MM[:" +"ss[.uuuuuu]][TZ] być." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Hódnota „%(value)s“ ma korektny format (DD.MM.YYYY HH:MM[:ss[.uuuuuu]][TZ]), " +"ale je njepłaćiwy datum/čas." + +msgid "Date (with time)" +msgstr "Datum (z časom)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Hódnota „%(value)s“ dyrbi decimalna ličba być." + +msgid "Decimal number" +msgstr "Decimalna ličba" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Hódnota „%(value)s“ ma njepłaćiwy format. Dyrbi w formaće [DD] [HH:[MM:]]ss[." +"uuuuuu] być." + +msgid "Duration" +msgstr "Traće" + +msgid "Email address" +msgstr "E-mejlowa adresa" + +msgid "File path" +msgstr "Datajowa šćežka" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Hódnota „%(value)s“ dyrbi decimalna ličba być." + +msgid "Floating point number" +msgstr "Komowa ličba typa float" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Hódnota „%(value)s“ dyrbi integer być." + +msgid "Integer" +msgstr "Integer" + +msgid "Big (8 byte) integer" +msgstr "Big (8 byte) integer" + +msgid "Small integer" +msgstr "Mała cyła ličba" + +msgid "IPv4 address" +msgstr "IPv4-adresa" + +msgid "IP address" +msgstr "IP-adresa" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Hódnota „%(value)s“ dyrbi pak None, True pak False być." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (pak True, False pak None)" + +msgid "Positive big integer" +msgstr "Pozitiwna wulka cyła ličba" + +msgid "Positive integer" +msgstr "Pozitiwna cyła ličba" + +msgid "Positive small integer" +msgstr "Pozitiwna mała cyła ličba" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Adresowe mjeno (hač %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Hódnota „%(value)s“ ma njepłaćiwy format. Dyrbi we formaće HH:MM[:ss[." +"uuuuuu]] być." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Hódnota „%(value)s“ ma korektny format (HH:MM[:ss[.uuuuuu]]), ale je " +"njepłaćiwy čas." + +msgid "Time" +msgstr "Čas" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Hrube binarne daty" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "„%(value)s“ płaćiwy UUID njeje." + +msgid "Universally unique identifier" +msgstr "Uniwerselnje jónkróćny identifikator" + +msgid "File" +msgstr "Dataja" + +msgid "Image" +msgstr "Wobraz" + +msgid "A JSON object" +msgstr "JSON-objekt" + +msgid "Value must be valid JSON." +msgstr "Hódnota dyrbi płaćiwy JSON być." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Instanca %(model)s z %(field)s %(value)r njeeksistuje." + +msgid "Foreign Key (type determined by related field)" +msgstr "Cuzy kluč (typ so přez wotpowědne polo postaja)" + +msgid "One-to-one relationship" +msgstr "Poćah jedyn jedyn" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Poćah %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Poćahi %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Poćah wjele wjele" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Tute polo je trěbne." + +msgid "Enter a whole number." +msgstr "Zapodajće cyłu ličbu." + +msgid "Enter a valid date." +msgstr "Zapodajće płaćiwy datum." + +msgid "Enter a valid time." +msgstr "Zapodajće płaćiwy čas." + +msgid "Enter a valid date/time." +msgstr "Zapodajće płaćiwy datum/čas." + +msgid "Enter a valid duration." +msgstr "Zapodajće płaćiwe traće." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Ličba dnjow dyrbi mjez {min_days} a {max_days} być." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Žana dataja je so pósłała. Přepruwujće kodowanski typ we formularje." + +msgid "No file was submitted." +msgstr "Žana dataja je so pósłała." + +msgid "The submitted file is empty." +msgstr "Pósłana dataja je prózdna." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Zawěsćće, zo tute datajowe mjeno ma maksimalnje %(max)d znamješko (ma " +"%(length)d)." +msgstr[1] "" +"Zawěsćće, zo tute datajowe mjeno ma maksimalnje %(max)d znamješce (ma " +"%(length)d)." +msgstr[2] "" +"Zawěsćće, zo tute datajowe mjeno ma maksimalnje %(max)d znamješka (ma " +"%(length)d)." +msgstr[3] "" +"Zawěsćće, zo tute datajowe mjeno ma maksimalnje %(max)d znamješkow (ma " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Prošu zapodajće dataju abo stajće hóčku do kontrolneho kašćika, nic wobě." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Nahrajće płaćiwy wobraz. Dataja, kotruž sće nahrał, pak njebě wobraz pak bě " +"wobškodźeny wobraz. " + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Wubjerće płaćiwu wolensku móžnosć. %(value)s žana k dispoziciji stejacych " +"wolenskich móžnosćow njeje. " + +msgid "Enter a list of values." +msgstr "Zapodajće lisćinu hódnotow." + +msgid "Enter a complete value." +msgstr "Zapodajće dospołnu hódnotu." + +msgid "Enter a valid UUID." +msgstr "Zapodajće płaćiwy UUID." + +msgid "Enter a valid JSON." +msgstr "Zapodajće płaćiwy JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Schowane polo field %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Daty ManagementForm faluja abo su skepsane. Falowace pola: %(field_names)s. " +"Móžeće zmylkowu rozprawu spisać, jeli problem dale eksistuje." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Prošu wotposćelće maksimalnje %(num)d formular." +msgstr[1] "Prošu wotposćelće maksimalnje %(num)d formularaj." +msgstr[2] "Prošu wotposćelće maksimalnje %(num)d formulary." +msgstr[3] "Prošu wotposćelće maksimalnje %(num)d formularow." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Prošu zapodajće znajmjeńša %(num)d formu." +msgstr[1] "Prošu zapodajće znajmjeńša %(num)d formje." +msgstr[2] "Prošu zapodajće znajmjeńša %(num)d formy." +msgstr[3] "Prošu zapodajće znajmjeńša %(num)d formow." + +msgid "Order" +msgstr "Porjad" + +msgid "Delete" +msgstr "Zhašeć" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Prošu porjedźće dwójne daty za %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Prošu porjedźće dwójne daty za %(field)s, kotrež dyrbja jónkróćne być." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Prošu porjedźće dwójne daty za %(field_name)s, kotrež dyrbja za %(lookup)s w " +"%(date_field)s jónkróćne być." + +msgid "Please correct the duplicate values below." +msgstr "Prošu porjedźće slědowace dwójne hódnoty." + +msgid "The inline value did not match the parent instance." +msgstr "Hódnota inline nadrjadowanej instancy njewotpowěduje." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Wubjerće płaćiwu wolensku móžnosć. Tuta wolenska móžnosć jedna z k " +"dispoziciji stejacych wolenskich móžnosćow njeje." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" płaćiwa hódnota njeje." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s njeda so w časowym pasmje %(current_timezone)s interpretować; " +"je snano dwuzmyslny abo njeeksistuje." + +msgid "Clear" +msgstr "Zhašeć" + +msgid "Currently" +msgstr "Tuchwilu" + +msgid "Change" +msgstr "Změnić" + +msgid "Unknown" +msgstr "Njeznaty" + +msgid "Yes" +msgstr "Haj" + +msgid "No" +msgstr "Ně" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "haj,ně,snano" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajtaj" +msgstr[2] "%(size)d bajty" +msgstr[3] "%(size)d bajtow" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "popołdnju" + +msgid "a.m." +msgstr "dopołdnja" + +msgid "PM" +msgstr "popołdnju" + +msgid "AM" +msgstr "dopołdnja" + +msgid "midnight" +msgstr "połnoc" + +msgid "noon" +msgstr "připołdnjo" + +msgid "Monday" +msgstr "Póndźela" + +msgid "Tuesday" +msgstr "Wutora" + +msgid "Wednesday" +msgstr "Srjeda" + +msgid "Thursday" +msgstr "Štwórtk" + +msgid "Friday" +msgstr "Pjatk" + +msgid "Saturday" +msgstr "Sobota" + +msgid "Sunday" +msgstr "Njedźela" + +msgid "Mon" +msgstr "Pón" + +msgid "Tue" +msgstr "Wut" + +msgid "Wed" +msgstr "Srj" + +msgid "Thu" +msgstr "Štw" + +msgid "Fri" +msgstr "Pja" + +msgid "Sat" +msgstr "Sob" + +msgid "Sun" +msgstr "Nje" + +msgid "January" +msgstr "Januar" + +msgid "February" +msgstr "Februar" + +msgid "March" +msgstr "Měrc" + +msgid "April" +msgstr "Apryl" + +msgid "May" +msgstr "Meja" + +msgid "June" +msgstr "Junij" + +msgid "July" +msgstr "Julij" + +msgid "August" +msgstr "Awgust" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "Oktober" + +msgid "November" +msgstr "Nowember" + +msgid "December" +msgstr "December" + +msgid "jan" +msgstr "jan." + +msgid "feb" +msgstr "feb." + +msgid "mar" +msgstr "měr." + +msgid "apr" +msgstr "apr." + +msgid "may" +msgstr "mej." + +msgid "jun" +msgstr "jun." + +msgid "jul" +msgstr "jul." + +msgid "aug" +msgstr "awg." + +msgid "sep" +msgstr "sep." + +msgid "oct" +msgstr "okt." + +msgid "nov" +msgstr "now." + +msgid "dec" +msgstr "dec." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Měrc" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Apryl" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Meja" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junij" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julij" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Awg." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Now." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +msgctxt "alt. month" +msgid "March" +msgstr "Měrc" + +msgctxt "alt. month" +msgid "April" +msgstr "Apryl" + +msgctxt "alt. month" +msgid "May" +msgstr "Meja" + +msgctxt "alt. month" +msgid "June" +msgstr "Junij" + +msgctxt "alt. month" +msgid "July" +msgstr "Julij" + +msgctxt "alt. month" +msgid "August" +msgstr "Awgust" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "Nowember" + +msgctxt "alt. month" +msgid "December" +msgstr "December" + +msgid "This is not a valid IPv6 address." +msgstr "To płaćiwa IPv6-adresa njeje." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "abo" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d lěto" +msgstr[1] "%(num)dlěće" +msgstr[2] "%(num)d lěta" +msgstr[3] "%(num)d lět" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d měsac" +msgstr[1] "%(num)d měsacaj" +msgstr[2] "%(num)d měsacy" +msgstr[3] "%(num)d měsacow" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d tydźeń" +msgstr[1] "%(num)d njedźeli" +msgstr[2] "%(num)d njedźele" +msgstr[3] "%(num)d njedźel" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dźeń" +msgstr[1] "%(num)d dnjej" +msgstr[2] "%(num)d dny" +msgstr[3] "%(num)d dnjow" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hodźina" +msgstr[1] "%(num)d hodźinje" +msgstr[2] "%(num)d hodźiny" +msgstr[3] "%(num)d hodźin" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d mjeńšina" +msgstr[1] "%(num)d mjeńšinje" +msgstr[2] "%(num)d mjeńšiny" +msgstr[3] "%(num)d mjeńšin" + +msgid "Forbidden" +msgstr "Zakazany" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-přepruwowanje je so nimokuliło. Naprašowanje je so přetorhnyło." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Widźiće tutu zdźělenku, dokelž tute HTTPS-sydło \"Referer header\" trjeba, " +"kotryž so ma na waš webwobhladowak pósłać, ale žadyn njeje so pósłał. Tutón " +"header je z wěstotnych přičinow trěbny, zo by so zawěsćiło, zo waš " +"wobhladowak so wot třećich njekapruje." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Jei sće swój wobhladowak tak konfigurował, zo su hłowy „Referer“ " +"znjemóžnjene, zmóžńće je, znajmjeńša za tute sydło abo za HTTPS-zwiski abo " +"za naprašowanja „sameorigin“." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Jeli značku wužiwaće abo hłowu „Referrer-Policy: no-referrer“ zapřijimaće, " +"wotstrońće je prošu. CSRF-škit trjeba hłowu „Referer“ , zo by striktnu " +"kontrolu referer přewjedźe. Jeli so wo priwatnosć staraće, wužiwajće " +"alternatiwy kaž za wotkazy k sydłam třećich." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Widźiće tutu zdźělenku, dokelž tute sydło CSRF-plack trjeba, hdyž so " +"formulary wotesyłaja. Tutón plack je z přičinow wěstoty trěbny, zo by so waš " +"wobhladowak wot třećich njekapruje." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Jeli sće swój wobhladowak tak konfigurował, zo su placki znjemóžnjene, " +"zmóžńće je zaso, znajmjeńša za tute sydło abo za naprašowanja „same-origin“." + +msgid "More information is available with DEBUG=True." +msgstr "Z DEBUG=True su dalše informacije k dispoziciji." + +msgid "No year specified" +msgstr "Žane lěto podate" + +msgid "Date out of range" +msgstr "Datum zwonka wobłuka" + +msgid "No month specified" +msgstr "Žadyn měsac podaty" + +msgid "No day specified" +msgstr "Žadyn dźeń podaty" + +msgid "No week specified" +msgstr "Žadyn tydźeń podaty" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Žadyn %(verbose_name_plural)s k dispoziciji njeje" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Přichodowe %(verbose_name_plural)s k dispoziciji njejsu, dokelž hódnota " +"%(class_name)s.allow_future je False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Njepłaćiwy „%(format)s“ za datumowy znamješkowy rjaćazk „%(datestr)s“ podaty" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Žane %(verbose_name)s namakane, kotrež naprašowanju wotpowěduje" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Strona „last“ njeje, ani njeda so do int konwertować." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Njepłaćiwa strona (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Prózdna lisćina a „%(class_name)s.allow_empty“ je False." + +msgid "Directory indexes are not allowed here." +msgstr "Zapisowe indeksy tu dowolone njejsu." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s“ njeeksistuje" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indeks %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalacija bě wuspěšna! Zbožopřeće!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Čitajće wersijowe informacije za Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Widźiće tutu stronu, dokelž DEBUG=True je we wašej dataji nastajenjow a njejsće URL " +"skonfigurował." + +msgid "Django Documentation" +msgstr "Dokumentacija Django" + +msgid "Topics, references, & how-to’s" +msgstr "Temy, referency a nawody" + +msgid "Tutorial: A Polling App" +msgstr "Nawod: Naprašowanske nałoženje" + +msgid "Get started with Django" +msgstr "Prěnje kroki z Django" + +msgid "Django Community" +msgstr "Zhromadźenstwo Django" + +msgid "Connect, get help, or contribute" +msgstr "Zwjazać, pomoc wobstarać abo přinošować" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..f55eb626b48eba934ee472ff97e832190233b013 GIT binary patch literal 29197 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, 2018 +# András Veres-Szentkirályi, 2016-2021,2023 +# Attila Nagy <>, 2012 +# Balázs Meskó , 2024 +# Balázs R, 2023 +# Dóra Szendrei , 2017 +# Istvan Farkas , 2019 +# Jannis Leidel , 2011 +# János R, 2011-2012,2014 +# János R, 2022 +# Máté Őry , 2013 +# Szilveszter Farkas , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2024-01-12 06:49+0000\n" +"Last-Translator: Balázs Meskó , 2024\n" +"Language-Team: Hungarian (http://app.transifex.com/django/django/language/" +"hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arab" + +msgid "Algerian Arabic" +msgstr "algériai arab" + +msgid "Asturian" +msgstr "Asztúriai" + +msgid "Azerbaijani" +msgstr "azerbajdzsáni" + +msgid "Bulgarian" +msgstr "Bolgár" + +msgid "Belarusian" +msgstr "Belarusz" + +msgid "Bengali" +msgstr "Bengáli" + +msgid "Breton" +msgstr "Breton" + +msgid "Bosnian" +msgstr "Bosnyák" + +msgid "Catalan" +msgstr "Katalán" + +msgid "Central Kurdish (Sorani)" +msgstr "Közép-kurd (szoráni)" + +msgid "Czech" +msgstr "Cseh" + +msgid "Welsh" +msgstr "Walesi" + +msgid "Danish" +msgstr "Dán" + +msgid "German" +msgstr "Német" + +msgid "Lower Sorbian" +msgstr "Alsószorb" + +msgid "Greek" +msgstr "Görög" + +msgid "English" +msgstr "Angol" + +msgid "Australian English" +msgstr "Ausztráliai angol" + +msgid "British English" +msgstr "Brit angol" + +msgid "Esperanto" +msgstr "Eszperantó" + +msgid "Spanish" +msgstr "Spanyol" + +msgid "Argentinian Spanish" +msgstr "Argentin spanyol" + +msgid "Colombian Spanish" +msgstr "Kolumbiai spanyol" + +msgid "Mexican Spanish" +msgstr "Mexikói spanyol" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguai spanyol" + +msgid "Venezuelan Spanish" +msgstr "Venezuelai spanyol" + +msgid "Estonian" +msgstr "Észt" + +msgid "Basque" +msgstr "Baszk " + +msgid "Persian" +msgstr "Perzsa" + +msgid "Finnish" +msgstr "Finn" + +msgid "French" +msgstr "Francia" + +msgid "Frisian" +msgstr "Fríz" + +msgid "Irish" +msgstr "Ír" + +msgid "Scottish Gaelic" +msgstr "Skót gael" + +msgid "Galician" +msgstr "Gall" + +msgid "Hebrew" +msgstr "Héber" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Horvát" + +msgid "Upper Sorbian" +msgstr "Felsőszorb" + +msgid "Hungarian" +msgstr "Magyar" + +msgid "Armenian" +msgstr "Örmény" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonéz" + +msgid "Igbo" +msgstr "igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Izlandi" + +msgid "Italian" +msgstr "Olasz" + +msgid "Japanese" +msgstr "Japán" + +msgid "Georgian" +msgstr "Grúz" + +msgid "Kabyle" +msgstr "Kabil" + +msgid "Kazakh" +msgstr "Kazak" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreai" + +msgid "Kyrgyz" +msgstr "kirgiz" + +msgid "Luxembourgish" +msgstr "Luxemburgi" + +msgid "Lithuanian" +msgstr "Litván" + +msgid "Latvian" +msgstr "Lett" + +msgid "Macedonian" +msgstr "Macedón" + +msgid "Malayalam" +msgstr "Malajálam" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "Maráthi" + +msgid "Malay" +msgstr "Maláj" + +msgid "Burmese" +msgstr "Burmai" + +msgid "Norwegian Bokmål" +msgstr "Bokmål norvég" + +msgid "Nepali" +msgstr "Nepáli" + +msgid "Dutch" +msgstr "Holland" + +msgid "Norwegian Nynorsk" +msgstr "Nynorsk norvég" + +msgid "Ossetic" +msgstr "Oszét" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Lengyel" + +msgid "Portuguese" +msgstr "Portugál" + +msgid "Brazilian Portuguese" +msgstr "Brazíliai portugál" + +msgid "Romanian" +msgstr "Román" + +msgid "Russian" +msgstr "Orosz" + +msgid "Slovak" +msgstr "Szlovák" + +msgid "Slovenian" +msgstr "Szlovén" + +msgid "Albanian" +msgstr "Albán" + +msgid "Serbian" +msgstr "Szerb" + +msgid "Serbian Latin" +msgstr "Latin betűs szerb" + +msgid "Swedish" +msgstr "Svéd" + +msgid "Swahili" +msgstr "Szuahéli" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tádzsik" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "Türkmén" + +msgid "Turkish" +msgstr "Török" + +msgid "Tatar" +msgstr "Tatár" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Ujgur" + +msgid "Ukrainian" +msgstr "Ukrán" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "Üzbég" + +msgid "Vietnamese" +msgstr "Vietnámi" + +msgid "Simplified Chinese" +msgstr "Egyszerű kínai" + +msgid "Traditional Chinese" +msgstr "Hagyományos kínai" + +msgid "Messages" +msgstr "Üzenetek" + +msgid "Site Maps" +msgstr "Oldaltérképek" + +msgid "Static Files" +msgstr "Statikus fájlok" + +msgid "Syndication" +msgstr "Szindikáció" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Az oldalszám nem egész szám." + +msgid "That page number is less than 1" +msgstr "Az oldalszám kisebb, mint 1" + +msgid "That page contains no results" +msgstr "Az oldal nem tartalmaz találatokat" + +msgid "Enter a valid value." +msgstr "Adjon meg egy érvényes értéket." + +msgid "Enter a valid URL." +msgstr "Adjon meg egy érvényes URL-t." + +msgid "Enter a valid integer." +msgstr "Adjon meg egy érvényes számot." + +msgid "Enter a valid email address." +msgstr "Írjon be egy érvényes e-mail címet." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Kérjük adjon meg egy érvényes \"domain-darabkát\", amely csak ékezet nélküli " +"betűkből, számokból, aláhúzásból és kötőjelből áll." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Kérjük adjon meg egy érvényes \"domain-darabkát\", amely csak betűkből, " +"számokból, aláhúzásból és kötőjelből áll." + +msgid "Enter a valid IPv4 address." +msgstr "Írjon be egy érvényes IPv4 címet." + +msgid "Enter a valid IPv6 address." +msgstr "Írjon be egy érvényes IPv6 címet." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Írjon be egy érvényes IPv4 vagy IPv6 címet." + +msgid "Enter only digits separated by commas." +msgstr "Csak számokat adjon meg, vesszővel elválasztva." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Bizonyosodjon meg arról, hogy az érték %(limit_value)s (jelenleg: " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Bizonyosodjon meg arról, hogy az érték %(limit_value)s, vagy kisebb." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Bizonyosodjon meg arról, hogy az érték %(limit_value)s, vagy nagyobb." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Bizonyosodjon meg arról, hogy az érték %(limit_value)s többszöröse." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Az érték %(limit_value)s többszörösével kell hogy eltérjen %(offset)s-hoz " +"képest, pl. %(offset)s, %(valid_value1)s, %(valid_value2)s, és így tovább. " + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bizonyosodjon meg arról, hogy ez az érték legalább %(limit_value)d karaktert " +"tartalmaz (jelenlegi hossza: %(show_value)d)." +msgstr[1] "" +"Bizonyosodjon meg arról, hogy ez az érték legalább %(limit_value)d karaktert " +"tartalmaz (jelenlegi hossza: %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bizonyosodjon meg arról, hogy ez az érték legfeljebb %(limit_value)d " +"karaktert tartalmaz (jelenlegi hossza: %(show_value)d)." +msgstr[1] "" +"Bizonyosodjon meg arról, hogy ez az érték legfeljebb %(limit_value)d " +"karaktert tartalmaz (jelenlegi hossza: %(show_value)d)." + +msgid "Enter a number." +msgstr "Adj meg egy számot." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Bizonyosodjon meg arról, hogy legfeljebb %(max)s számjegyből áll." +msgstr[1] "Bizonyosodjon meg arról, hogy legfeljebb %(max)s számjegyből áll." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Bizonyosodjon meg arról, hogy legfeljebb %(max)s tizedesjegyből áll." +msgstr[1] "" +"Bizonyosodjon meg arról, hogy legfeljebb %(max)s tizedesjegyből áll." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Bizonyosodjon meg arról, hogy legfeljebb %(max)s számjegy van a " +"tizedesvessző előtt." +msgstr[1] "" +"Bizonyosodjon meg arról, hogy legfeljebb %(max)s számjegy van a " +"tizedesvessző előtt." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"A(z) \"%(extension)s\" kiterjesztés nincs engedélyezve. Az engedélyezett " +"fájltípusok: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null karakterek használata nem megengedett." + +msgid "and" +msgstr "és" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Már létezik %(model_name)s ilyennel: %(field_labels)s." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "„%(name)s” megszorítás megsértve." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r érték érvénytelen." + +msgid "This field cannot be null." +msgstr "Ez a mező nem lehet nulla." + +msgid "This field cannot be blank." +msgstr "Ez a mező nem lehet üres." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Már létezik %(model_name)s ilyennel: %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s egyedi kell hogy legyen %(lookup_type)s alapján a(z) " +"%(date_field_label)s mezőn." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Mezőtípus: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "A(z) \"%(value)s\" értéke csak True vagy False lehet." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "A(z) \"%(value)s\" értéke csak True, False vagy üres lehet." + +msgid "Boolean (Either True or False)" +msgstr "Logikai (True vagy False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Karakterlánc (%(max_length)s hosszig)" + +msgid "String (unlimited)" +msgstr "Karakterlánc (korlátlan hosszúságú)" + +msgid "Comma-separated integers" +msgstr "Vesszővel elválasztott egészek" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"A(z) \"%(value)s\" érvénytelen dátumformátumot tartalmaz. A dátumnak ÉÉÉÉ-HH-" +"NN formában kell lennie." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"A(z) \"%(value)s\" értéke formára (ÉÉÉÉ-HH-NN) megfelel ugyan, de " +"érvénytelen dátumot tartalmaz." + +msgid "Date (without time)" +msgstr "Dátum (idő nélkül)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"A(z) \"%(value)s\" érvénytelen dátumformátumot tartalmaz. A dátumnak ÉÉÉÉ-HH-" +"NN ÓÓ:PP[:mm[.uuuuuu]][TZ] formában kell lennie." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"A(z) \"%(value)s\" értéke formára (ÉÉÉÉ-HH-NN ÓÓ:PP[:mm[:uuuuuu]][TZ]) " +"megfelel ugyan, de érvénytelen dátumot vagy időt tartalmaz." + +msgid "Date (with time)" +msgstr "Dátum (idővel)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "A(z) \"%(value)s\" értékének tizes számrendszerű számnak kell lennie." + +msgid "Decimal number" +msgstr "Tizes számrendszerű (decimális) szám" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"A(z) \"%(value)s\" érvénytelen idő formátumot tartalmaz. Az időnek ÓÓ:PP[:" +"mm[.uuuuuu]] formában kell lennie." + +msgid "Duration" +msgstr "Időtartam" + +msgid "Email address" +msgstr "E-mail cím" + +msgid "File path" +msgstr "Elérési út" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "A(z) \"%(value)s\" értékének lebegőpontos számnak kell lennie." + +msgid "Floating point number" +msgstr "Lebegőpontos szám" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "A(z) \"%(value)s\" értékének egész számnak kell lennie." + +msgid "Integer" +msgstr "Egész" + +msgid "Big (8 byte) integer" +msgstr "Nagy egész szám (8 bájtos)" + +msgid "Small integer" +msgstr "Kis egész" + +msgid "IPv4 address" +msgstr "IPv4 cím" + +msgid "IP address" +msgstr "IP cím" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Az \"%(value)s\" értéke csak üres, True, vagy False lehet." + +msgid "Boolean (Either True, False or None)" +msgstr "Logikai (True, False vagy None)" + +msgid "Positive big integer" +msgstr "Pozitív nagy egész" + +msgid "Positive integer" +msgstr "Pozitív egész" + +msgid "Positive small integer" +msgstr "Pozitív kis egész" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "URL-barát cím (%(max_length)s hosszig)" + +msgid "Text" +msgstr "Szöveg" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"A(z) \"%(value)s\" érvénytelen idő formátumot tartalmaz. Az időnek ÓÓ:PP[:" +"mm[.uuuuuu]] formában kell lennie." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"A(z) \"%(value)s\" értéke formára (ÓÓ:PP[:mm[:uuuuuu]][TZ]) megfelel ugyan, " +"de érvénytelen időt tartalmaz." + +msgid "Time" +msgstr "Idő" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Nyers bináris adat" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "A(z) \"%(value)s\" értéke nem érvényes UUID érték." + +msgid "Universally unique identifier" +msgstr "Univerzálisan egyedi azonosító" + +msgid "File" +msgstr "Fájl" + +msgid "Image" +msgstr "Kép" + +msgid "A JSON object" +msgstr "Egy JSON objektum" + +msgid "Value must be valid JSON." +msgstr "Az érték érvényes JSON kell legyen." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s példány %(value)r %(field)s értékkel nem létezik." + +msgid "Foreign Key (type determined by related field)" +msgstr "Idegen kulcs (típusa a kapcsolódó mezőtől függ)" + +msgid "One-to-one relationship" +msgstr "Egy-egy kapcsolat" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s kapcsolat" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s kapcsolatok" + +msgid "Many-to-many relationship" +msgstr "Több-több kapcsolat" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Ennek a mezőnek a megadása kötelező." + +msgid "Enter a whole number." +msgstr "Adjon meg egy egész számot." + +msgid "Enter a valid date." +msgstr "Adjon meg egy érvényes dátumot." + +msgid "Enter a valid time." +msgstr "Adjon meg egy érvényes időt." + +msgid "Enter a valid date/time." +msgstr "Adjon meg egy érvényes dátumot/időt." + +msgid "Enter a valid duration." +msgstr "Adjon meg egy érvényes időtartamot." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "A napok számának {min_days} és {max_days} közé kell esnie." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nem küldött el fájlt. Ellenőrizze a kódolás típusát az űrlapon." + +msgid "No file was submitted." +msgstr "Semmilyen fájl sem került feltöltésre." + +msgid "The submitted file is empty." +msgstr "A küldött fájl üres." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Bizonyosodjon meg arról, hogy a fájlnév legfeljebb %(max)d karakterből áll " +"(jelenlegi hossza: %(length)d)." +msgstr[1] "" +"Bizonyosodjon meg arról, hogy a fájlnév legfeljebb %(max)d karakterből áll " +"(jelenlegi hossza: %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Küldjön egy új fájlt, vagy jelölje be a törlés négyzetet, de ne mindkettőt " +"egyszerre." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Töltsön fel egy érvényes képfájlt. A feltöltött fájl nem kép volt, vagy " +"megsérült." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Válasszon érvényes elemet. '%(value)s' nincs az elérhető lehetőségek között." + +msgid "Enter a list of values." +msgstr "Adja meg értékek egy listáját." + +msgid "Enter a complete value." +msgstr "Adjon meg egy teljes értéket." + +msgid "Enter a valid UUID." +msgstr "Adjon meg egy érvényes UUID-t." + +msgid "Enter a valid JSON." +msgstr "Adjon meg egy érvényes JSON-t." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Rejtett mező: %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm adatok hiányoznak vagy hamisításra kerültek. A hiányzó mezők: " +"%(field_names)s. Ha ez többször is előfordul, érdemes bejelenteni hibaként." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Legfeljebb %(num)d űrlapot küldjön be." +msgstr[1] "Legfeljebb %(num)d űrlapot küldjön be." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Legalább %(num)d űrlapot küldjön be." +msgstr[1] "Legalább %(num)d űrlapot küldjön be." + +msgid "Order" +msgstr "Sorrend" + +msgid "Delete" +msgstr "Törlés" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Javítsa a mezőhöz tartozó duplikált adatokat: %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Javítsa a mezőhöz tartozó duplikált adatokat: %(field)s (egyedinek kell " +"lenniük)." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Javítsa a mezőhöz tartozó duplikált adatokat: %(field_name)s (egyedinek kell " +"lenniük %(lookup)s alapján a dátum mezőn: %(date_field)s)." + +msgid "Please correct the duplicate values below." +msgstr "Javítsa az alábbi duplikált értékeket." + +msgid "The inline value did not match the parent instance." +msgstr "A beágyazott érték nem egyezik meg a szülő példányéval." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Válasszon érvényes elemet. Az Ön választása nincs az elérhető lehetőségek " +"között." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "Érvénytelen érték: \"%(pk)s\"" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"A(z) %(datetime)s nem értelmezhető a(z) %(current_timezone)s időzónában; " +"vagy bizonytalan, vagy nem létezik." + +msgid "Clear" +msgstr "Törlés" + +msgid "Currently" +msgstr "Jelenleg" + +msgid "Change" +msgstr "Módosítás" + +msgid "Unknown" +msgstr "Ismeretlen" + +msgid "Yes" +msgstr "Igen" + +msgid "No" +msgstr "Nem" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "igen,nem,talán" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bájt" +msgstr[1] "%(size)d bájt" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "du" + +msgid "a.m." +msgstr "de" + +msgid "PM" +msgstr "DU" + +msgid "AM" +msgstr "DE" + +msgid "midnight" +msgstr "éjfél" + +msgid "noon" +msgstr "dél" + +msgid "Monday" +msgstr "hétfő" + +msgid "Tuesday" +msgstr "kedd" + +msgid "Wednesday" +msgstr "szerda" + +msgid "Thursday" +msgstr "csütörtök" + +msgid "Friday" +msgstr "péntek" + +msgid "Saturday" +msgstr "szombat" + +msgid "Sunday" +msgstr "vasárnap" + +msgid "Mon" +msgstr "hét" + +msgid "Tue" +msgstr "kedd" + +msgid "Wed" +msgstr "sze" + +msgid "Thu" +msgstr "csüt" + +msgid "Fri" +msgstr "pén" + +msgid "Sat" +msgstr "szo" + +msgid "Sun" +msgstr "vas" + +msgid "January" +msgstr "január" + +msgid "February" +msgstr "február" + +msgid "March" +msgstr "március" + +msgid "April" +msgstr "április" + +msgid "May" +msgstr "május" + +msgid "June" +msgstr "június" + +msgid "July" +msgstr "július" + +msgid "August" +msgstr "augusztus" + +msgid "September" +msgstr "szeptember" + +msgid "October" +msgstr "október" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "december" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "már" + +msgid "apr" +msgstr "ápr" + +msgid "may" +msgstr "máj" + +msgid "jun" +msgstr "jún" + +msgid "jul" +msgstr "júl" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sze" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "febr." + +msgctxt "abbrev. month" +msgid "March" +msgstr "márc." + +msgctxt "abbrev. month" +msgid "April" +msgstr "ápr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "máj." + +msgctxt "abbrev. month" +msgid "June" +msgstr "jún." + +msgctxt "abbrev. month" +msgid "July" +msgstr "júl." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "szept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dec." + +msgctxt "alt. month" +msgid "January" +msgstr "január" + +msgctxt "alt. month" +msgid "February" +msgstr "február" + +msgctxt "alt. month" +msgid "March" +msgstr "március" + +msgctxt "alt. month" +msgid "April" +msgstr "április" + +msgctxt "alt. month" +msgid "May" +msgstr "május" + +msgctxt "alt. month" +msgid "June" +msgstr "június" + +msgctxt "alt. month" +msgid "July" +msgstr "július" + +msgctxt "alt. month" +msgid "August" +msgstr "augusztus" + +msgctxt "alt. month" +msgid "September" +msgstr "szeptember" + +msgctxt "alt. month" +msgid "October" +msgstr "október" + +msgctxt "alt. month" +msgid "November" +msgstr "november" + +msgctxt "alt. month" +msgid "December" +msgstr "december" + +msgid "This is not a valid IPv6 address." +msgstr "Ez nem egy érvényes IPv6 cím." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "vagy" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d év" +msgstr[1] "%(num)d év" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d hónap" +msgstr[1] "%(num)d hónap" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d hét" +msgstr[1] "%(num)d hét" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d nap" +msgstr[1] "%(num)d nap" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d óra" +msgstr[1] "%(num)d óra" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d perc" +msgstr[1] "%(num)d perc" + +msgid "Forbidden" +msgstr "Hozzáférés megtagadva" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF ellenőrzés sikertelen. Kérés kiszolgálása megszakítva." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Ezt az üzenetet azért látja, mert ezen a HTTPS oldalon kötelező a \"Referer " +"header\", amelyet a böngészőnek kellene küldenie, de nem tette. Ez az adat " +"biztonsági okokból kötelező, ez biztosítja, hogy a böngészőt nem irányítja " +"át egy harmadik fél." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ha a böngészője úgy van beállítva, hogy letilja a \"Referer\" adatokat, " +"kérjük engedélyezze őket ehhez az oldalhoz, vagy a HTTPS kapcsolatokhoz, " +"vagy a \"same-origin\" kérésekhez." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Ha a címkét használja, vagy " +"a “Referrer-Policy: no-referrer” fejlécet, kérjük távolítsa el ezeket. A " +"CSRF védelemnek szüksége van a \"Referer\" fejléc adatra a szigorú " +"ellenőrzéshez. Ha aggódik az adatainak biztonsága miatt, használjon " +"alternatívákat, mint például az , a külső oldalakra " +"mutató linkek esetén. " + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Azért látja ezt az üzenetet, mert ez a weboldal elvárja a CSRF cookie " +"elküldését űrlapoknál. Erre a cookie-ra biztonsági okból van szükség annak " +"kiszűrésére, hogy harmadik fél eltérítse az ön böngészőjét." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ha kikapcsolta a cookie-kat a böngészőjében, kérjük engedélyezze őket újra, " +"legalább erre az oldalra, vagy a \"same-origin\" típusú kérésekre." + +msgid "More information is available with DEBUG=True." +msgstr "További információ DEBUG=True beállítással érhető el." + +msgid "No year specified" +msgstr "Nincs év megadva" + +msgid "Date out of range" +msgstr "A dátum a megengedett tartományon kívül esik." + +msgid "No month specified" +msgstr "Nincs hónap megadva" + +msgid "No day specified" +msgstr "Nincs nap megadva" + +msgid "No week specified" +msgstr "Nincs hét megadva" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nincsenek elérhető %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Jövőbeli %(verbose_name_plural)s nem elérhetők, mert %(class_name)s." +"allow_future értéke False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"A megadott dátum \"%(datestr)s\" érvénytelen a következő formátumban: " +"\"%(format)s\"." + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Nincs a keresési feltételeknek megfelelő %(verbose_name)s" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Az oldalszám nem \"utolsó\", vagy nem lehet számmá alakítani." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Érvénytelen oldal (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Üres lista, de a \"%(class_name)s.allow_empty\" értéke hamis." + +msgid "Directory indexes are not allowed here." +msgstr "A könyvtárak listázása itt nincs engedélyezve." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "A(z) \"%(path)s\" útvonal nem létezik" + +#, python-format +msgid "Index of %(directory)s" +msgstr "A %(directory)s könyvtár tartalma" + +msgid "The install worked successfully! Congratulations!" +msgstr "A telepítés sikeresen végződött! Gratulálunk!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"A Django %(version)s kiadási megjegyzéseinek " +"megtekintése" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Azért látod ezt az oldalt, mert a DEBUG=True szerepel a settings fájlban, és még nem " +"került beállításra egy URL sem." + +msgid "Django Documentation" +msgstr "Django Dokumentáció" + +msgid "Topics, references, & how-to’s" +msgstr "Témák, hivatkozások, & leírások" + +msgid "Tutorial: A Polling App" +msgstr "Gyakorlat: egy szavazó app" + +msgid "Get started with Django" +msgstr "Első lépések a Djangóval" + +msgid "Django Community" +msgstr "Django Közösség" + +msgid "Connect, get help, or contribute" +msgstr "Lépj kapcsolatba, kérj segítséget, vagy járulj hozzá" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hu/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/hu/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/hu/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f8fbc9602e66b6ea1bdec4d52e947519d6d7b9d GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFJ&_5u&VGRIaa;( zHToF6_LK*xROQfiA&HCIUG40A-#0Uwoy`Y>K1J5ePdB+`DC&C++KVRO6*+}U45ko; z0RostG-eQkA%d7iEbgEV?xHT{5`Z||!~KLty@bO2XMpQXwCuSlRtN#66>$iaPQS}5*6f#jD8Ye8~f<71Qifz0p zQ;qlPWG|ln&xyjS8vaAyfoDJJCx87^PlGb1$B36DM+sEZ(j^D+j;8OyuvXf{$WtUM z&`rZxJSLpnBU$nunUTFPEhlJKJ^f1^lv6d!t|Ps`RD-vQ@&=8YG|gDL&O<#Ljhmc9 z?#aHjLw+PHXPPcu1h%r2EXgq~lD;rqTQcMpH#A)RwPFS5mgz1v zeYc3Wh5s>5%iNdqXqUyCvhb6*D8oG1hP(8@zgWNXi**@4zY3!dA&K(wWw=T5S(I;9 zvow#wG@iZR%~ts~3(G>hy8gz!$a1_(^&5=O}m80f}y9=uIN%{zf~h)IWs&KP$0+39o0d9?eSlTL#= z3B&*y1({LgBFw#cfiaPgCkf=?fTQR|Wu#Aw1CDplJ2-=bGlO&QFrv=yUse0O(n*Ln zbHDrDqbvViwX0UGTD5AeRkfSH8FtJU4ZpLFGUnajbH^J~=J}KFRIM>{&NgNS_z`dd z_#k){H~_vMJoR0!-%Rin$_v5Mz%qCSxB?soe%aSQ=5Zf*EcMTO9Ps$E$5%Z592`Nr z*TEs+Y3CSo0(d%znC3m;G2n1e@89d+Uj#B0GY-@^&815JeBt&K*>E06rTy;#o%OL z&V!O~F(`RI1!@WI0GYb^BB=R128z!UpxXTfsD9r9rT6cFn%_@AwSNQDy1WId-HCr- z%thcZQ18cs;xidM8Jr19z8k<2xB$E#><1Tvi!hSUgRg*V!Qy+2Sq;7mWqbg93j84W zZ{P&*%HhUfDyHc1PeAEo4G2rK6}$lazAwK4Y8_4u+&s?rcm*guTmy<<7bttZ4Ll2c z0MxuUfm)wuz%#)Y!3)9HLFw&Gj7jqz?y&`A3T7NAJGu^3yADu#_&6v&3w`}3!O@gg zfYRr7@Mv(iFMl0Wzi)vb1-}n!yo=9wcqyoU9{{c1eR-xY&jB_5^`PwTX7D6%k*{9@ zYP{P)^k6ycQ+`0-vEyWzXM8+?}4(9ANu-N zL5=?!D1QF}O8;;9`uDNt{bEq#e%hCpfzv484UPq$2Mgd)7rOoa32+kShro&8 zPrwg>BQA3D3_;B@e! z7N^Go_zuc_pw?{}D1F@P->(LbqrB0Vw}RTQdqB1S5vcyJg0jzFg4#!Kfs*6gR@eVL zQ0+!~Yy)MNmxITG6Fp7`HC{V-4A|lECQ$qQ9)4;5h$&0(cYU$)NZ>46wgV?m-6pG@%b*BQgZzO6raEI_@>8`Fk;mY_jrlNsi6AZ2+D4= zzW&o5@AL21g0i2TpxS-g*T3ZPm!S9`-RA7%ERPq0>URZr3OF6qc-Mn!e+wx8`YBNJ z{Zo(kdwkI2pL<;G@ez+-_4t^_EgpA(TDK=b>E{_=|E$O7K<%^V{reYu{fpp9)V~aV z^eAKg9=wh6lrij4@ate295>dO9QYu30eJj4H}6rP=Jx?m_B6+18kD^)_2q{^+3_}y zyFGrx<8vPSK~!sA1|{zampJ=42}C?|HmLcX1M2;G;4pB6$IHN>l&6DQhq)joVY)!+ z{a#S(vKG7u+zKi#z67fMuYCE~OI`c(K()IRlw2PJ-w)me4g;SCQIV;D;(zRA>{akw zP=4pbpz3b`XMkB>za5mE&wC3?@ z#*>qPS%h4``?Vx39|MoM+L%8AZw8ry+3WEQPye zYCZu@U3zE-#qVx#7PuE|0Z;s}Yj+u_a_Dg-IGgfTQ2H1$(czh(^w$Cg;FaL<;EkZ< z3qigA6nG~1Sy1{}4Jr@W3X0z;lU%;C;wGu=7m-JtX}0UQF(0M+hV z@Dt$2K~!#@2Oj~?xW?sKPl0z){s%Aui`P2*5op(AmXl*P81Oy=wt_1`z263206qgs zFRy}<^DXc=@Z@%<&ojW0l!t>Qa4IOdo&+W5sM)UHhd{NP1C9U}gYw%Cfa3qS$G-$G zqWssO@`oYUIX=Td>FpBG?oUv1+zp-tejYppd>E9R8$q?-1KRcT_?mzJTW~1vPo3lX zoeQ>6ZUyCMZvfeP<~~qzzW~ba-UK!7yFcRiUI1#`D?rU_Dya9}{(au#GVo~XzW~Zk z9`Lvcl>FZWi{J~sJbkY7a~bHUF_cKuZe+^1+L*_X-&IVO~F}V3C;wC6N{b`4@ z|DS^=Q~qc01n_qrPnhrWy3;|)G2G)Q@OaAa2c@S;p!&6gCxSP4?DFpmp!9GnI1Ieo zmml)D0TllyJ$?%m|9(*Xe+-@m{v1^QH$9$oy|eq_pyqeJ$5xMHJzfcl-v>QT_c+JD zzscjxpvLJ2HSQ8$e}~7F9`6ICzXyEzVNmw87DT=K{dQ4v3NKFdFTdeioJv{qISKq; zT`$?#*Pv^lEx!J5Jf^_YX+PeVzW^RX`Dt(o^co~xe;N8UbS$(Qs{hF+>GwNm9kfUV ze(!+Ke{qlYJf_G0>C1xW{PR}uOsK_|1%CnIKJ5L$so*am{k{q59%>u-@6c}{!lk(r zIuCjR8p?b9&Vm*~w?VRpm!RZ#yl?YyDr95&eanH}1OJ=nA3=*Dt#uL7?+p5V0(=8H zndfK0e}nYVWpBU=`S*>cnx2dP3- z4Dy9i5G~0ROVz#$@?j2Mu3ssgQJ2P1!)zRdsXo`QHs~Qb7U8*n&tm4*s5KRI_LU-p zuPYVJ$W)LD`#jiUx=@Z)7TStjCSO*^RN$UmWg%Zm+d4his@^DCq#B{E=!-(jNk~O8 zm_AAWUTgntxBt$u|8`6=Ei*EyRFn^_5>STIPb*JR92er&q8SyKu~iAioADnSJ;F?E zHxn1enMGlkFPe$j&M=<|^JZdCoXMJraoCyZ0=lDoDWey`ydD}9(`I6^RE}-SayLd` zCh|`lX4PbBzB_B1+#1E5VdfS(m`Py~12L1LY#5h|>NhFMchlZX%5(=US6Rij2AO;* z>W*SFsZhv9uxgo#QABaj5o28#*R(KOj9LeMJ<7dQtJ#ITZB(>VnG}b&W~^Xy3ULW( zqauRDQK^6sai)Z*Rgou^v)!Sc)}(TrQ^U#g=1vP1M{#ChrYkIE3aB^CWTVvRU~a^W zF#oU2qbk$b`|Ny?}uMFB%Q zd{)IH$P4`kr2+=?`-m|}U){5F^NQW$IiB-Tl-2$Y7t~BP>Rbnr-pcA#gC$j}h z>DE+hoeXcAPw~)XtLx@h98_hr>LwU!{n@U0c}d(C?x9p@=GtfsPUCdXvh&|oUyTt4 zU4>kaJWgO4h^MP3GL(YCLRW3Kv#WP*s@9HfnN%=y&f?1ww=?KF=0Te)4$|g;@8-{) z)y#7K{Fzgl>y*t5RyRiecE1O%$Ev05d#%)rbV4`IgIM9_4A{u?&|`xvY)1*~tDA z^n_$C(=vIR3QWr?Zsog!9=X*d;7lvToi-maJVlxAd~j{l7qo~Kewalk6C&IoSWHr& zKxoHmHPeWFgq&${Mx@LNuqnf|GC4?(f6fs;(pb9(DN@vs+ zmWyiLl?{tUpY)BkVQ#@f#|g8x8O3Nb9dqlFDyBz;xZ6F%IhA9jWHV4u)N5uCG&5#K znasr|2{Y#;hG*(6)y(W-N;K^{3OX&WP-^6y~r$mRpI8I`*}d3T>#`8v;p3 zF`en*4H-x}Bg7ioF@ttD(;^Q`NXBZpXghfdBvS#p3wHkP3i_Emu|MbXHsq;Uhs~m< zOr11;`qj!UN1NH?V`QVVVH}5OzQ%oa!OWJEtT#HWZDFCDC!G&Tk2FQ47vzKNq5T@y zEVMel8X<1LR_r3Pj8dvl{0@52Q?cAhjI=rB;MKw8bkw!Tj>%prq^tniSfr;CM3ZJp z1yTS`7LB9mXwg`svqeKq+#6{N1hf0{g}Ar~MvGlec^#>va?9)TkroZZb(=R?v+LrN z-WH2d3EQ93ZstU>HSIZy{t+&S#J0;Oi$SW~!_`V}?+;Oll>Lvcl0BYhKUIUxFAA~`}d-fVWq3&Qcr%>cb zwOCuv9p$PO#T>r3R$b2D!r{`)4SR#mOrGFl?ZC_};0oki=9cjt;JmOTD#zO1^STNp zdtjR$Mp%!T7iDEnq0$M`g|2iV!|_6!)!rSjMlLMKQWe!$!0I0Ktx?kfxOC`T<5<33 zK0PJ3QRWe#tndy4ylRH2WXOr^c4q?<{cy_jGHihMu%~F|WebbLMHV8ffO*+6C*yLD zOVKz+E%5nzvDM6L&}DKapI2g-u0UZLex+D$;Xn+^h=T)@PJ6>N=VLHRX))*ZDRNn# zX*$9j*8m;3^VoDm2vi1^lnkoL@K028RnBlxca-ZX^^N8w&vrWpxN3!Fu8BH{ii-~L zE?>@O8(z^rCPyV!a<;bY{9-1n-I(}wq>(MneT(MQL2hO`;xL6R7V@OIiM~6ygn(S5 za=b_rCJ{9AQ@L_nGV>S3p}prY^Ye@Hh2FfG-$Qnjs#+LF>TV27Q@1;{uTTzfWHeDk z!*~1rY;%!(V4G`ODj|;JGWNlN-|{f?<5byPFFUQ;Yn<3wGDUCD=K3ff-C9;sQN4h< zJ`?9FeJlX}eW85uOQ(d{cxfxd>%~fQ) z%~d2!`&B7rYGiK{sKzRnp)}VucO-~5vnQN3SIvuhRF^F^O|h=R-M7^>VS3K%)YVlp z`ntL#Bdo8o6Ra_Jv#XW;)aomkSFKph4C?BVB%!WKv+^S5Qzq<*O<3+W+zFY5QKz{D zFMmrp3*}7?N0Y;dbD2~=)15Ave1YUHUs!AkT_sb9O^>XAbB*bXilg#{Q8ez1%$&Gz z3xS|*W~%Lar5uI)_#g$}?!wTyQ4jZXZSBSGOsZ{Cxx3ibQ5YW#opW8=+-Nc9ibB3k z_h{pTOU90Sf7`fmZDTJF#*Q6-=~eF=%Wvo`ZY|pIB>5tTltMf{n2Sq{3jyh6h@0iT z^7QVgts@F^m)A29NE$Q2aC#T%XmE#-LEDUNLBj!kRa>IN~osxgmgQ#%(h+Kvs$9& zJ+^iI^Ao($sEi4p#?n5kFSNm%>T@yZ-`c-LUpe~sIjk)AxYFajU`zildM{_a_rm?L zssdS(1AO?XieCHj(Z6|Mh4hVeuHt_?kiUO3mMei}OiQ(ts(RA4+Q=ghno#W>6>HQ? z+rgQcItNk)ifZDshgR5t7>i(D`J%NH`@#*smyY}FFdOME$#w*Yu!D9RtKFzrOB)2K zJk>bJ7K(f5mJHCpg*F>mwcXat_cXo`*Hv|VE6Zv9n7+tZC2X&(Zg8@HH)^VU1+@ zniUqQiLtzv=W6DZ%!bEi1FU?`iYE)kKJ<(Wv+Jjwz9W&LX}R}m;--HOV=T2z)>k!A zxtEIV^xY`mzly1_1x)2`m?Nr{knQ6XRkwnhnf@M{TT=>J2JZ9@#tMOKt=e)8O?b0g zZwHn&HLYx*@ixZW#B|ot$!<-|lh(2u$*gGQwozidQXTwQ3l!{>nCN^b=Hs-E7uJTx zofF(7?q18yX_{cS-YR{&T_^2V?}v6N_*wUDCEB8`awnR0wp0x}26NEDN$(m$BJJ=W z+N??JLArHPMB~Pn6*0}7l}8v5$wn#kEtR3k@@h-FL8^Kjrc_H-yNW~>=At2`5#}Jx z;X5UB@~N(^LRU%m|J*Rn2CNJE&z#MXALfW@|41`b>MET`5`qe;4g=7W4nM+Ws?SYd!!p+Yz6CZM-GA zx_GlAcxCAqFt)nMb5(dili8nt5)B?Drr1N61I0DMA3>(kkc)@Id*BXy2{{YC1n!E) z+YZTnxphCBCuzL~3n$uXrqx`OXCKz9_OIMXKC8J?b$=wG-KAmt3y%YI@`>)C47bYV zRra|L)OF!{@ZlRyF%HnGedKpH+Tx~69v=%1RXf8qa&>axuC03>fdm-(7laKVRZ%2@Y!ES^9}Go zol2y!dQ-Wd2hxY?gI;d+T5;k3alKReoMg65e_m2waGh>ADdPg`zXR7k?K)GlD$r!m$1bHyqmq1^3Z>}>`)dR{4c(a8ze&K; zA+8PTreC_%eOjI5_h>RYB7izM&_<7qhf8MHzjUZ8_dkVL&F2^@*J5jxl?=6y<$@JvRriMv11qH?H?TWjeZ|m8XCZ5u zjoPoeeAfmuKr|^tXCsNc%5b)|CvD7tTZ%*csRSeK9!zF;>`vxgRR<9e`73uY8SWYC zjM}%bOH;5Rrd=u)&VG5 zKB>lTWA8(U7^*Aci8MF){XH%j(IML%_?0k7lInrmiK`yY-rS|1Paq_Kws_57^>2s4 zCgZ?za(9>LKs;mxx|?dakz-k8m6`~w=&$%s^}j8oKBTN%tw@KUm{~`^!hU3`Kqf*I_EG~zc>pvkiJ8$Or#1`4(AgyPP^gS6zHUuxG!9d7gM<4=`;(>5}d&pLC` z_O40mDr=j#awiPe8^Ajzn=%qYs(hb7=6$xJ{z|%Ep-zVbYcR=CmWDDm_aO`pc+=#& zY!MCcs(K$~qr)~jxO+yjfhv<)J14jeoqW+UZ+lQu^QONrsyauT zvNToTn5Dkt!=FOtZX7eJvR*_)KB62}AL`V{rp&f+ zwUVCI)tzVmI1D=z+g*G>v6r#czYz2HQOLqqqXU|n&D_*LW7Ff=??7daOR)06V)dpawgfOf?n-Yh~irvCvn{2G+^}U z*NRcge{2=Oj2_8;rAq0T+pYYo8DPUWs(p?_-5JP*GWAv>p~NF`pbFpefzICf69T@_ zd7De31ud+_`Kc>ea%U5UZ|MAXdb)XPt#L5H?D?~1)orI>Fb=FBa?AMEO3RWE-L9%_ zGkeukJF!Vxnk;3AH3FH?8tVh`4{|v&36~RMhZ?ay63BsRx)M;zmN}Cu4=i`CN(!ze z$}9o%(c9{(*sCe2n{Qb5pn~apK01WkP`ApmPpT1Mhn0T2t{&=Fs?j64tkrHD`?k+pw#K=Zo4LYiq$4+Tor~;@RE(z>6l}rzNBhV$i?K4-1k#= zm{XljTKol!l9Yp;v&a=#Zv`#meb)zXufsK|- zgDX0!t-bQ8`&&g~klmUXs2V*E?^Oyza>n*{NVR+IPD$V=IQ_br(vBtt96qKNH&0P>Z$JiN9Hs z(CAXzeur{NO3-zG6xnRciP$HNfhVndmL1sRvwh(TtRIpzp0DkB zBk6}!j-L;ksz>?B-^n!pRf|4}H62Z?NDRW(R1)arYAha>Xbe$3_rR@ry#3?*z?}vy zBC;9y3?7i#5`FM^+#sVZ!-`ssBo7>Gt2NdljrEe-4I^o@tU-15rp8y;Kcm8oIHlR1 haHb`j)cp}7JxDkt0XuILt#*xq-v-z)sxJ1-e*k+x9uWWl literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po new file mode 100644 index 0000000..e4860e2 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/hy/LC_MESSAGES/django.po @@ -0,0 +1,1237 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Սմբատ Պետրոսյան , 2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Armenian (http://www.transifex.com/django/django/language/" +"hy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hy\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Աֆրիկաանս" + +msgid "Arabic" +msgstr "Արաբերեն" + +msgid "Asturian" +msgstr "Աստուրերեն" + +msgid "Azerbaijani" +msgstr "Ադրբեջաներեն" + +msgid "Bulgarian" +msgstr "Բուլղարերեն" + +msgid "Belarusian" +msgstr "Բելոռուսերեն" + +msgid "Bengali" +msgstr "Բենգալերեն" + +msgid "Breton" +msgstr "Բրետոներեն" + +msgid "Bosnian" +msgstr "Բոսնիերեն" + +msgid "Catalan" +msgstr "Կատալաներեն" + +msgid "Czech" +msgstr "Չեխերեն" + +msgid "Welsh" +msgstr "Վալլիերեն" + +msgid "Danish" +msgstr "Դանիերեն" + +msgid "German" +msgstr "Գերմաներեն" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Հունարեն" + +msgid "English" +msgstr "Անգլերեն" + +msgid "Australian English" +msgstr "Ավստրալական Անգլերեն" + +msgid "British English" +msgstr "Բրիտանական Անգլերեն" + +msgid "Esperanto" +msgstr "Էսպերանտո" + +msgid "Spanish" +msgstr "Իսպաներեն" + +msgid "Argentinian Spanish" +msgstr "Արգենտինական իսպաներեն" + +msgid "Colombian Spanish" +msgstr "Կոլումբիական իսպաներեն" + +msgid "Mexican Spanish" +msgstr "Մեքսիկական իսպաներեն" + +msgid "Nicaraguan Spanish" +msgstr "Նիկարագուական իսպաներեն" + +msgid "Venezuelan Spanish" +msgstr "Վենեսուելլական իսպաներեն" + +msgid "Estonian" +msgstr "Էստոներեն" + +msgid "Basque" +msgstr "Բասկերեն" + +msgid "Persian" +msgstr "Պարսկերեն" + +msgid "Finnish" +msgstr "Ֆիներեն" + +msgid "French" +msgstr "Ֆրանսերեն" + +msgid "Frisian" +msgstr "Ֆրիզերեն" + +msgid "Irish" +msgstr "Իռլանդերեն" + +msgid "Scottish Gaelic" +msgstr "Գելական շոտլանդերեն" + +msgid "Galician" +msgstr "Գալիսերեն" + +msgid "Hebrew" +msgstr "Եբրայերեն" + +msgid "Hindi" +msgstr "Հինդի" + +msgid "Croatian" +msgstr "Խորվաթերեն" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Հունգարերեն" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Ինտերլինգուա" + +msgid "Indonesian" +msgstr "Ինդոնեզերեն" + +msgid "Ido" +msgstr "Իդո" + +msgid "Icelandic" +msgstr "Իսլանդերեն" + +msgid "Italian" +msgstr "Իտալերեն" + +msgid "Japanese" +msgstr "Ճապոներեն" + +msgid "Georgian" +msgstr "Վրացերեն" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Ղազախերեն" + +msgid "Khmer" +msgstr "Քեմերերեն" + +msgid "Kannada" +msgstr "Կանադա" + +msgid "Korean" +msgstr "Կորեերեն" + +msgid "Luxembourgish" +msgstr "Լյուքսեմբուրգերեն" + +msgid "Lithuanian" +msgstr "Լիտվերեն" + +msgid "Latvian" +msgstr "Լատիշերեն" + +msgid "Macedonian" +msgstr "Մակեդոներեն" + +msgid "Malayalam" +msgstr "Մալայալամ" + +msgid "Mongolian" +msgstr "Մոնղոլերեն" + +msgid "Marathi" +msgstr "Մարատխի" + +msgid "Burmese" +msgstr "Բիրմաներեն" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Նեպալերեն" + +msgid "Dutch" +msgstr "Հոլանդերեն" + +msgid "Norwegian Nynorsk" +msgstr "Նորվեգերեն (Նյունորսկ)" + +msgid "Ossetic" +msgstr "Օսերեն" + +msgid "Punjabi" +msgstr "Փանջաբի" + +msgid "Polish" +msgstr "Լեհերեն" + +msgid "Portuguese" +msgstr "Պորտուգալերեն" + +msgid "Brazilian Portuguese" +msgstr "Բրազիլական պորտուգալերեն" + +msgid "Romanian" +msgstr "Ռումիներեն" + +msgid "Russian" +msgstr "Ռուսերեն" + +msgid "Slovak" +msgstr "Սլովակերեն" + +msgid "Slovenian" +msgstr "Սլովեներեն" + +msgid "Albanian" +msgstr "Ալբաներեն" + +msgid "Serbian" +msgstr "Սերբերեն" + +msgid "Serbian Latin" +msgstr "Սերբերեն (լատինատառ)" + +msgid "Swedish" +msgstr "Շվեդերեն" + +msgid "Swahili" +msgstr "Սվահիլի" + +msgid "Tamil" +msgstr "Թամիլերեն" + +msgid "Telugu" +msgstr "Թելուգու" + +msgid "Thai" +msgstr "Թայերեն" + +msgid "Turkish" +msgstr "Թուրքերեն" + +msgid "Tatar" +msgstr "Թաթարերեն" + +msgid "Udmurt" +msgstr "Ումուրտերեն" + +msgid "Ukrainian" +msgstr "Ուկրաիներեն" + +msgid "Urdu" +msgstr "Ուրդու" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Վիետնամերեն" + +msgid "Simplified Chinese" +msgstr "Հեշտացված չինարեն" + +msgid "Traditional Chinese" +msgstr "Ավանդական չինարեն" + +msgid "Messages" +msgstr "Հաղորդագրություններ" + +msgid "Site Maps" +msgstr "Կայքի քարտեզ" + +msgid "Static Files" +msgstr "Ստատիկ ֆայլեր\t" + +msgid "Syndication" +msgstr "Նորություններ" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Մուտքագրեք ճիշտ արժեք" + +msgid "Enter a valid URL." +msgstr "Մուտքագրեք ճիշտ URL" + +msgid "Enter a valid integer." +msgstr "Մուտքագրեք ամբողջ թիվ" + +msgid "Enter a valid email address." +msgstr "Մուտքագրեք ճիշտ էլեկտրոնային փոստի հասցե" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Մուտքագրեք ճիշտ IPv4 հասցե" + +msgid "Enter a valid IPv6 address." +msgstr "Մուտքագրեք ճիշտ IPv6 հասցե" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Մուտքագրեք ճիշտ IPv4 կամ IPv6 հասցե" + +msgid "Enter only digits separated by commas." +msgstr "Մուտքագրեք միայն ստորակետով բաժանված թվեր" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Համոզվեք, որ այս արժեքը %(limit_value)s (հիմա այն — %(show_value)s)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Համոզվեք, որ այս արժեքը փոքր է, կամ հավասար %(limit_value)s" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Համոզվեք, որ այս արժեքը մեծ է, համ հավասար %(limit_value)s" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Համոզվեք, որ արժեքը պարունակում է ամենաքիչը %(limit_value)d նիշ (այն " +"պարունակում է %(show_value)d)." +msgstr[1] "" +"Համոզվեք, որ արժեքը պարունակում է ամենաքիչը %(limit_value)d նիշ (այն " +"պարունակում է %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Համոզվեք, որ արժեքը պարունակում է ամենաքիչը %(limit_value)d նիշ (այն " +"պարունակում է %(show_value)d)." +msgstr[1] "" +"Համոզվեք, որ արժեքը պարունակում է ամենաքիչը %(limit_value)d նիշ (այն " +"պարունակում է %(show_value)d)." + +msgid "Enter a number." +msgstr "Մուտքագրեք թիվ" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Համոզվեք, որ թվերի քանակը մեծ չէ %(max)s -ից" +msgstr[1] "Համոզվեք, որ թվերի քանակը մեծ չէ %(max)s -ից" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Համոզվեք, որ ստորակետից հետո թվերի քանակը մեծ չէ %(max)s -ից" +msgstr[1] "Համոզվեք, որ ստորակետից հետո թվերի քանակը մեծ չէ %(max)s -ից" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Համոզվեք, որ ստորակետից առաջ թվերի քանակը մեծ չէ %(max)s -ից" +msgstr[1] "Համոզվեք, որ ստորակետից առաջ թվերի քանակը մեծ չէ %(max)s -ից" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "և" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" +"%(field_labels)s դաշտերի այս արժեքով %(model_name)s արդեն գոյություն ունի" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r արժեքը չի մտնում թույլատրված տարբերակների մեջ" + +msgid "This field cannot be null." +msgstr "Այս դաշտը չի կարող ունենալ NULL արժեք " + +msgid "This field cannot be blank." +msgstr "Այս դաշտը չի կարող լինել դատարկ" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(field_label)s դաշտի այս արժեքով %(model_name)s արդեն գոյություն ունի" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"«%(field_label)s» դաշտի արժեքը պետք է լինի միակը %(date_field_label)s " +"%(lookup_type)s համար" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "%(field_type)s տիպի դաշտ" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Տրամաբանական (True կամ False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Տող (մինչև %(max_length)s երկարությամբ)" + +msgid "Comma-separated integers" +msgstr "Ստորակետով բաժանված ամբողջ թվեր" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Ամսաթիվ (առանց ժամանակի)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Ամսաթիվ (և ժամանակ)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Տասնորդական թիվ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Տևողություն" + +msgid "Email address" +msgstr "Email հասցե" + +msgid "File path" +msgstr "Ֆայլի ճանապարհ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Floating point թիվ" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Ամբողջ" + +msgid "Big (8 byte) integer" +msgstr "Մեծ (8 բայթ) ամբողջ թիվ" + +msgid "IPv4 address" +msgstr "IPv4 հասցե" + +msgid "IP address" +msgstr "IP հասցե" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Տրամաբանական (Either True, False կամ None)" + +msgid "Positive integer" +msgstr "Դրական ամբողջ թիվ" + +msgid "Positive small integer" +msgstr "Դրայան փոքր ամբողջ թիվ" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (մինչև %(max_length)s նիշ)" + +msgid "Small integer" +msgstr "Փոքր ամբողջ թիվ" + +msgid "Text" +msgstr "Տեքստ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Ժամանակ" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Երկուական տվյալներ" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Ֆայլ" + +msgid "Image" +msgstr "Պատկեր" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" +" %(field)s դաշտի %(value)r արժեք ունեցող %(model)s օրինակ գոյություն չունի" + +msgid "Foreign Key (type determined by related field)" +msgstr "Արտաքին բանալի (տեսակը որոշվում է հարակից դաշտից)" + +msgid "One-to-one relationship" +msgstr "Մեկը մեկին կապ" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Մի քանիսը մի քանիսին կապ" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Այս դաշտը պարտադիր է" + +msgid "Enter a whole number." +msgstr "Մուտքագրեք ամբողջ թիվ" + +msgid "Enter a valid date." +msgstr "Մուտքագրեք ճիշտ ամսաթիվ" + +msgid "Enter a valid time." +msgstr "Մուտքագրեք ճիշտ ժամանակ" + +msgid "Enter a valid date/time." +msgstr "Մուտքագրեք ճիշտ ամսաթիվ/ժամանակ" + +msgid "Enter a valid duration." +msgstr "Մուտքագրեք ճիշտ տևողություն" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ոչ մի ֆայլ չի ուղարկվել։ Ստուգեք ձևաթղթի կոդավորում տեսակը" + +msgid "No file was submitted." +msgstr "Ոչ մի ֆայլ չի ուղարկվել" + +msgid "The submitted file is empty." +msgstr "Ուղարկված ֆայլը դատարկ է" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Համոզվեք, որ ֆայլի անունը պարունակում է ամենաշատը %(max)d նիշ (այն " +"պարունակում է %(length)d)" +msgstr[1] "" +"Համոզվեք, որ ֆայլի անունը պարունակում է ամենաշատը %(max)d նիշ (այն " +"պարունակում է %(length)d)" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Ուղարկեք ֆայլ, կամ ակտիվացրեք մաքրելու նշման վանդակը, ոչ թե երկուսը միասին" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "Ուղարկեք ճիշտ պատկեր․ Ուղարկված ֆայլը պատկեր չէ, կամ վնասված է" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Ընտրեք ճիշտ տարբերակ։ %(value)s արժեքը չի մտնում ճիշտ արժեքների մեջ" + +msgid "Enter a list of values." +msgstr "Մուտքագրեք արժեքների ցուցակ" + +msgid "Enter a complete value." +msgstr "Մուտքագրեք ամբողջական արժեք" + +msgid "Enter a valid UUID." +msgstr "Մուտքագրեք ճիշտ UUID" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Թաքցված դաշտ %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "Կառավարման ձևաթղթի տվյալները բացակայում են, կամ վնասված են" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Ուղարկեք %d կամ քիչ ձևաթղթեր" +msgstr[1] "Ուղարկեք %d կամ քիչ ձևաթղթեր" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "Ուղարկեք %d կամ շատ ձևաթղթեր" +msgstr[1] "Ուղարկեք %d կամ շատ ձևաթղթեր" + +msgid "Order" +msgstr "Հերթականություն" + +msgid "Delete" +msgstr "Հեռացնել" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ուղղեք %(field)s դաշտի կրկնվող տվյալները" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Ուղղեք %(field)s դաշտի կրկնվող տվյալները, որոնք պետք է լինեն եզակի" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Ուղղեք %(field_name)s դաշտի կրկնվող տվյալները, որոնք պետք է լինեն եզակի " +"%(date_field)s-ում %(lookup)s֊ի համար" + +msgid "Please correct the duplicate values below." +msgstr "Ուղղեք կրկնվող տվյալները" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Ընտրեք ճիշտ տարբերակ։ Այս արժեքը չի մտնում ճիշտ արժեքների մեջ" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Մաքրել" + +msgid "Currently" +msgstr "Տվյալ պահին" + +msgid "Change" +msgstr "Փոխել" + +msgid "Unknown" +msgstr "Անհայտ" + +msgid "Yes" +msgstr "Այո" + +msgid "No" +msgstr "Ոչ" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "այո,ոչ,միգուցե" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d բայթ" +msgstr[1] "%(size)d բայթ" + +#, python-format +msgid "%s KB" +msgstr "%s ԿԲ" + +#, python-format +msgid "%s MB" +msgstr "%s ՄԲ" + +#, python-format +msgid "%s GB" +msgstr "%s ԳԲ" + +#, python-format +msgid "%s TB" +msgstr "%s ՏԲ" + +#, python-format +msgid "%s PB" +msgstr "%s ՊԲ" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "կեսգիշեր" + +msgid "noon" +msgstr "կեսօր" + +msgid "Monday" +msgstr "Երկուշաբթի" + +msgid "Tuesday" +msgstr "Երեքշաբթի" + +msgid "Wednesday" +msgstr "Չորեքշաբթի" + +msgid "Thursday" +msgstr "Հինգշաբթի" + +msgid "Friday" +msgstr "Ուրբաթ" + +msgid "Saturday" +msgstr "Շաբաթ" + +msgid "Sunday" +msgstr "Կիրակի" + +msgid "Mon" +msgstr "Երկ" + +msgid "Tue" +msgstr "Երք" + +msgid "Wed" +msgstr "Չրք" + +msgid "Thu" +msgstr "Հնգ" + +msgid "Fri" +msgstr "Ուրբ" + +msgid "Sat" +msgstr "Շբթ" + +msgid "Sun" +msgstr "Կիր" + +msgid "January" +msgstr "Հունվար" + +msgid "February" +msgstr "Փետրվար" + +msgid "March" +msgstr "Մարտ" + +msgid "April" +msgstr "Ապրիլ" + +msgid "May" +msgstr "Մայիս" + +msgid "June" +msgstr "Հունիս" + +msgid "July" +msgstr "Հուլիս" + +msgid "August" +msgstr "Օգոստոս" + +msgid "September" +msgstr "Սեպտեմբեր" + +msgid "October" +msgstr "Հոկտեմբեր" + +msgid "November" +msgstr "Նոյեմբեր" + +msgid "December" +msgstr "Դեկտեմբեր" + +msgid "jan" +msgstr "հուն" + +msgid "feb" +msgstr "փետ" + +msgid "mar" +msgstr "մար" + +msgid "apr" +msgstr "ապր" + +msgid "may" +msgstr "մայ" + +msgid "jun" +msgstr "հուն" + +msgid "jul" +msgstr "հուլ" + +msgid "aug" +msgstr "օգտ" + +msgid "sep" +msgstr "սեպ" + +msgid "oct" +msgstr "հոկ" + +msgid "nov" +msgstr "նոյ" + +msgid "dec" +msgstr "դեկ" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Հուն․" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Փետ․" + +msgctxt "abbrev. month" +msgid "March" +msgstr "Մարտ" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Մարտ" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Մայիս" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Հունիս" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Հուլիս" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Օգոստ․" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Սեպտ․" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Հոկտ․" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Նոյ․" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Դեկ․" + +msgctxt "alt. month" +msgid "January" +msgstr "Հունվար" + +msgctxt "alt. month" +msgid "February" +msgstr "Փետրվար" + +msgctxt "alt. month" +msgid "March" +msgstr "Մարտ" + +msgctxt "alt. month" +msgid "April" +msgstr "Ապրիլ" + +msgctxt "alt. month" +msgid "May" +msgstr "Մայիս" + +msgctxt "alt. month" +msgid "June" +msgstr "Հունիս" + +msgctxt "alt. month" +msgid "July" +msgstr "Հուլիս" + +msgctxt "alt. month" +msgid "August" +msgstr "Օգոստոս" + +msgctxt "alt. month" +msgid "September" +msgstr "Սեպտեմբեր" + +msgctxt "alt. month" +msgid "October" +msgstr "Հոկտեմբեր" + +msgctxt "alt. month" +msgid "November" +msgstr "Նոյեմբեր" + +msgctxt "alt. month" +msgid "December" +msgstr "Դեկտեմբեր" + +msgid "This is not a valid IPv6 address." +msgstr "Սա ճիշտ IPv6 հասցե չէ" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "կամ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d տարի" +msgstr[1] "%d տարի" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d ամիս" +msgstr[1] "%d ամիս" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d շաբաթ" +msgstr[1] "%d շաբաթ" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d օր" +msgstr[1] "%d օր" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d ժամ" +msgstr[1] "%d ժամ" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d րոպե" +msgstr[1] "%d րոպե" + +msgid "0 minutes" +msgstr "0 րոպե" + +msgid "Forbidden" +msgstr "Արգելված" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF ստուգման սխալ․ Հարցումն ընդհատված է" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Դուք տեսնում եք այս հաղորդագրությունը, քանի որ այս կայքը ձևաթերթերը " +"ուղարկելու համար պահանջում է CSRF cookie։ Այն անհրաժեշտ է անվտանգության " +"նկատառումներից ելնելով, համոզվելու համար, որ ձեր բրաուզերը չի գտնվում երրորդ " +"անձանց կառավարման տակ։" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Ավելի մանրամասն տեղեկությունը հասանելի է DEBUG=True֊ի ժամանակ" + +msgid "No year specified" +msgstr "Տարին նշված չէ" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Ամիսը նշված չէ" + +msgid "No day specified" +msgstr "Օրը նշված չէ" + +msgid "No week specified" +msgstr "Շաբաթը նշված չէ" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ոչ մի %(verbose_name_plural)s հասանելի չէ" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Ապագա %(verbose_name_plural)s հասանելի չեն, քանի որ %(class_name)s." +"allow_future ունի False արժեք" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Հարցմանը համապատասխանող ոչ մի %(verbose_name)s չի գտնվել" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Սխալ էջ (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Կատալոգների ինդեքսավորումը թույլատրված չէ այստեղ" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s֊ի ինդեքսը" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..e22136f196ce569e3a39dd3da3d867500112c700 GIT binary patch literal 21428 zcmcJW3!Gg=o#zWk5E7mOf>H1!5a@>P4gnT1JeIsVX_5|Yx&s2nc<#L?eNXz{doJgk z+ntWeD9k7*x{NZTt}vs5?!cn!YeXHvaa0)5QO9u{*4HX33wI=Aob zbmzgc=aYYbYryl>R`d9sLzW3Y(e`L4@4l(A1@YW-Zc_;V3eXc@{dFAts*$6|Z z_xHk6;luD^_+xkxT)M=Vm%wYG;@u7x!Vi1i@A-h|=RCg%mlE%*@KE@q=TnfPm|wyp z;2|$C=2*B0D&HmWa2UW7;8{@dF7{mK-w#7oWehHc<32oti+J7xp9B8@o(SIzPlNA; zXTZ<;_mBJc{{r>h!>FV!4^%mqK;?4=JRA1;=c}RO?|>@zPIx@5!BgN3Q00C*R6g&9 zigzzmx(~tQ;Qdhb{A;NA-+{-#A4A1^3Z4ajZiY(tr%>g% z7fR1R0?&aD!iDgkq252?`7~5H)o9B1NY7)S%6kG-{3ZT*8B{*K{&|Jxg;4P>g(}B- zD1968e1#9MLDh2#GG&<8L8W^aRK9mX)$<;xa(w_wpFZxxAA*PT{0LM&e+$(w-}d2) z&T{&7JUo=}GhiP)3(_TK3~C%rL$%u*q4fAYPC=%HIq1{mY@+X(K!WzRZV*Q0*D}@H$kyNw^-q9&UhNhDX8^Q5NNQ8dU$C3Dqta zK)v4pRj!x%=a)f^^Ac428=%tP3Z=idLyfohK$YV&Q0YGh74H$xufxSWe+#Pp9{2p2 z=g*-ry-(^tkwBEnJ5^A2h8XgTl43+<9pz8T~cqV)V zs-2&Ni{Jv3THieuD!&t;;-BinPltcQ^I1^&{Q_!!{54cQ$EUn|Z2G46f>rm-l z3#IqB`|$UBe$v1HGSs;FK2*FXefVK0vC^Lm_1$yevG6j_E$}#=UjdJS2~_+WpyIz3 zO0VAsRo_o}KIr*Zo)39G;`tTNuX}#e^IM+ZgX+)6pxWoBKKu#Kr=Z5=)BgQ$e7ITZ z^mYL}gZIb7t?)v46}$yT@cVE(96ZnQZg@S^KmWwPKZVXz z{gy(Nvk$5qm%+EdLC?R3lRQ^geC~wbhWEqiON{w*xROrZ0RIuLhAS|-#OtB@`J+(t z+SlNT@Mlo{dB}e@rU#x5^}HFL0vqu8@C}~tfdS8d0oC5$fzs1oL$%M+%U%5Sa0$;l z;H%*tn8RN}m7_+Xm@>^RQ2qaL&%gA11SCF>R`tV!-ym+0nM^1*yXAr9VBc9iImY~Wt;dwn& z`KF-0bAx|=y?_5^AO1EU{w~k=`tW<8+VjIu_4q8*cfSHvj(>n^-ycBb|7)o49lGAt z??|Zl$H3#@$?!1P0~N0iDxdSA^!-vFUWXc=IXo2J3{h?KCaCfF5R@JL6qFt;8g%x0 z4^%r&L+SA!LXH0qK;`#&&qtxk^)q+|`~_6`muzt5Tm}#4`FyB&tDwrU);|xzjXYlo zHDA61YM%ZwWXd;}@sg%62~_%zLEHcEG@c)ZD(B-+<^MPM9QeW^H=mpV75~L>AzTgB zZX2NDZG!5TQAko#hGXzPcqBaJ3YTs%ls+8~HJ(p}(yQ~J@>%UU1l6uDg^Krk@CbN2 zRKMQ|d*QuM<@knw|0q;GKk)n~sP8@LpMM8c{)L-dyv0!MdID7V61W%!Fo1n0 zyj@#dehsMd=bqD^H+bFz_1&92-{Qk>_k5@4pLpH{75~pXKL}Nhk3seGr=iOC1^@h2 zsQ8b1eh;c$e*{&opF*X30xF+hL8U+BN(3&3s?X7$$9taS`Fzh)J(qee_w4oThib=_ zP~W@6hp+b>g8JUDf4x~ZWzn|gmBIM-=&26vi_`4GM3G&y-A0WCm zI<)_OggZ~M|LB+mN}S(z8rga{s8h{kbgoRMt+8z$@}LaU+4aCMA!2i z%pbv%d3O&y19=B>sLzjEd%cdoUqp^X`gzxY{|i}y=#ouSTxawCG@qVn&t5n3_Y=sO z$bYpV#w_=7^msG!&&cV>50LYbdy%goFF|zuse`rub*u4x8?qg_3^|1S`jC^k??Zlv zd>Ya9F+}?QPNa_LocBwxxc-rwKlTr=hf8=rT)c!#8}`x|KLMFWPPHM-9mM^RzZc$v zydQa+9=J~7eFeVQKDj@q6LuW(_Z?w7x$i+3@?FpvlXiR?oD z0(lhqG4dkh9OQk7uK(j;|Gt2~Oa~@F{sB1=c`tGb@&d~ABdF_>4km-&N1i}Fis<_9 z$Q8(QkuM_`BEOH^iYz6MS3q5Vg8Vu1hkD>T%EA7gC+t|{Xzo9SG?A|&M-g@? zyc~&;-$P!A+<~OXtC4?4zKs;ux41cibc>N5WE;;bkgJdv@?2am^*1}<2_4}I{x0%2 z$i>Ldkk+~>=TxAmlAzaBTTJZzMsU@Fe5eAs@I%$D~|hP77In+BC6%7R9c z2hr|0%k^2Cc1I(uQw*0buf|H!UEr{mMqy>zrL*Ndkc1g|?wvA=_e8ywpfsIF6rkgY zx@5tIHTt{B{vEb|N9^CRHKu1{T&YBjz!r@nx>EOY7o};E_GYFpFsp~n>YZsk5r&P- ztge;9MjSS{8IMwKg4JnQipyqoGmUGecu2>iMjk6-Fxn(RR^?Saaw)UCrIcoMYnJfcKq zO_J0ivg%n+mqlqXmZCOj&0tu|qTV@Q_qmsfwIylTNSQ6^nl#)K+k%ZGX-;XQjDn<5 zo=}K1&M9iU$ZJ})@z7RlO^ccmaqZ~V!C;a`+8LLv>IFN)xE56gf~^rXLa)OT*%DyZ zhIv?{W^1cqW1N)KAT?`~T2e1{HsRW&UJv`Ts2Qe=fJ#y4%&bilzMu?RX-do2rp?+t zQMqc?xwc8=pUh$=A*1|H`Khu;9v4cq(kH?yKm~T|dXr>eiigxf>WzS+>w11E% zD9ke{#vEyxoOYs@8v8*tq+4@(0qt}hPzlOa)UBK|mU?It#bB~!2iU_lcb}%`17Vto`^iB5cm2ux09#j$O8M>^a z^;~Kj+)=-5&L$()I7^lKpW)ijEXnl6^pGdBbM00J*Wx6vG4c;6t-cWk<)q%!j1$-l zl&1@4WyphMrwg{j*@e4lY9=1Z;z}?yGI>EU?acX(dJyNreZ-mf-L|cpXJ@%>+t9k% zVKP(Z3R|K1cCQzH+MFF8bu zTZ`-;OtYMtv6Kb06DCpd*qf=rP;A+Ke(@U!R{K@39nCI~%HBuWG4nm7>7YlYWmTeg>T!d`m%3XMms?w%UNeX# zzyds&#*#`%#nadtP=hTju!xdjos^O+vexR3W(^gT&26hS$+8`mC}JrphpkMp%e64e zyk$FJE45>%%ZawI_SJydz~C#ZwKqgbI__@Lx}MW0nlKybgJ{ZZ#Ds{=#uj#*HJOG+ zieYFv$E_JEWAzcWY=$a{85%F~rygP<4ao#i7qS^B>=LY1f-&H19f!OmVi5?^Mrs;HidXL#0=99{7GnQ!!!%VjrPH8ZzF4j|P zHx^jZqT%@VF!m1B(TicM!)c_>U1PdGPx@(6-{HlcW>`jHH6}(%uMgAR!>%$JH@h)G zXH4;7tTRL^0mc(s#bKE`aRZB|?yOZhHEe5vwH?>3U$bq)rLw38%oeOrZ162)oQ5>+ zOzv9}vqeior*ffHI}@gkfV|69>9~w4tYC)YUXf=svHg8TqPPL0x{N&?RTLnrC78k< z$yy~W18Ygo9UQE!M&$|nO~yo0u?5foVr;7*sx(zfFnk(p^t!$>h2D0DOkR3z8V=7AzP*!Nt#U%GU;sVEv;H@#-iHGh8{3iVq?n)zp@djpHb)Tt?QL3 z^RKxw%c7iNF*0mMn2x0*BQldBCO~!oWouOjl~$9{C{v%MDD<0WH#;zSPgUb`b=C%Z z;9#>k$OP?u@f_c_E8H8dG zfnxp1S-n|DFr4y`gCdlMk(#w?dDijPtuAWF87p|@obTD7TN+;B=V~~R%gUxKVRqCxYH`^vs8cd3^tufI^reG7( zr_xqvP9Mh6XElKxtJ6s9a3w7jd#O6WH*n#Z@c3WC$ znQePYSRz+xsI-SnTB!Q0F=eib8quDXtdRCW)>UzoYqN|VU(G^)Bw6ubDr+FMP zQG^35j$sMQZF0b^kPF;t->k6K`0Qw$B+U-O3ZET>akW>F%&YF~t+CY|B}VY3sm z_Rh|pMRs=3Xw+0#EuU4zjsSOD*%5{6xrwhMti8+V2rI0|&LCUCnao}7W}bc3Is>TJ z%wyZ2=m;xJhmIiC$``RwF<~<`VQbuQq-J(TC9{hmxT{q|8m7)HS4WBKaitNDS98-y zuo4@|q)E!TNmA347O>Yc)9m~jNgt6*k+C}?zwC7Giu^3%w#Bm}+4$~sM-v{8tYX?N zTOAMSf+5bJ{K-Eiz%^X`!^8dS))f)<`tF=rI$L&jZW}kQ8XmrGRhC^h(6ZO|?axNG z9fh3Z3)hWZ`>cHBx^?Te2iIN47q$-%uiD;Gi36yE41vNvbZry#%u&|fpv0jtXMIc% z%zH%#xl@Jt`*N<__unY=v>%7?=23O<}Soc{GHmn?>F1_ z^1i>Aeu0xaqOaS9aeyhi+#Uy!#`{9-(T={Zr0+K)X|fB8vwx`4f0ecyNn=$|VfGkL z7Hy51I5GN%v+=mnzos>w^^Ya1f<+@&_HT_QIc`WA{p;wvmut~xj&}R8B^p^R#JRAF%5op?WOu&?Bm9!fh@rjvc+@`@h4ocI$9_KOspffe z)ru8UQ&R)DkX*U}j(}FU!WCfkwppx*!xg=YhKGjN&s1aOz`2XoV#47y=^wM_K{-a= z3cL+*<6`XKFlDE8>9(=K{)=Yf>03Law12(dOs)zpD#dxbsH=iFTr^^jQ~C$BYOe|! z?sO%)^t_7$cYA41BUpNAu(J2!MW#4{D!iVR2$v_jcNS?JpXH#L+OyV94<{PhwKXa{ zrUPcH_jK~wxj?ZioD;PD3g^wP2F1ixd>xzhDy5t6Q|!ft^IxJS zvmBpF!f~R?XwwzN3wDL|cA6{N_eAS*f6kp8@25W0;o$6k+ONBFZCGz6few{y$>wu+ zhHZCeD0inUz14U**+qG$r&dz-2Aq7b1V))WoC!`Y@AdSq&cvYG*3-$IwH+W1PO=L) zQA1(vxl4$zGd87=GgVWfi4(k>8MofaxuwNHQsTA+Sd`;WRJnNvt(VI6wNz0 znF?lno7QsW<25YWwuduxE>2o|z_7RC1gnwY?37nCWe=>AjCSjl3wNh+Ro3Pom#(#< zox?MbDen$=O<5k##H=poxFXnJ;GpDSDWXah*I`ULVbCKzswQb@J)S&gSQG9U8wkTF zjr`Y&2_NTYjZ)dMzB(6&m8@8mu`W*?(gqRd zb4L)lgG|{i5@|Vduv?iPn@mjARM-KiKrOPY& z40A)Zdg5o4A6@`dr`ydpPcb`OesbXMx2XHcy1UE=o4M8a|1ZVfch1kW)THY!ZP8=) zMMv%BP2ES+5JIkPjfZ&4Z2sC9?M81EMcX5OD`{kZg_4uIlD95dn|!@4F} zf--iz!um`&oS9LRXYlc7{LxOu?QY6;iL%5k{>~RnbqZ&2hpjLm8^b$;`PG&6s3ki8 zkT*EC_6SBHt%XaKtxI9BcDjQx2ineC#cU*Uy6VoJPuk64JA!i$?`0?q1f97s{5x!j zh#kUweqzieK4uH3kC~l#i)CIoE6JXD;_?pIfabE@BW>2IG20RSjx5AaL7g!gV{9im zjg^se8p{Tz40a{Ac5#T^iSIVYK*Z|cXODbklA~KBO7YiX6?3R)h8jv@J-PKJ275>u5w8CZXE z)%ue$3ft3C$L-_=CT5T6OtZMtn@mqqCmDO{&~Aq^`LYR?M`wC(hZ34CEwg7`(mnbW15T48mEm^)ZF_q@?d>R*|4@Y!d8QG0pXE{Y zp?3Idqdpn7kLtDAafO@bZBT5SG>-g`q;Qp)%~b4$7)J*!e)Sr&?z#+_q1meKT?}SD zPUk{YaPN2W4|N6Ok)E{vYPK^a@3C%&F`^sZXU*BK+ad9*RQCfw`pa%0_ud5!=#)6o zcB-vFSQ|1q3=V6Ju*7++(Sl*atmB5%2-DBba8kZl95*pu99o36S?f~UckK>8+HPxg z?5y(<+_VRs(ZQ$jzUw}#TC+-EPiU+-gcfC4x3F3FlHbcm-zB`GZ%{3aU3_y7;|(J zKWL-9=-A!(SnUszx*XthbwK+B#r~oU3&^^|^^SJm4EI*0#<1d7E7q)wE2$w2_>hb`C~Gbjad$ zi7NZ3bfVjC60~y87`~s-k8VX&WIHbWK+)L@xzXDCxsvVavNdy*K@(l$tqxfC8^KO_ zT{)0#g2_CN`lhjc(>@r|tk*U__;smQUb72F8lnYpBTI5yS1`>AH@cQq3Eu12aBzs0 zbUM#l)_Ijj9PzMob5fZ+X~EomS{L% zyP2Hvu`}5iM2>CR1(Q$*sQiM2#tA0bak^vX!n@AWqUzbBXAQW*xvtN8r@1|;tgyfH z$5>Wh_|*++L2mMkxkVRWyVDxyj;GU|qh5-oHL0HPGa$c%a(;J)T%Ub~C2bG*QoB~r z){St|sY|hR+F4(QxiUiwu_bY~>lPDRKVS{q)o1bDYTo`uQRD7fxeY zVPQJJAMUKD+xoUgtv9=!p3`PcHU7lYyQq~x=&jCK`N_g7a&)tu^)0i!D`OWD9e_I- z>knmSisQczxLck~+o^1tRFWChWU)NTG<}9`H`~=VGvMV-F0@(0-D%kD_#DO2+0MUd zw@r4lU)bgY!MYjeN<0&9HJ9@-56qu6IzW<+-1nF39NyL7+01{Y)WIB|x^8ge_Gj~J z&iTxTu9NS%)A_vLuhiVgl8s`maui}7-!pqznwd7XCnN0!-e0H8`GNhopJ|?6)>{8P zsmY21{U}N{=ND%>WLC~7PO%outGQi9WwE^Bs9-+k*INgd%>F-$&U1l-&A{(-4=mXh uEX);lkK)|bE7;<&toVKWfs{P4ZtjCmCr7tZwf_@e;L5`M%RDLP^?v}(LGXG2 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po new file mode 100644 index 0000000..adb852f --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ia/LC_MESSAGES/django.po @@ -0,0 +1,1289 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Martijn Dekker , 2012,2014,2016,2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-18 21:19+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Interlingua (http://www.transifex.com/django/django/language/" +"ia/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ia\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "afrikaans" + +msgid "Arabic" +msgstr "arabe" + +msgid "Algerian Arabic" +msgstr "Arabe algerian" + +msgid "Asturian" +msgstr "asturiano" + +msgid "Azerbaijani" +msgstr "azeri" + +msgid "Bulgarian" +msgstr "bulgaro" + +msgid "Belarusian" +msgstr "bielorusso" + +msgid "Bengali" +msgstr "bengali" + +msgid "Breton" +msgstr "breton" + +msgid "Bosnian" +msgstr "bosniaco" + +msgid "Catalan" +msgstr "catalano" + +msgid "Czech" +msgstr "tcheco" + +msgid "Welsh" +msgstr "gallese" + +msgid "Danish" +msgstr "danese" + +msgid "German" +msgstr "germano" + +msgid "Lower Sorbian" +msgstr "sorabo inferior" + +msgid "Greek" +msgstr "greco" + +msgid "English" +msgstr "anglese" + +msgid "Australian English" +msgstr "anglese australian" + +msgid "British English" +msgstr "anglese britannic" + +msgid "Esperanto" +msgstr "esperanto" + +msgid "Spanish" +msgstr "espaniol" + +msgid "Argentinian Spanish" +msgstr "espaniol argentin" + +msgid "Colombian Spanish" +msgstr "espaniol colombian" + +msgid "Mexican Spanish" +msgstr "espaniol mexican" + +msgid "Nicaraguan Spanish" +msgstr "espaniol nicaraguan" + +msgid "Venezuelan Spanish" +msgstr "espaniol venzuelan" + +msgid "Estonian" +msgstr "estoniano" + +msgid "Basque" +msgstr "basco" + +msgid "Persian" +msgstr "persiano" + +msgid "Finnish" +msgstr "finnese" + +msgid "French" +msgstr "francese" + +msgid "Frisian" +msgstr "frison" + +msgid "Irish" +msgstr "irlandese" + +msgid "Scottish Gaelic" +msgstr "gaelico scotese" + +msgid "Galician" +msgstr "galiciano" + +msgid "Hebrew" +msgstr "hebreo" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "croato" + +msgid "Upper Sorbian" +msgstr "sorabo superior" + +msgid "Hungarian" +msgstr "hungaro" + +msgid "Armenian" +msgstr "Armenio" + +msgid "Interlingua" +msgstr "interlingua" + +msgid "Indonesian" +msgstr "indonesiano" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "ido" + +msgid "Icelandic" +msgstr "islandese" + +msgid "Italian" +msgstr "italiano" + +msgid "Japanese" +msgstr "japonese" + +msgid "Georgian" +msgstr "georgiano" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "kazakh" + +msgid "Khmer" +msgstr "khmer" + +msgid "Kannada" +msgstr "kannada" + +msgid "Korean" +msgstr "coreano" + +msgid "Kyrgyz" +msgstr "Kyrgyz" + +msgid "Luxembourgish" +msgstr "luxemburgese" + +msgid "Lithuanian" +msgstr "lituano" + +msgid "Latvian" +msgstr "letton" + +msgid "Macedonian" +msgstr "macedone" + +msgid "Malayalam" +msgstr "malayalam" + +msgid "Mongolian" +msgstr "mongolico" + +msgid "Marathi" +msgstr "marathi" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "burmese" + +msgid "Norwegian Bokmål" +msgstr "norvegianio bokmål" + +msgid "Nepali" +msgstr "nepali" + +msgid "Dutch" +msgstr "hollandese" + +msgid "Norwegian Nynorsk" +msgstr "norvegiano, nynorsk" + +msgid "Ossetic" +msgstr "ossetico" + +msgid "Punjabi" +msgstr "punjabi" + +msgid "Polish" +msgstr "polonese" + +msgid "Portuguese" +msgstr "portugese" + +msgid "Brazilian Portuguese" +msgstr "portugese brasilian" + +msgid "Romanian" +msgstr "romaniano" + +msgid "Russian" +msgstr "russo" + +msgid "Slovak" +msgstr "slovaco" + +msgid "Slovenian" +msgstr "sloveno" + +msgid "Albanian" +msgstr "albanese" + +msgid "Serbian" +msgstr "serbo" + +msgid "Serbian Latin" +msgstr "serbo latin" + +msgid "Swedish" +msgstr "svedese" + +msgid "Swahili" +msgstr "swahili" + +msgid "Tamil" +msgstr "tamil" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "Tadzhik" + +msgid "Thai" +msgstr "thailandese" + +msgid "Turkmen" +msgstr "Turkmen" + +msgid "Turkish" +msgstr "turco" + +msgid "Tatar" +msgstr "tartaro" + +msgid "Udmurt" +msgstr "udmurto" + +msgid "Ukrainian" +msgstr "ukrainiano" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "Uzbek" + +msgid "Vietnamese" +msgstr "vietnamese" + +msgid "Simplified Chinese" +msgstr "chinese simplificate" + +msgid "Traditional Chinese" +msgstr "chinese traditional" + +msgid "Messages" +msgstr "Messages" + +msgid "Site Maps" +msgstr "Mappas de sito" + +msgid "Static Files" +msgstr "Files static" + +msgid "Syndication" +msgstr "Syndication" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Le numero de pagina non es un numero integre" + +msgid "That page number is less than 1" +msgstr "Le numero de pagina es minus de 1" + +msgid "That page contains no results" +msgstr "Le pagina non contine resultatos" + +msgid "Enter a valid value." +msgstr "Specifica un valor valide." + +msgid "Enter a valid URL." +msgstr "Specifica un URL valide." + +msgid "Enter a valid integer." +msgstr "Specifica un numero integre valide." + +msgid "Enter a valid email address." +msgstr "Specifica un adresse de e-mail valide." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Scribe un denotation (\"slug\") valide, consistente de litteras, numeros, " +"tractos de sublineamento o tractos de union." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Scribe un denotation (\"slug\") valide, consistente de litteras Unicode, " +"numeros, tractos de sublineamento o tractos de union." + +msgid "Enter a valid IPv4 address." +msgstr "Specifica un adresse IPv4 valide." + +msgid "Enter a valid IPv6 address." +msgstr "Specifica un adresse IPv6 valide." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Specifica un adresse IPv4 o IPv6 valide." + +msgid "Enter only digits separated by commas." +msgstr "Scribe solmente digitos separate per commas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Assecura te que iste valor es %(limit_value)s (illo es %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Assecura te que iste valor es inferior o equal a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Assecura te que iste valor es superior o equal a %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assecura te que iste valor ha al minus %(limit_value)d character (illo ha " +"%(show_value)d)." +msgstr[1] "" +"Assecura te que iste valor ha al minus %(limit_value)d characteres (illo ha " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assecura te que iste valor ha al plus %(limit_value)d character (illo ha " +"%(show_value)d)." +msgstr[1] "" +"Assecura te que iste valor ha al plus %(limit_value)d characteres (illo ha " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Specifica un numero." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Assecura te que il non ha plus de %(max)s digito in total." +msgstr[1] "Assecura te que il non ha plus de %(max)s digitos in total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Assecura te que il non ha plus de %(max)s cifra post le comma decimal." +msgstr[1] "" +"Assecura te que il non ha plus de %(max)s cifras post le comma decimal." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Assecura te que il non ha plus de %(max)s cifra ante le comma decimal." +msgstr[1] "" +"Assecura te que il non ha plus de %(max)s cifras ante le comma decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Le extension de nomine de file “%(extension)s” non es permittite. Le " +"extensiones permittite es: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Characteres nulle non es permittite." + +msgid "and" +msgstr "e" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Jam existe %(model_name)s con iste %(field_labels)s." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Le valor %(value)r non es un option valide." + +msgid "This field cannot be null." +msgstr "Iste campo non pote esser nulle." + +msgid "This field cannot be blank." +msgstr "Iste campo non pote esser vacue." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s con iste %(field_label)s jam existe." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s debe esser unic pro %(lookup_type)s de %(date_field_label)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo de typo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Le valor “%(value)s” debe esser o True/Ver o False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Le valor “%(value)s” debe esser True/Ver, False o None/Necun." + +msgid "Boolean (Either True or False)" +msgstr "Booleano (ver o false)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Catena (longitude maxime: %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Numeros integre separate per commas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Le valor “%(value)s” ha un formato de data invalide. Debe esser in formato " +"AAAA-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Le valor “%(value)s” ha le formato correcte (AAAA-MM-DD) ma es un data " +"invalide." + +msgid "Date (without time)" +msgstr "Data (sin hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Le valor “%(value)s” es in un formato invalide. Debe esser in formato AAAA-" +"MM-DD HH:MM[:ss[.uuuuuu]][FH]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Le valor “%(value)s” es in le formato correcte (YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][FH]) ma es un data/hora invalide." + +msgid "Date (with time)" +msgstr "Data (con hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Le valor “%(value)s” debe esser un numero decimal." + +msgid "Decimal number" +msgstr "Numero decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Le valor “%(value)s” es in un formato invalide. Debe esser in formato [DD] " +"[HH:[MM:]]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Duration" + +msgid "Email address" +msgstr "Adresse de e-mail" + +msgid "File path" +msgstr "Cammino de file" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Le valor “%(value)s” debe esser un numero a comma flottante." + +msgid "Floating point number" +msgstr "Numero a comma flottante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Le valor “%(value)s” debe esser un numero integre." + +msgid "Integer" +msgstr "Numero integre" + +msgid "Big (8 byte) integer" +msgstr "Numero integre grande (8 bytes)" + +msgid "Small integer" +msgstr "Parve numero integre" + +msgid "IPv4 address" +msgstr "Adresse IPv4" + +msgid "IP address" +msgstr "Adresse IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Le valor “%(value)s” debe esser None/Nulle, True/Ver o False." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (ver, false o nulle)" + +msgid "Positive big integer" +msgstr "Grande numero integre positive" + +msgid "Positive integer" +msgstr "Numero integre positive" + +msgid "Positive small integer" +msgstr "Parve numero integre positive" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Denotation (longitude maxime: %(max_length)s)" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Le valor “%(value)s” es in un formato invalide. Debe esser in formato HH:MM[:" +"ss[.uuuuuu]] ." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Le valor “%(value)s” es in le formato correcte (HH:MM[:ss[.uuuuuu]]) ma es " +"un hora invalide." + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Datos binari crude" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” non es un UUID valide." + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "File" + +msgid "Image" +msgstr "Imagine" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Le instantia de %(model)s con %(field)s %(value)r non existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Clave estranier (typo determinate per le campo associate)" + +msgid "One-to-one relationship" +msgstr "Relation un a un" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relation %(from)s a %(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relationes %(from)s a %(to)s" + +msgid "Many-to-many relationship" +msgstr "Relation multes a multes" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Iste campo es obligatori." + +msgid "Enter a whole number." +msgstr "Specifica un numero integre." + +msgid "Enter a valid date." +msgstr "Specifica un data valide." + +msgid "Enter a valid time." +msgstr "Specifica un hora valide." + +msgid "Enter a valid date/time." +msgstr "Specifica un data e hora valide." + +msgid "Enter a valid duration." +msgstr "Specifica un duration valide." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Nulle file esseva submittite. Verifica le typo de codification in le " +"formulario." + +msgid "No file was submitted." +msgstr "Nulle file esseva submittite." + +msgid "The submitted file is empty." +msgstr "Le file submittite es vacue." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Assecura te que iste valor ha al plus %(max)d character (illo ha %(length)d)." +msgstr[1] "" +"Assecura te que iste valor ha al plus %(max)d characteres (illo ha " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Per favor o submitte un file o marca le quadrato \"rader\", non ambes." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Per favor incarga un imagine valide. Le file que tu incargava o non esseva " +"un imagine o esseva un imagine corrumpite." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Selige un option valide. %(value)s non es inter le optiones disponibile." + +msgid "Enter a list of values." +msgstr "Scribe un lista de valores." + +msgid "Enter a complete value." +msgstr "Specifica un valor complete." + +msgid "Enter a valid UUID." +msgstr "Specifica un UUID valide." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo celate %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Ordine" + +msgid "Delete" +msgstr "Deler" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Per favor corrige le datos duplicate pro %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Per favor corrige le datos duplicate pro %(field)s, que debe esser unic." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Per favor corrige le datos duplicate pro %(field_name)s, que debe esser unic " +"pro le %(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Per favor corrige le sequente valores duplicate." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Per favor selige un option valide. Iste option non es inter le optiones " +"disponibile." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Rader" + +msgid "Currently" +msgstr "Actualmente" + +msgid "Change" +msgstr "Cambiar" + +msgid "Unknown" +msgstr "Incognite" + +msgid "Yes" +msgstr "Si" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "si,no,forsan" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "pm." + +msgid "a.m." +msgstr "am." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "medienocte" + +msgid "noon" +msgstr "mediedie" + +msgid "Monday" +msgstr "lunedi" + +msgid "Tuesday" +msgstr "martedi" + +msgid "Wednesday" +msgstr "mercuridi" + +msgid "Thursday" +msgstr "jovedi" + +msgid "Friday" +msgstr "venerdi" + +msgid "Saturday" +msgstr "sabbato" + +msgid "Sunday" +msgstr "dominica" + +msgid "Mon" +msgstr "lun" + +msgid "Tue" +msgstr "mar" + +msgid "Wed" +msgstr "mer" + +msgid "Thu" +msgstr "jov" + +msgid "Fri" +msgstr "ven" + +msgid "Sat" +msgstr "sab" + +msgid "Sun" +msgstr "dom" + +msgid "January" +msgstr "januario" + +msgid "February" +msgstr "februario" + +msgid "March" +msgstr "martio" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "maio" + +msgid "June" +msgstr "junio" + +msgid "July" +msgstr "julio" + +msgid "August" +msgstr "augusto" + +msgid "September" +msgstr "septembre" + +msgid "October" +msgstr "octobre" + +msgid "November" +msgstr "novembre" + +msgid "December" +msgstr "decembre" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mar." + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maio" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junio" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Januario" + +msgctxt "alt. month" +msgid "February" +msgstr "Februario" + +msgctxt "alt. month" +msgid "March" +msgstr "Martio" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Maio" + +msgctxt "alt. month" +msgid "June" +msgstr "Junio" + +msgctxt "alt. month" +msgid "July" +msgstr "Julio" + +msgctxt "alt. month" +msgid "August" +msgstr "Augusto" + +msgctxt "alt. month" +msgid "September" +msgstr "Septembre" + +msgctxt "alt. month" +msgid "October" +msgstr "Octobre" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembre" + +msgctxt "alt. month" +msgid "December" +msgstr "Decembre" + +msgid "This is not a valid IPv6 address." +msgstr "Isto non es un adresse IPv6 valide." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "Prohibite" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verification CSRF fallite. Requesta abortate." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Tu vide iste message perque iste sito require un cookie CSRF durante le " +"submission de formularios. Iste cookie es requirite pro motivos de " +"securitate, pro assecurar que tu navigator non es sequestrate per tertie " +"personas." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Plus information es disponibile con DEBUG=True." + +msgid "No year specified" +msgstr "Nulle anno specificate" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Nulle mense specificate" + +msgid "No day specified" +msgstr "Nulle die specificate" + +msgid "No week specified" +msgstr "Nulle septimana specificate" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Il non ha %(verbose_name_plural)s disponibile" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"In le futuro, %(verbose_name_plural)s non essera disponibile perque " +"%(class_name)s.allow_future es False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Nulle %(verbose_name)s trovate que corresponde al consulta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Pagina invalide (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Le indices de directorio non es permittite hic." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indice de %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..b1815ce52d03f19ea62f39d09da7825d09332bc1 GIT binary patch literal 27405 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, 2017 +# Bayu Satiyo , 2024 +# Claude Paroz , 2018 +# Fery Setiawan , 2015-2019,2021-2023 +# Jannis Leidel , 2011 +# M Asep Indrayana , 2015 +# oon arfiandwi (OonID) , 2016,2020 +# rodin , 2011 +# rodin , 2013-2016 +# sag​e , 2018-2019 +# Sutrisno Efendi , 2015,2017 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2013-04-25 06:49+0000\n" +"Last-Translator: Bayu Satiyo , 2024\n" +"Language-Team: Indonesian (http://app.transifex.com/django/django/language/" +"id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arab" + +msgid "Algerian Arabic" +msgstr "Arab Aljazair" + +msgid "Asturian" +msgstr "Asturia" + +msgid "Azerbaijani" +msgstr "Azerbaijani" + +msgid "Bulgarian" +msgstr "Bulgaria" + +msgid "Belarusian" +msgstr "Belarusia" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Breton" + +msgid "Bosnian" +msgstr "Bosnia" + +msgid "Catalan" +msgstr "Catalan" + +msgid "Central Kurdish (Sorani)" +msgstr "Kurdi Tengah (Sorani)" + +msgid "Czech" +msgstr "Ceska" + +msgid "Welsh" +msgstr "Wales" + +msgid "Danish" +msgstr "Denmark" + +msgid "German" +msgstr "Jerman" + +msgid "Lower Sorbian" +msgstr "Sorbian Bawah" + +msgid "Greek" +msgstr "Yunani" + +msgid "English" +msgstr "Inggris" + +msgid "Australian English" +msgstr "Inggris Australia" + +msgid "British English" +msgstr "Inggris Britania" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spanyol" + +msgid "Argentinian Spanish" +msgstr "Spanyol Argentina" + +msgid "Colombian Spanish" +msgstr "Spanyol Kolombia" + +msgid "Mexican Spanish" +msgstr "Spanyol Meksiko" + +msgid "Nicaraguan Spanish" +msgstr "Spanyol Nikaragua" + +msgid "Venezuelan Spanish" +msgstr "Spanyol Venezuela" + +msgid "Estonian" +msgstr "Estonia" + +msgid "Basque" +msgstr "Basque" + +msgid "Persian" +msgstr "Persia" + +msgid "Finnish" +msgstr "Finlandia" + +msgid "French" +msgstr "Perancis" + +msgid "Frisian" +msgstr "Frisia" + +msgid "Irish" +msgstr "Irlandia" + +msgid "Scottish Gaelic" +msgstr "Skolandia Gaelik" + +msgid "Galician" +msgstr "Galicia" + +msgid "Hebrew" +msgstr "Ibrani" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroasia" + +msgid "Upper Sorbian" +msgstr "Sorbian Atas" + +msgid "Hungarian" +msgstr "Hungaria" + +msgid "Armenian" +msgstr "Armenia" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesia" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandia" + +msgid "Italian" +msgstr "Italia" + +msgid "Japanese" +msgstr "Jepang" + +msgid "Georgian" +msgstr "Georgia" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Kazakhstan" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Korea" + +msgid "Kyrgyz" +msgstr "Kirgis" + +msgid "Luxembourgish" +msgstr "Luksemburg" + +msgid "Lithuanian" +msgstr "Lithuania" + +msgid "Latvian" +msgstr "Latvia" + +msgid "Macedonian" +msgstr "Makedonia" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolia" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malaysia" + +msgid "Burmese" +msgstr "Burma" + +msgid "Norwegian Bokmål" +msgstr "Norwegia Bokmål" + +msgid "Nepali" +msgstr "Nepal" + +msgid "Dutch" +msgstr "Belanda" + +msgid "Norwegian Nynorsk" +msgstr "Norwegia Nynorsk" + +msgid "Ossetic" +msgstr "Ossetic" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polandia" + +msgid "Portuguese" +msgstr "Portugis" + +msgid "Brazilian Portuguese" +msgstr "Portugis Brazil" + +msgid "Romanian" +msgstr "Romania" + +msgid "Russian" +msgstr "Rusia" + +msgid "Slovak" +msgstr "Slovakia" + +msgid "Slovenian" +msgstr "Slovenia" + +msgid "Albanian" +msgstr "Albania" + +msgid "Serbian" +msgstr "Serbia" + +msgid "Serbian Latin" +msgstr "Serbia Latin" + +msgid "Swedish" +msgstr "Swedia" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tajik" + +msgid "Thai" +msgstr "Thailand" + +msgid "Turkmen" +msgstr "Turkmenistan" + +msgid "Turkish" +msgstr "Turki" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Uyghur" + +msgid "Ukrainian" +msgstr "Ukrainia" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbek" + +msgid "Vietnamese" +msgstr "Vietnam" + +msgid "Simplified Chinese" +msgstr "Tiongkok Sederhana" + +msgid "Traditional Chinese" +msgstr "Tiongkok Tradisionil" + +msgid "Messages" +msgstr "Pesan" + +msgid "Site Maps" +msgstr "Peta Situs" + +msgid "Static Files" +msgstr "Berkas Statis" + +msgid "Syndication" +msgstr "Sindikasi" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Nomor halaman itu bukan sebuah integer" + +msgid "That page number is less than 1" +msgstr "Nomor halaman itu kurang dari 1" + +msgid "That page contains no results" +msgstr "Tidak ada hasil untuk halaman tersebut" + +msgid "Enter a valid value." +msgstr "Masukkan nilai yang valid." + +msgid "Enter a valid domain name." +msgstr "" + +msgid "Enter a valid URL." +msgstr "Masukkan URL yang valid." + +msgid "Enter a valid integer." +msgstr "Masukan sebuah bilangan bulat yang benar" + +msgid "Enter a valid email address." +msgstr "Masukkan alamat email yang valid." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Masukkan “slug” valid yang terdiri dari huruf, angka, garis bawah, atau " +"tanda hubung." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Masukkan sebuah “slug” valid yang terdiri dari huruf, angka, garis bawah, " +"atau penghubung Unicode." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "" + +msgid "IPv4" +msgstr "" + +msgid "IPv6" +msgstr "" + +msgid "IPv4 or IPv6" +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "Hanya masukkan angka yang dipisahkan dengan koma." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Pastikan nilai ini %(limit_value)s (saat ini %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Pastikan nilai ini lebih kecil dari atau sama dengan %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Pastikan nilai ini lebih besar dari atau sama dengan %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Pastikan nilai ini adalah kelipatan dari ukuran langkah %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Pastikan nilai ini merupakan kelipatan ukuran langkah %(limit_value)s, " +"dimulai dari %(offset)s, misalnya %(offset)s, %(valid_value1)s, " +"%(valid_value2)s, dan seterusnya." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Pastikan nilai ini mengandung paling sedikit %(limit_value)d karakter " +"(sekarang %(show_value)d karakter)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Pastikan nilai ini mengandung paling banyak %(limit_value)d karakter " +"(sekarang %(show_value)d karakter)." + +msgid "Enter a number." +msgstr "Masukkan sebuah bilangan." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Pastikan jumlah angka pada bilangan tidak melebihi %(max)s angka." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Pastikan bilangan tidak memiliki lebih dari %(max)s angka desimal." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Pastikan jumlah angka sebelum desimal pada bilangan tidak memiliki lebih " +"dari %(max)s angka." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Ekstensi berkas “%(extension)s” tidak diizinkan. Ekstensi diizinkan adalah: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Karakter null tidak diizinkan." + +msgid "and" +msgstr "dan" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s dengan %(field_labels)s ini tidak ada." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Batasan “%(name)s” dilanggar." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Nilai %(value)r bukan pilihan yang valid." + +msgid "This field cannot be null." +msgstr "Field ini tidak boleh null." + +msgid "This field cannot be blank." +msgstr "Field ini tidak boleh kosong." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s dengan %(field_label)s telah ada." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s haruslah unik untuk %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Field dengan tipe: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Nilai “%(value)s” harus berupa True atau False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Nilai “%(value)s” harus berupa True, False, atau None." + +msgid "Boolean (Either True or False)" +msgstr "Nilai Boolean (Salah satu dari True atau False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (maksimum %(max_length)s)" + +msgid "String (unlimited)" +msgstr "String (tidak terbatas)" + +msgid "Comma-separated integers" +msgstr "Bilangan asli yang dipisahkan dengan koma" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Nilai “%(value)s” mempunyai format tanggal yang tidak valid. Tanggal harus " +"dalam format YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Nilai “%(value)s” memiliki format yang benar (YYYY-MM-DD), tetapi tanggalnya " +"tidak valid." + +msgid "Date (without time)" +msgstr "Tanggal (tanpa waktu)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Nilai “%(value)s” memiliki format yang tidak valid. Tanggal dan waktu harus " +"dalam format YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Nilai “%(value)s” memiliki format yang benar (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]), tetapi tanggal/waktunya tidak valid." + +msgid "Date (with time)" +msgstr "Tanggal (dengan waktu)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Nilai “%(value)s” harus berupa bilangan desimal." + +msgid "Decimal number" +msgstr "Bilangan desimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Nilai “%(value)s” mempunyai format yang tidak valid. Waktu harus dalam " +"format [DD] [[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Durasi" + +msgid "Email address" +msgstr "Alamat email" + +msgid "File path" +msgstr "Lokasi berkas" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Nilai “%(value)s” harus berupa bilangan real." + +msgid "Floating point number" +msgstr "Bilangan 'floating point'" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Nilai “%(value)s” harus berupa integer." + +msgid "Integer" +msgstr "Bilangan Asli" + +msgid "Big (8 byte) integer" +msgstr "Bilangan asli raksasa (8 byte)" + +msgid "Small integer" +msgstr "Bilangan asli kecil" + +msgid "IPv4 address" +msgstr "Alamat IPv4" + +msgid "IP address" +msgstr "Alamat IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Nilai “%(value)s” harus berupa None, True, atau False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (Salah satu dari True, False, atau None)" + +msgid "Positive big integer" +msgstr "Integer besar positif" + +msgid "Positive integer" +msgstr "Bilangan asli positif" + +msgid "Positive small integer" +msgstr "Bilangan asli kecil positif" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (hingga %(max_length)s karakter)" + +msgid "Text" +msgstr "Teks" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Nilai “%(value)s” mempunyai format yang tidak valid. Waktu harus dalam " +"format HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Nilai “%(value)s” mempunyai format yang benar (HH:MM[:ss[.uuuuuu]]), tetapi " +"nilai waktunya tidak valid." + +msgid "Time" +msgstr "Waktu" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Data biner mentah" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” bukan UUID yang valid." + +msgid "Universally unique identifier" +msgstr "Pengenal unik secara universal" + +msgid "File" +msgstr "Berkas" + +msgid "Image" +msgstr "Gambar" + +msgid "A JSON object" +msgstr "Objek JSON" + +msgid "Value must be valid JSON." +msgstr "Nilai harus JSON yang valid." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Salinan %(model)s dengan %(field)s %(value)r tidak ada." + +msgid "Foreign Key (type determined by related field)" +msgstr "Kunci Asing (tipe tergantung dari bidang yang berkaitan)" + +msgid "One-to-one relationship" +msgstr "Hubungan satu-ke-satu" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Hubungan %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Hubungan %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Hubungan banyak-ke-banyak" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Bidang ini tidak boleh kosong." + +msgid "Enter a whole number." +msgstr "Masukkan keseluruhan angka bilangan." + +msgid "Enter a valid date." +msgstr "Masukkan tanggal yang valid." + +msgid "Enter a valid time." +msgstr "Masukkan waktu yang valid." + +msgid "Enter a valid date/time." +msgstr "Masukkan tanggal/waktu yang valid." + +msgid "Enter a valid duration." +msgstr "Masukan durasi waktu yang benar." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Jumlah hari harus di antara {min_days} dan {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Tidak ada berkas yang dikirimkan. Periksa tipe pengaksaraan formulir." + +msgid "No file was submitted." +msgstr "Tidak ada berkas yang dikirimkan." + +msgid "The submitted file is empty." +msgstr "Berkas yang dikirimkan kosong." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Pastikan nama berkas ini mengandung paling banyak %(max)d karakter (sekarang " +"%(length)d karakter)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Pilih antara mengirimkan berkas atau menghapus tanda centang pada kotak " +"centang" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Unggah gambar yang valid. Berkas yang Anda unggah bukan merupakan berkas " +"gambar atau gambarnya rusak." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Masukkan pilihan yang valid. %(value)s bukan salah satu dari pilihan yang " +"tersedia." + +msgid "Enter a list of values." +msgstr "Masukkan beberapa nilai." + +msgid "Enter a complete value." +msgstr "Masukkan nilai yang komplet." + +msgid "Enter a valid UUID." +msgstr "Masukan UUID yang benar." + +msgid "Enter a valid JSON." +msgstr "Masukkan JSON yang valid." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Bidang tersembunyi %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Data ManagementForm telah hilang atau telah dirusak. Bidang yang hilang: " +"%(field_names)s. Anda mungkin butuh memberkaskan laporan kesalahan jika " +"masalah masih ada." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Harap ajukan paling banyak %(num)d formulir." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Harap ajukan setidaknya %(num)d formulir." + +msgid "Order" +msgstr "Urutan" + +msgid "Delete" +msgstr "Hapus" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Perbaiki data ganda untuk %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Perbaiki data ganda untuk %(field)s yang nilainya harus unik." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Perbaiki data ganda untuk %(field_name)s yang nilainya harus unik untuk " +"pencarian %(lookup)s pada %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Perbaiki nilai ganda di bawah ini." + +msgid "The inline value did not match the parent instance." +msgstr "Nilai sebaris tidak cocok dengan instance induk." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Masukkan pilihan yang valid. Pilihan tersebut bukan salah satu dari pilihan " +"yang tersedia." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” bukan nilai yang valid." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s tidak dapat diterjemahkan dalam zona waktu " +"%(current_timezone)s; mungkin nilainya ambigu atau tidak ada." + +msgid "Clear" +msgstr "Hapus" + +msgid "Currently" +msgstr "Saat ini" + +msgid "Change" +msgstr "Ubah" + +msgid "Unknown" +msgstr "Tidak diketahui" + +msgid "Yes" +msgstr "Ya" + +msgid "No" +msgstr "Tidak" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ya,tidak,mungkin" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bita" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m" + +msgid "a.m." +msgstr "a.m" + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "tengah malam" + +msgid "noon" +msgstr "siang" + +msgid "Monday" +msgstr "Senin" + +msgid "Tuesday" +msgstr "Selasa" + +msgid "Wednesday" +msgstr "Rabu" + +msgid "Thursday" +msgstr "Kamis" + +msgid "Friday" +msgstr "Jumat" + +msgid "Saturday" +msgstr "Sabtu" + +msgid "Sunday" +msgstr "Minggu" + +msgid "Mon" +msgstr "Sen" + +msgid "Tue" +msgstr "Sel" + +msgid "Wed" +msgstr "Rab" + +msgid "Thu" +msgstr "Kam" + +msgid "Fri" +msgstr "Jum" + +msgid "Sat" +msgstr "Sab" + +msgid "Sun" +msgstr "Min" + +msgid "January" +msgstr "Januari" + +msgid "February" +msgstr "Februari" + +msgid "March" +msgstr "Maret" + +msgid "April" +msgstr "April" + +msgid "May" +msgstr "Mei" + +msgid "June" +msgstr "Juni" + +msgid "July" +msgstr "Juli" + +msgid "August" +msgstr "Agustus" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "Oktober" + +msgid "November" +msgstr "November" + +msgid "December" +msgstr "Desember" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mei" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "agu" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "des" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Maret" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mei" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Juni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Juli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Agu" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sep." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Des." + +msgctxt "alt. month" +msgid "January" +msgstr "Januari" + +msgctxt "alt. month" +msgid "February" +msgstr "Februari" + +msgctxt "alt. month" +msgid "March" +msgstr "Maret" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Mei" + +msgctxt "alt. month" +msgid "June" +msgstr "Juni" + +msgctxt "alt. month" +msgid "July" +msgstr "Juli" + +msgctxt "alt. month" +msgid "August" +msgstr "Agustus" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "Desember" + +msgid "This is not a valid IPv6 address." +msgstr "Ini bukan alamat IPv6 yang valid." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "atau" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d tahun" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d bulan" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d minggu" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d hari" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d jam" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d menit" + +msgid "Forbidden" +msgstr "Terlarang" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verifikasi CSRF gagal, Permintaan dibatalkan." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Anda melihat pesan ini karena jaringan HTTPS ini membutuhkan “Referer " +"header” untuk dikirim oleh peramban jaringan anda, tetapi tidak ada yg " +"dikirim. Kepala ini diwajibkan untuk alasan keamanan, untuk memastikan bahwa " +"peramban anda tidak sedang dibajak oleh pihak ketiga." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Jika Anda menonaktifkan header 'Referrer' pada konfigurasi peramban Anda, " +"mohon aktfikan kembali, setidaknya untuk situs ini, untuk koneksi HTTPS, " +"atau untuk request 'same-origin'." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Jika Anda menggunakan tag " +"atau menyertakan bagian kepala 'Referrer-Policy: no-referrer', harap hapus " +"hal tersebut. Perlindungan CSRF membutuhkan bagian kepala 'Referrer' untuk " +"melakukan pemeriksaan pengarahan ketat. Jika Anda khawatir mengenai privasi, " +"gunakan cara lain seperti untuk tautan ke situs " +"pihak ketiga." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Anda melihat pesan ini karena situs ini membutuhkan sebuah kuki CSRF ketika " +"mengirimkan formulir. Kuki ini dibutuhkan untuk alasan keamanan, untuk " +"memastikan bahwa peramban Anda tidak sedang dibajak oleh pihak ketiga." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Jika Anda telah mengatur peramban Anda untuk menonaktifkan kuki, maka " +"aktifkanlah kembali, setidaknya untuk website ini, atau untuk request 'same-" +"origin'." + +msgid "More information is available with DEBUG=True." +msgstr "Informasi lebih lanjut tersedia dengan DEBUG=True" + +msgid "No year specified" +msgstr "Tidak ada tahun dipilih" + +msgid "Date out of range" +msgstr "Tanggal di luar kisaran" + +msgid "No month specified" +msgstr "Tidak ada bulan dipilih" + +msgid "No day specified" +msgstr "Tidak ada hari dipilih" + +msgid "No week specified" +msgstr "Tidak ada minggu dipilih" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Tidak ada %(verbose_name_plural)s tersedia" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s di masa depan tidak tersedia karena %(class_name)s." +"allow_future bernilai False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Nilai tanggal tidak valid “%(datestr)s” untuk format “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Tidak ada %(verbose_name)s yang cocok dengan kueri" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Laman bukan yang “terakhir” dan juga tidak dapat dikonversikan ke sebuah " +"integer." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Laman tidak valid (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Daftar kosong dan '%(class_name)s.allow_empty' bernilai False." + +msgid "Directory indexes are not allowed here." +msgstr "Indeks direktori tidak diizinkan di sini." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” tidak ada" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Daftar isi %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Selamat! Instalasi berjalan lancar!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Lihat catatan rilis untuk Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Anda sedang melihat halaman ini karena DEBUG=True berada di berkas pengaturan Anda dan Anda " +"belum mengonfigurasi URL apa pun." + +msgid "Django Documentation" +msgstr "Dokumentasi Django" + +msgid "Topics, references, & how-to’s" +msgstr "Topik, referensi, & cara pemakaian" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: Sebuah Aplikasi Jajak Pendapat" + +msgid "Get started with Django" +msgstr "Memulai dengan Django" + +msgid "Django Community" +msgstr "Komunitas Django" + +msgid "Connect, get help, or contribute" +msgstr "Terhubung, minta bantuan, atau berkontribusi" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/id/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/id/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/id/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..88f58177679d9e4bdf2a1c1381eba0997259b6e4 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF;pr1hS$lVZIChox>$Ef;E{$hYH6AH49uHPE z{*MY{jh069(s)Kya>Dyk&tV2}xYA(fz06+=@LR9jMH zeSR`r7iuDyCo>cokVMuba`&OPO=8RU;>3yUowE;W`Q!S@ir0xZesEgjt7sQGNz6STUg%F@1owe=m;Kr?g91sCc=e%4qD$c9Uz#EZBu?Z1043P($p8QV literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/id/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/id/formats.py new file mode 100644 index 0000000..91a2559 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/id/formats.py @@ -0,0 +1,49 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j N Y" +DATETIME_FORMAT = "j N Y, G.i" +TIME_FORMAT = "G.i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d-m-Y" +SHORT_DATETIME_FORMAT = "d-m-Y G.i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d-%m-%Y", # '25-10-2009' + "%d/%m/%Y", # '25/10/2009' + "%d-%m-%y", # '25-10-09' + "%d/%m/%y", # '25/10/09' + "%d %b %Y", # '25 Oct 2006', + "%d %B %Y", # '25 October 2006' + "%m/%d/%y", # '10/25/06' + "%m/%d/%Y", # '10/25/2009' +] + +TIME_INPUT_FORMATS = [ + "%H.%M.%S", # '14.30.59' + "%H.%M", # '14.30' +] + +DATETIME_INPUT_FORMATS = [ + "%d-%m-%Y %H.%M.%S", # '25-10-2009 14.30.59' + "%d-%m-%Y %H.%M.%S.%f", # '25-10-2009 14.30.59.000200' + "%d-%m-%Y %H.%M", # '25-10-2009 14.30' + "%d-%m-%y %H.%M.%S", # '25-10-09' 14.30.59' + "%d-%m-%y %H.%M.%S.%f", # '25-10-09' 14.30.59.000200' + "%d-%m-%y %H.%M", # '25-10-09' 14.30' + "%m/%d/%y %H.%M.%S", # '10/25/06 14.30.59' + "%m/%d/%y %H.%M.%S.%f", # '10/25/06 14.30.59.000200' + "%m/%d/%y %H.%M", # '10/25/06 14.30' + "%m/%d/%Y %H.%M.%S", # '25/10/2009 14.30.59' + "%m/%d/%Y %H.%M.%S.%f", # '25/10/2009 14.30.59.000200' + "%m/%d/%Y %H.%M", # '25/10/2009 14.30' +] + +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ig/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..8e689c80cf8f0947abfe09fbf7821d04a02ffa11 GIT binary patch literal 27188 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, 2020 +# Mariusz Felisiak , 2020 +# Okpala Olisa , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-30 12:26+0000\n" +"Last-Translator: Mariusz Felisiak \n" +"Language-Team: Igbo (http://www.transifex.com/django/django/language/ig/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ig\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabici" + +msgid "Algerian Arabic" +msgstr "Arabici ndị Algeria " + +msgid "Asturian" +msgstr "Asturian" + +msgid "Azerbaijani" +msgstr "Azerbaijani" + +msgid "Bulgarian" +msgstr "Bulgaria" + +msgid "Belarusian" +msgstr "Belarusia" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Breton" + +msgid "Bosnian" +msgstr "Bosnian" + +msgid "Catalan" +msgstr "Catalan" + +msgid "Czech" +msgstr "Czech" + +msgid "Welsh" +msgstr "Welsh" + +msgid "Danish" +msgstr "Danishi" + +msgid "German" +msgstr "Germani" + +msgid "Lower Sorbian" +msgstr "Sorbian nke Ala" + +msgid "Greek" +msgstr "Greeki" + +msgid "English" +msgstr "Bekee" + +msgid "Australian English" +msgstr "Bekee ndị Australia" + +msgid "British English" +msgstr "Bekee ndị Britain" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spanishi" + +msgid "Argentinian Spanish" +msgstr "Spanishi ndị Argentina" + +msgid "Colombian Spanish" +msgstr "Spanishi ndị Colombia " + +msgid "Mexican Spanish" +msgstr "Spanishi ndị Mexico " + +msgid "Nicaraguan Spanish" +msgstr "Spanishi ndị Nicaraguan" + +msgid "Venezuelan Spanish" +msgstr "Spanishi ndị Venezuela " + +msgid "Estonian" +msgstr "Estonian" + +msgid "Basque" +msgstr "Basque" + +msgid "Persian" +msgstr "Persian" + +msgid "Finnish" +msgstr "Finnishi" + +msgid "French" +msgstr "Fụrenchị" + +msgid "Frisian" +msgstr "Frisian" + +msgid "Irish" +msgstr "Irishi" + +msgid "Scottish Gaelic" +msgstr "Scottish Gaelici" + +msgid "Galician" +msgstr "Galiciani" + +msgid "Hebrew" +msgstr "Hibru" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croatian" + +msgid "Upper Sorbian" +msgstr "Sorbian nke Elu" + +msgid "Hungarian" +msgstr "Hungarian" + +msgid "Armenian" +msgstr "Armeniani" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesian" + +msgid "Igbo" +msgstr "ìgbò" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Icelandici" + +msgid "Italian" +msgstr "Italian" + +msgid "Japanese" +msgstr "Japanisi " + +msgid "Georgian" +msgstr "Georgian" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Kazakh" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Korean" + +msgid "Kyrgyz" +msgstr "Kyrgyz" + +msgid "Luxembourgish" +msgstr "Luxembourgish" + +msgid "Lithuanian" +msgstr "Lithuanian" + +msgid "Latvian" +msgstr "Latvian" + +msgid "Macedonian" +msgstr "Macedonian" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolian" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Burmese" +msgstr "Burmese" + +msgid "Norwegian Bokmål" +msgstr "Bokmål ndị Norway" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Dutch" + +msgid "Norwegian Nynorsk" +msgstr "Nynorsk ndị Norway " + +msgid "Ossetic" +msgstr "Ossetici" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polishi" + +msgid "Portuguese" +msgstr "Portuguisi" + +msgid "Brazilian Portuguese" +msgstr "Portuguese ndị Brazil" + +msgid "Romanian" +msgstr "Romaniani" + +msgid "Russian" +msgstr "Russiani" + +msgid "Slovak" +msgstr "Slovaki" + +msgid "Slovenian" +msgstr "Sloveniani" + +msgid "Albanian" +msgstr "Albaniani" + +msgid "Serbian" +msgstr "Serbiani" + +msgid "Serbian Latin" +msgstr "Serbian Latini" + +msgid "Swedish" +msgstr "Swedishi" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tajik" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "Turkmen" + +msgid "Turkish" +msgstr "Turkishi" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "Ukrainiani" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbeki" + +msgid "Vietnamese" +msgstr "Vietnamesi" + +msgid "Simplified Chinese" +msgstr "Chinisi Ndị Mfe" + +msgid "Traditional Chinese" +msgstr "Odịnala Chinisi" + +msgid "Messages" +msgstr "Ozi" + +msgid "Site Maps" +msgstr "Maapụ Saịtị" + +msgid "Static Files" +msgstr "Faịlụ Nkwụsiri ike" + +msgid "Syndication" +msgstr "Nyefee Njikwa" + +msgid "That page number is not an integer" +msgstr "Nọmba peeji ahụ abụghị onu ogugu" + +msgid "That page number is less than 1" +msgstr "Nọmba peeji ahụ erughị 1" + +msgid "That page contains no results" +msgstr "Peeji ahụ enweghị nsonaazụ ọ bụla" + +msgid "Enter a valid value." +msgstr "Tinye uru zuru oke." + +msgid "Enter a valid URL." +msgstr "Tinye URL zuru oke." + +msgid "Enter a valid integer." +msgstr "Tinye nọmba zuru oke." + +msgid "Enter a valid email address." +msgstr "Tinye adreesị ozi ịntanetị n'zuru oke." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Tinye “slug” zuru oke nke mejupụtara mkpụrụedemede, ọnụọgụ, underscores ma ọ " +"bụ hyphens." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Tinye “slug” zuru oke nke mejupụtara Unicode mkpụrụedemede, ọnụọgụ, " +"underscores ma ọ bụ hyphens." + +msgid "Enter a valid IPv4 address." +msgstr "Tinye adreesị IPv4 zuru oke." + +msgid "Enter a valid IPv6 address." +msgstr "Tinye adreesị IPv6 zuru oke." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Tinye adreesị IPv4 ma obu IPv6 zuru oke." + +msgid "Enter only digits separated by commas." +msgstr "Tinye naanị ọnụọgụ kewapụrụ site na comma." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Gbaa mbọ hụ na %(limit_value)s (ọ bụ %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Gbaa mbọ hụ na orughị ma ọ bụ hara nhata %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Gbaa mbọ hụ na okarịa ma ọ bụ hara nhata%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Gbaa mbọ hụ na a nwere opekata mpe %(limit_value)d odide (o nwere " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Gbaa mbọ hụ na a nwere kacha %(limit_value)d odide (o nwere%(show_value)d)." + +msgid "Enter a number." +msgstr "Tinye nọmba." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Gbaa mbọ hụ na ọ dighi karịrị %(max)s nọmba na mkpokọta." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Gbaa mbọ hụ na ọ dighi karịrị %(max)s na ebe ntụpọ." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Gbaa mbọ hụ na ọ dighi karịrị %(max)s nọmba tupu akụkụ ebe ntụpọ." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Ndọtị Faịlị “%(extension)s”anaghị anabata. Ndọtị nke kwere n'nabata bu: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Anabataghị ihe odide n'enweghị isi." + +msgid "and" +msgstr "na" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s ya na nke a %(field_labels)s dị adị." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Nọmba %(value)r abụghị ezigbo nhọrọ." + +msgid "This field cannot be null." +msgstr "Ebe a enweghị ike ịbụ ihe efu." + +msgid "This field cannot be blank." +msgstr "Ebe a enweghị ike ịbụ ohere efu." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s ya na nke a %(field_label)s dị adi." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s ga-abụ ihe pụrụ iche maka %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Ebe a nke ụdị: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” uru a ga-abụrịrị Eziokwu ma ọ bụ Ugha." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s”uru a ga-abụrịrị Eziokwu, Ugha, ma ọ bụ Onweghị." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Eziokwu ma o bụ Ugha)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (ruo %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Rikom-kewapụrụ nomba" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” uru a nwere usoro nke n'adịghị adị. Ọ ga-abụrịrị n'ụdị YYYY-MM-" +"DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s”uru a nwere usoro ziri ezi (YYYY-MM-DD) mana ọ bụ ụbọchị n'abaghị " +"uru." + +msgid "Date (without time)" +msgstr "Ubọchị (na-enweghị oge)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” uru a nwere usoro nke n'adịghị adị. Ọ ga-abụrịrị n'ụdị YYYY-MM-" +"DD HH:MM[:ss[.uuuuuu]][TZ] usoro. " + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s”uru a nwere usoro ziri ezi (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ])mana ọ bụ ụbọchị n'abaghị uru." + +msgid "Date (with time)" +msgstr "Ubọchị (na oge)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” uru a ga-abụrịrị nọmba ntụpọ." + +msgid "Decimal number" +msgstr "Nọmba ntụpọ." + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s”uru a nwere usoro nke n'adịghị adị. Ọ ga-abụrịrị n'ụdị [DD] " +"[[HH:]MM:]ss[.uuuuuu]usoro." + +msgid "Duration" +msgstr "Oge ole" + +msgid "Email address" +msgstr "Adreesị ozi ịntanetị" + +msgid "File path" +msgstr "Uzọ Faịlụ di" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s”uru a ga-abụrịrị float." + +msgid "Floating point number" +msgstr "Nọmba ebe floating no " + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” uru a ga-abụrịrị onu ogugu" + +msgid "Integer" +msgstr "Onu ogugu" + +msgid "Big (8 byte) integer" +msgstr "Onu ogugu (8 byte) nnukwu" + +msgid "IPv4 address" +msgstr "Adreesị IPv4" + +msgid "IP address" +msgstr "Adreesị IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s”uru a ga-abụrịrị na Odighị, Eziokwu ma ọ bụ.Ugha." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (Ihe a ga abụriri eziokwu, ụgha ma ọ bu na onweghi)" + +msgid "Positive big integer" +msgstr "Nnukwu nomba nke oma" + +msgid "Positive integer" +msgstr "Nọmba nke oma" + +msgid "Positive small integer" +msgstr "Obere nọmba nke oma" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (ruo %(max_length)s)" + +msgid "Small integer" +msgstr "Onu ogugu nke obere" + +msgid "Text" +msgstr "Ederede" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” uru a nwere usoro nke n'adịghị adị. Ọ ga-abụrịrị n'ụdị HH:MM[:" +"ss[.uuuuuu]]usoro." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” uru a nwere usoro ziri ezi (HH:MM[:ss[.uuuuuu]]) mana ọ bu oge " +"n'abaghị uru." + +msgid "Time" +msgstr "Oge" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Raw binary data" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s”abụghị UUID n’kwesịrị ekwesị." + +msgid "Universally unique identifier" +msgstr "Universally unique identifier" + +msgid "File" +msgstr "Faịlụ" + +msgid "Image" +msgstr "Foto" + +msgid "A JSON object" +msgstr "Ihe JSON" + +msgid "Value must be valid JSON." +msgstr "Uru a ga-abụrịrị JSON n’kwesịrị ekwesị." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s dịka %(field)s %(value)r adịghị adị." + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (ụdị kpebiri site na mpaghara metụtara)" + +msgid "One-to-one relationship" +msgstr "Mmekọrịta otu-na-otu" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s mmekọrịta" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s mmekọrịta" + +msgid "Many-to-many relationship" +msgstr "Mmekọrịta otutu-na-otutu" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Ebe a kwesiri ekwesi." + +msgid "Enter a whole number." +msgstr "Tinye nọmba onu ogugu." + +msgid "Enter a valid date." +msgstr "Tinye ụbọchị zuru oke." + +msgid "Enter a valid time." +msgstr "Tinye oge zuru oke." + +msgid "Enter a valid date/time." +msgstr "Tinye ụbọchị / oge zuru oke" + +msgid "Enter a valid duration." +msgstr "Tinye oge onuno zuru oke." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Onu ogugu ubochi a gha aburiri n’agbata {min_days} na {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Onweghi faịlụ a debanyere. Lee ụdị encoding a ntinye na ederede." + +msgid "No file was submitted." +msgstr "E nweghị faịlụ e watara" + +msgid "The submitted file is empty." +msgstr "O nweghị ihe dị n'ime faịlụ e wetara" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Gbaa mbọ hụ na aha faịlụ a nwere kacha %(max)d odide (o nwere %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Biko nyefee faịlụ a ma ọ bụ tinye akara na igbe akara, ọ bụghị ha abụọ." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Bugote foto n’zuru oke. Faịlụ a ị bugoro abụghị foto ma ọ bụ foto rụrụ arụ." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Họrọ ezigbo nhọrọ. %(value)sabụghị otu nhọrọ n'ime nke dịnụ." + +msgid "Enter a list of values." +msgstr "Tinye ndepụta nke ụkpụrụ." + +msgid "Enter a complete value." +msgstr "Tinye uru zuru okè" + +msgid "Enter a valid UUID." +msgstr "Tinye UUID kwesịrị ekwesị" + +msgid "Enter a valid JSON." +msgstr "Tinye JSON kwesịrị ekwesị" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Ebe ezoro ezo%(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "Data ManagementForm na-efu efu ma ọ bụ a kpara ya aka" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Biko nyefee %d ma ọ bụ fomụ di ole na ole." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "Biko nyefee%d ma ọ bụ fomụ karịrị otu ahụ" + +msgid "Order" +msgstr "Usoro" + +msgid "Delete" +msgstr "Hichapụ" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Biko dozie data oji abuo a maka %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Biko dozie data oji abuo a maka %(field)s, nke gha diriri iche." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Biko dozie data oji abuo a maka %(field_name)s nke gha diriri iche maka " +"%(lookup)s n'ime %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Biko dozie uru oji abuo nke no n'okpuru." + +msgid "The inline value did not match the parent instance." +msgstr "Uru inline a adabaghị na parent instance." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Họrọ ezigbo nhọrọ. Nhọrọ a abụghị otu nhọrọ dịnụ." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "%(pk)sabụghi uru kwesịrị ekwesị" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s enweghị ike ịkọwa na mpaghara oge %(current_timezone)s; onwere " +"ike iju anya ma obu ọ gaghị adị." + +msgid "Clear" +msgstr "Kpochapu" + +msgid "Currently" +msgstr "Ugbu a" + +msgid "Change" +msgstr "Gbanwee" + +msgid "Unknown" +msgstr "Ihe N’amaghi" + +msgid "Yes" +msgstr "Ee" + +msgid "No" +msgstr "Mba" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ee, mba, nwere ike" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "etiti Abalị" + +msgid "noon" +msgstr "Ehihie" + +msgid "Monday" +msgstr "Mọnde" + +msgid "Tuesday" +msgstr "Tiuzdee" + +msgid "Wednesday" +msgstr "Wenezdee" + +msgid "Thursday" +msgstr "Tọọzdee" + +msgid "Friday" +msgstr "Fraịdee" + +msgid "Saturday" +msgstr "Satọdee" + +msgid "Sunday" +msgstr "Mbọsi Uka" + +msgid "Mon" +msgstr "Mọnde" + +msgid "Tue" +msgstr "Tiu" + +msgid "Wed" +msgstr "Wen" + +msgid "Thu" +msgstr "Tọọ" + +msgid "Fri" +msgstr "Fraị" + +msgid "Sat" +msgstr "Sat" + +msgid "Sun" +msgstr "Ụka" + +msgid "January" +msgstr "Jenụwarị" + +msgid "February" +msgstr "Febrụwarị" + +msgid "March" +msgstr "Maachị" + +msgid "April" +msgstr "Eprel" + +msgid "May" +msgstr "Mee" + +msgid "June" +msgstr "Juun" + +msgid "July" +msgstr "Julaị" + +msgid "August" +msgstr "Ọgọọst" + +msgid "September" +msgstr "Septemba" + +msgid "October" +msgstr "Ọktoba" + +msgid "November" +msgstr "Novemba" + +msgid "December" +msgstr "Disemba" + +msgid "jan" +msgstr "jen" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "maa" + +msgid "apr" +msgstr "epr" + +msgid "may" +msgstr "mee" + +msgid "jun" +msgstr "juu" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ọgọ" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "ọkt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dis" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jenụwarị" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Maachị" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Eprel" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mee" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Juun" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julaị" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ọgọ." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sep." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Ọkt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dis." + +msgctxt "alt. month" +msgid "January" +msgstr "Jenụwarị" + +msgctxt "alt. month" +msgid "February" +msgstr "Febrụwarị" + +msgctxt "alt. month" +msgid "March" +msgstr "Maachị" + +msgctxt "alt. month" +msgid "April" +msgstr "Eprel" + +msgctxt "alt. month" +msgid "May" +msgstr "Mee" + +msgctxt "alt. month" +msgid "June" +msgstr "Juun" + +msgctxt "alt. month" +msgid "July" +msgstr "Julaị" + +msgctxt "alt. month" +msgid "August" +msgstr "Ọgọọst" + +msgctxt "alt. month" +msgid "September" +msgstr "Septemba" + +msgctxt "alt. month" +msgid "October" +msgstr "Ọktoba" + +msgctxt "alt. month" +msgid "November" +msgstr "Novemba" + +msgctxt "alt. month" +msgid "December" +msgstr "Disemba" + +msgid "This is not a valid IPv6 address." +msgstr "Nke a abaghị adresị IPv6 zuru oke." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ma obu" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d afọ" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%dọnwa" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d izu" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d ụbọchị" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d awa" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d nkeji" + +msgid "Forbidden" +msgstr "Amachibidoro" + +msgid "CSRF verification failed. Request aborted." +msgstr "Nyocha CSRF emeghị nke ọma. Ajuju atọrọ.." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"I na-ahụ ozi a n'ihi na saịtị HTTPS a chọrọ “Onye isi okwu” ka ihe nchọgharị " +"weebụ gị zitere gị, mana onweghi nke zitere. Achọrọ isi ihe a maka ebumnuche " +"nchekwa, iji jide n’aka na ndị ọzọ anaghị egbochi ihe nchọgharị gị." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ọ bụrụ na ihazila ihe nchọgharị gị iji gbanyụọ ndị na-eji “ndị nnọchianya”, " +"biko jisie iketiachi ya, ma ọ dịkarịa maka saịtị a, ma ọ bụ maka njikọ " +"HTTPS, ma ọ bụ maka a arịrịọ “otu ụdị”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Ọ bụrụ na ị na-eji akara " +"mmado ma ọ bụ gụnyere isi nke \"Iwu-Onye na gba ama: neweghị onye na-gba ama" +"\", biko wepu ha. Nchedo CSRF chọrọ ka isi “onye na gba ama” wee mee nyocha " +"ike nlele nke gbara ama. Ọ bụrụ na ihe gbasara gị gbasara nzuzo, jiri ụzọ " +"ọzọ dị ka njikọ maka saịtị ndị ọzọ." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"I na-ahụ ozi a n'ihi na saịtị a chọrọ CSRF cookie mgbe ị na-edobe akwụkwọ. " +"Achọrọ cookie a maka ebumnuche nchekwa, iji hụ na ndị ọzọ anaghị egbochi ihe " +"nchọgharị gị." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ọ bụrụ na ịhazila ihe nchọgharị gị iji gbanyụọ kuki, biko tiachi ya ka o na " +"ruo oru, opekata mpe maka saịtị a, ma ọ bụ maka “otu ụdị\"." + +msgid "More information is available with DEBUG=True." +msgstr "Ihe omuma ndi ozo di na DEBUG = Eziokwu." + +msgid "No year specified" +msgstr "Ọ dịghị afọ akọwapụtara" + +msgid "Date out of range" +msgstr "Ubọchị a puru na usoro" + +msgid "No month specified" +msgstr "Onweghị ọnwa akọwapụtara" + +msgid "No day specified" +msgstr "Onweghi ụbọchị akọwapụtara" + +msgid "No week specified" +msgstr "Onweghi izu akọwapụtara" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr " %(verbose_name_plural)sadịghị" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Ọdịnihu %(verbose_name_plural)s adịghị adị n'ihi %(class_name)s.allow_future " +"bu ugha." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "String ụbọchị nabaghị uru “%(datestr)s” Ntọala enyere “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Mba %(verbose_name)s hụrụ ihe dabara na ajụjụ a" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Peeji a a-abụghị “nke ikpeazụ”, a pụghị ịgbanwe ya na int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Peeji na-abaghị uru (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tọgbọ chakoo ndepụta na “%(class_name)s.allow_empty” bụ Ugha." + +msgid "Directory indexes are not allowed here." +msgstr "Anaghị anabata directory indexes ebe a." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” a dịghị" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index of %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" +"Django: usoro Ntanetị maka ndị na-achọkarị izu okè ya na oge edetu imecha." + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Lee akwukwo e bipụtara maka Django" +"%(version)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Nwụnye ahụ dabara nke ọma! Ị mere nke ọma!" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"I na-ahụ peeji a n'ihi na DEBUG=True dị na faili setting gị mana ịhazibeghị URL ọ bụla." + +msgid "Django Documentation" +msgstr "Akwụkwọ Ederede Django" + +msgid "Topics, references, & how-to’s" +msgstr "Isiokwu, ntụaka, & otu esi-mee" + +msgid "Tutorial: A Polling App" +msgstr "Nkuzi: App Ntuli Aka" + +msgid "Get started with Django" +msgstr "Bido na Django" + +msgid "Django Community" +msgstr "Obodo Django" + +msgid "Connect, get help, or contribute" +msgstr "Jikọọ, nweta enyemaka, ma ọ bụ tinye aka." diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ig/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ig/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ig/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d5229c26b0d24fe312702a079dfead8ad2229cc GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFcu zjTyvXh#+PWi_g#*?w}6la5te5mr%I(6QC~cqaHp-eLO(t_`;#a!+b%>tJCEpAiM530gFN=3jVR%jJbMrpuC_?1$`Y1d30}Hx}Q!Y_*Q8C~sdnqhhFQ=Ws~9AD#< zk7VUW)1|x6Q7p-pT+>EZu4;OYWXLTxG(7!UvBO*2^eoM|{Y4cV`Sg9+&2OfGSH?vd ze2>#A59EBl&f-;721#62Q63i2Iz8#{mS2N%S;g-kqWQOotP1dbv`X^HJYOv)X+DqA tc(P0;i@eC9suUkKTkb=a<8>N;Y|caZmJ|pfXiu7@0sPBB*n@xr{{W$ZydD4m literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ig/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ig/formats.py new file mode 100644 index 0000000..cb0b4de --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ig/formats.py @@ -0,0 +1,32 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "P" +DATETIME_FORMAT = "j F Y P" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' + "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' + "%d.%m.%y %H:%M", # '25.10.06 14:30' + "%d.%m.%y", # '25.10.06' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/io/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..79b81f4abc2a4678ca1e3c5ffb53e9ddfe671b58 GIT binary patch literal 14317 zcmcJU3w#yTnZQr0R;60oij{V&J5|6$Nq|-@f{*eF1PGxdVAZbd z-HKw1FY2QrVr>fuibxRzE1=@mK&{)#2J0$5syAI%t!u4q-9C2PU;F>goSWQ)0J^{K zz<2+1&YU^V?|k2xFE4-m$mNRbUF6fqBS$MW{R2vU`2@*T>YBkyje*xfdHy*32z&*8 z6uu4lul~Z%$Kl|UlKe9a$H1e=uQzNooMU*Ip$$JnxeWXuycQk{Z!qcGOnN0ehWxvr z)VmRW2tEK$ggZ?7DfnU1&zN)x4kGrQ8!x+I<>|p1lC2+-oNPEyH)A^y5!Z#(5Nj z77l{){s~a}cQTasPc`YG=J{Dr+WQ=o^}f)gXF%!q#gL^`Hk9|j0%d-#grcusGwJ0} z+F1$Zy;UZ?0m}MrfwJ#*!=dmAD0=x8lyUzVj)Q~QEK+_J{1{9b#)eCwjCUoJ@vVWP zXB(jO?{Sm=BPi{4ne8f@%+IY*@^6Qe;c7Sqz7A!6Mq-Sl{CQC3eLR$LH$rK@1xh&=qH-#P zQtn15?|mCGWojLi_Bx@w_k?-A*YH^=^YXIct5C|l2}MtSZTLHg3aS5v(%z8M^ww2p zLz&-3DD7mRj4KD_{RqmwZ8y)CLFwPkhAU0}YAEflgEFp-=K1&GC8T#jsc*>X$vm6_ zMK4D|X?Gly_b!4mo_dqt2<5#dDE;^nlzGe>USW8P;X1?ZhChb#-pf$*?KdX>$e~F+ zCqsFDCKNrm5K6g5lW!ZwP};o~ieB7lxDm>Gk3jKjPeG~gB`D?JfnwK=7?zB4h~cLV zEyJOPRfZ!BM;V@NIL7dNDC_hEcqFVh`7;e?!w-@_*F3+(s^%`BjG37=FX>R>M0Ws;5>#>DS{>`oG7d_d;3! zeNgIq5sE%_Lz&k%pxE=@oBZRel70?`N0WaVlzBcA%KBUcwO$)$pzNnBpsd%op_JbQ zrQJ>_?>z-&-F^n8-ggZD0HvI&PWn9virqZXq-&s*KNlVgFN89VsZi>jX?Qt2hO}qW zZ6>`GGBkA)lzp)sN5?%qt&vrs-|0O8< z{w>HBP{-6H=@C%YcPf!;sF8_2d>+dD zG(efJIZ)6q0HBlP{#QbJPtks<^66b`{rFJ`)<(a#2+3HWj)70dEN*oKnKeDuQz-gO8YOt z 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, 2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Ido (http://www.transifex.com/django/django/language/io/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: io\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "العربية" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Azərbaycanca" + +msgid "Bulgarian" +msgstr "български" + +msgid "Belarusian" +msgstr "беларуская" + +msgid "Bengali" +msgstr "বাংলা" + +msgid "Breton" +msgstr "Brezhoneg" + +msgid "Bosnian" +msgstr "босански" + +msgid "Catalan" +msgstr "Català" + +msgid "Czech" +msgstr "čeština" + +msgid "Welsh" +msgstr "Cymraeg" + +msgid "Danish" +msgstr "dansk" + +msgid "German" +msgstr "Deutsch" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Ελληνικά" + +msgid "English" +msgstr "English" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "British English" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Español" + +msgid "Argentinian Spanish" +msgstr "Español de Argentina" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Español de México" + +msgid "Nicaraguan Spanish" +msgstr "Español de Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Español de Venezuela" + +msgid "Estonian" +msgstr "Eesti" + +msgid "Basque" +msgstr "Euskara" + +msgid "Persian" +msgstr "فارسی" + +msgid "Finnish" +msgstr "Suomi" + +msgid "French" +msgstr "Français" + +msgid "Frisian" +msgstr "Frysk" + +msgid "Irish" +msgstr "Gaeilge" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Galego" + +msgid "Hebrew" +msgstr "עברית" + +msgid "Hindi" +msgstr "हिन्दी" + +msgid "Croatian" +msgstr "hrvatski" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Magyar" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Bahasa Indonesia" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Íslenska" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "日本語" + +msgid "Georgian" +msgstr "ქართული" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Қазақша" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannaḍa" + +msgid "Korean" +msgstr "한국어" + +msgid "Luxembourgish" +msgstr "Lëtzebuergesch" + +msgid "Lithuanian" +msgstr "Lietuvių" + +msgid "Latvian" +msgstr "Latviešu" + +msgid "Macedonian" +msgstr "Македонски" + +msgid "Malayalam" +msgstr "മലയാളം" + +msgid "Mongolian" +msgstr "Монгол" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "Burmese" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "नेपाली" + +msgid "Dutch" +msgstr "Nederlands" + +msgid "Norwegian Nynorsk" +msgstr "Norsk nynorsk" + +msgid "Ossetic" +msgstr "Ossetic" + +msgid "Punjabi" +msgstr "ਪੰਜਾਬੀ" + +msgid "Polish" +msgstr "Polski" + +msgid "Portuguese" +msgstr "Português" + +msgid "Brazilian Portuguese" +msgstr "Português do Brasil" + +msgid "Romanian" +msgstr "Română" + +msgid "Russian" +msgstr "Русский" + +msgid "Slovak" +msgstr "Slovenčina" + +msgid "Slovenian" +msgstr "Slovenščina" + +msgid "Albanian" +msgstr "Shqip" + +msgid "Serbian" +msgstr "Српски / srpski" + +msgid "Serbian Latin" +msgstr "Serbian Latin" + +msgid "Swedish" +msgstr "Svenska" + +msgid "Swahili" +msgstr "Kiswahili" + +msgid "Tamil" +msgstr "தமிழ்" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Thai" +msgstr "ไทย" + +msgid "Turkish" +msgstr "Türkçe" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Удмурт" + +msgid "Ukrainian" +msgstr "Українська" + +msgid "Urdu" +msgstr "اُردُو" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Tiếng Việt" + +msgid "Simplified Chinese" +msgstr "简体中文" + +msgid "Traditional Chinese" +msgstr "繁體中文" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Skribez valida datumo." + +msgid "Enter a valid URL." +msgstr "Skribez valida URL." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "Skribez valida e-posto adreso." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Skribez valida IPv4 adreso." + +msgid "Enter a valid IPv6 address." +msgstr "Skribez valida IPv6 adreso." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Skribez valida adreso IPv4 od IPv6." + +msgid "Enter only digits separated by commas." +msgstr "Skribez nur cifri separata per komi." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Verifikez ke ica datumo esas %(limit_value)s (olu esas %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Verifikez ke ica datumo esas minora kam od egala a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Verifikez ke ica datumo esas majora kam od egala a %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Verifikez ke ica datumo havas %(limit_value)d litero adminime (olu havas " +"%(show_value)d)." +msgstr[1] "" +"Verifikez ke ica datumo havas %(limit_value)d literi adminime (olu havas " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Verifikez ke ica datumo havas %(limit_value)d litero admaxime (olu havas " +"%(show_value)d)." +msgstr[1] "" +"Verifikez ke ica datumo havas %(limit_value)d literi admaxime (olu havas " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Skribez numero." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "e" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Ica feldo ne povas esar nula." + +msgid "This field cannot be blank." +msgstr "Ica feldo ne povas esar vakua." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "La %(model_name)s kun ica %(field_label)s ja existas." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Feldo de tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Booleano (True o False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (til %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Integri separata per komi" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Dato (sen horo)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Dato (kun horo)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Decimala numero" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "E-postala adreso" + +msgid "File path" +msgstr "Arkivo voyo" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Glitkomo numero" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Integro" + +msgid "Big (8 byte) integer" +msgstr "Granda (8 byte) integro" + +msgid "IPv4 address" +msgstr "IPv4 adreso" + +msgid "IP address" +msgstr "IP adreso" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (True, False o None)" + +msgid "Positive integer" +msgstr "Positiva integro" + +msgid "Positive small integer" +msgstr "Positiva mikra integro" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (til %(max_length)s)" + +msgid "Small integer" +msgstr "Mikra integro" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Horo" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Kruda binara datumo" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Arkivo" + +msgid "Image" +msgstr "Imajo" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Exterklefo (la tipo esas determinata per la relatata feldo)" + +msgid "One-to-one relationship" +msgstr "Un-ad-un parenteso" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Multi-a-multi parenteso" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Ica feldo esas obligata." + +msgid "Enter a whole number." +msgstr "Skribez kompleta numero" + +msgid "Enter a valid date." +msgstr "Skribez valida dato." + +msgid "Enter a valid time." +msgstr "Skribez valida horo." + +msgid "Enter a valid date/time." +msgstr "Skribez valida dato/horo." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nula arkivo sendesis. Verifikez la kodexigo tipo en la formulario." + +msgid "No file was submitted." +msgstr "Nula arkivo sendesis." + +msgid "The submitted file is empty." +msgstr "La sendita arkivo esas vakua." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Verifikez ke ica dosiero nomo havas %(max)d skribsigno admaxime (olu havas " +"%(length)d)." +msgstr[1] "" +"Verifikez ke ica arkivo nomo havas %(max)d skribsigni admaxime (olu havas " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Sendez arkivo o markizez la vakua markbuxo, ne la du." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Kargez valida imajo. La arkivo qua vu kargis ne esis imajo od esis defektiva." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Selektez valida selekto. %(value)s ne esas un de la disponebla selekti." + +msgid "Enter a list of values." +msgstr "Skribez listo de datumi." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Okulta feldo %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Ordinar" + +msgid "Delete" +msgstr "Eliminar" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Koretigez duopligata datumi por %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Korektigez la duopligata datumi por %(field)s, qui mustas esar unika." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Korektigez la duopligata datumi por %(field_name)s qui mustas esar unika por " +"la %(lookup)s en %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Korektigez la duopligata datumi infre." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Selektez valida selekto. Ita selekto ne esas un de la disponebla selekti." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Vakuigar" + +msgid "Currently" +msgstr "Aktuale" + +msgid "Change" +msgstr "Modifikar" + +msgid "Unknown" +msgstr "Nekonocata" + +msgid "Yes" +msgstr "Yes" + +msgid "No" +msgstr "No" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "yes,no,forsan" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "noktomezo" + +msgid "noon" +msgstr "dimezo" + +msgid "Monday" +msgstr "Lundio" + +msgid "Tuesday" +msgstr "Mardio" + +msgid "Wednesday" +msgstr "Merkurdio" + +msgid "Thursday" +msgstr "Jovdio" + +msgid "Friday" +msgstr "Venerdio" + +msgid "Saturday" +msgstr "Saturdio" + +msgid "Sunday" +msgstr "Sundio" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mer" + +msgid "Thu" +msgstr "Jov" + +msgid "Fri" +msgstr "Ven" + +msgid "Sat" +msgstr "Sat" + +msgid "Sun" +msgstr "Sun" + +msgid "January" +msgstr "Januaro" + +msgid "February" +msgstr "Februaro" + +msgid "March" +msgstr "Marto" + +msgid "April" +msgstr "Aprilo" + +msgid "May" +msgstr "Mayo" + +msgid "June" +msgstr "Junio" + +msgid "July" +msgstr "Julio" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Septembro" + +msgid "October" +msgstr "Oktobro" + +msgid "November" +msgstr "Novembro" + +msgid "December" +msgstr "Decembro" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marto" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Aprilo" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mayo" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junio" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Januaro" + +msgctxt "alt. month" +msgid "February" +msgstr "Februaro" + +msgctxt "alt. month" +msgid "March" +msgstr "Marto" + +msgctxt "alt. month" +msgid "April" +msgstr "Aprilo" + +msgctxt "alt. month" +msgid "May" +msgstr "Mayo" + +msgctxt "alt. month" +msgid "June" +msgstr "Junio" + +msgctxt "alt. month" +msgid "July" +msgstr "Julio" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Septembro" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktobro" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembro" + +msgctxt "alt. month" +msgid "December" +msgstr "Decembro" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d yaro" +msgstr[1] "%d yari" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d monato" +msgstr[1] "%d monati" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d semano" +msgstr[1] "%d semani" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d dio" +msgstr[1] "%d dii" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d horo" +msgstr[1] "%d hori" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minuti" + +msgid "0 minutes" +msgstr "0 minuti" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "La yaro ne specizigesis" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "La monato ne specizigesis" + +msgid "No day specified" +msgstr "La dio ne specizigesis" + +msgid "No week specified" +msgstr "La semano ne specizigesis" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ne esas %(verbose_name_plural)s disponebla" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"La futura %(verbose_name_plural)s ne esas disponebla pro ke %(class_name)s." +"allow_future esas False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Onu ne permisas direktorio indexi hike." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indexi di %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..951078f610fa1906cbec309f983d85f217c0af9c GIT binary patch literal 24273 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, 2011 +# Hafsteinn Einarsson , 2011-2012 +# Jannis Leidel , 2011 +# Matt R, 2018 +# saevarom , 2011 +# saevarom , 2013,2015 +# Thordur Sigurdsson , 2016-2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-18 21:19+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Icelandic (http://www.transifex.com/django/django/language/" +"is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +msgid "Afrikaans" +msgstr "Afríkanska" + +msgid "Arabic" +msgstr "Arabíska" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Astúríska" + +msgid "Azerbaijani" +msgstr "Aserbaídsjíska" + +msgid "Bulgarian" +msgstr "Búlgarska" + +msgid "Belarusian" +msgstr "Hvítrússneska" + +msgid "Bengali" +msgstr "Bengalska" + +msgid "Breton" +msgstr "Bretónska" + +msgid "Bosnian" +msgstr "Bosníska" + +msgid "Catalan" +msgstr "Katalónska" + +msgid "Czech" +msgstr "Tékkneska" + +msgid "Welsh" +msgstr "Velska" + +msgid "Danish" +msgstr "Danska" + +msgid "German" +msgstr "Þýska" + +msgid "Lower Sorbian" +msgstr "Neðri sorbíska" + +msgid "Greek" +msgstr "Gríska" + +msgid "English" +msgstr "Enska" + +msgid "Australian English" +msgstr "Áströlsk enska" + +msgid "British English" +msgstr "Bresk enska" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spænska" + +msgid "Argentinian Spanish" +msgstr "Argentínsk spænska" + +msgid "Colombian Spanish" +msgstr "Kólumbísk spænska" + +msgid "Mexican Spanish" +msgstr "Mexíkósk spænska" + +msgid "Nicaraguan Spanish" +msgstr "Níkaragva spænska" + +msgid "Venezuelan Spanish" +msgstr "Venesúelsk spænska" + +msgid "Estonian" +msgstr "Eistneska" + +msgid "Basque" +msgstr "Baskneska" + +msgid "Persian" +msgstr "Persneska" + +msgid "Finnish" +msgstr "Finnska" + +msgid "French" +msgstr "Franska" + +msgid "Frisian" +msgstr "Frísneska" + +msgid "Irish" +msgstr "Írska" + +msgid "Scottish Gaelic" +msgstr "Skosk gelíska" + +msgid "Galician" +msgstr "Galíska" + +msgid "Hebrew" +msgstr "Hebreska" + +msgid "Hindi" +msgstr "Hindí" + +msgid "Croatian" +msgstr "Króatíska" + +msgid "Upper Sorbian" +msgstr "Efri sorbíska" + +msgid "Hungarian" +msgstr "Ungverska" + +msgid "Armenian" +msgstr "Armenska" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indónesíska" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Íslenska" + +msgid "Italian" +msgstr "Ítalska" + +msgid "Japanese" +msgstr "Japanska" + +msgid "Georgian" +msgstr "Georgíska" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Kasakska" + +msgid "Khmer" +msgstr "Kmeríska" + +msgid "Kannada" +msgstr "Kannadanska" + +msgid "Korean" +msgstr "Kóreska" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Lúxemborgíska" + +msgid "Lithuanian" +msgstr "Litháenska" + +msgid "Latvian" +msgstr "Lettneska" + +msgid "Macedonian" +msgstr "Makedónska" + +msgid "Malayalam" +msgstr "Malajalamska" + +msgid "Mongolian" +msgstr "Mongólska" + +msgid "Marathi" +msgstr "Maratí" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Búrmíska" + +msgid "Norwegian Bokmål" +msgstr "Norskt bókmál" + +msgid "Nepali" +msgstr "Nepalska" + +msgid "Dutch" +msgstr "Hollenska" + +msgid "Norwegian Nynorsk" +msgstr "Nýnorska" + +msgid "Ossetic" +msgstr "Ossetíska" + +msgid "Punjabi" +msgstr "Púndjabíska" + +msgid "Polish" +msgstr "Pólska" + +msgid "Portuguese" +msgstr "Portúgalska" + +msgid "Brazilian Portuguese" +msgstr "Brasilísk portúgalska" + +msgid "Romanian" +msgstr "Rúmenska" + +msgid "Russian" +msgstr "Rússneska" + +msgid "Slovak" +msgstr "Slóvakíska" + +msgid "Slovenian" +msgstr "Slóvenska" + +msgid "Albanian" +msgstr "Albanska" + +msgid "Serbian" +msgstr "Serbneska" + +msgid "Serbian Latin" +msgstr "Serbnesk latína" + +msgid "Swedish" +msgstr "Sænska" + +msgid "Swahili" +msgstr "Svahílí" + +msgid "Tamil" +msgstr "Tamílska" + +msgid "Telugu" +msgstr "Telúgúska" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tælenska" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Tyrkneska" + +msgid "Tatar" +msgstr "Tataríska" + +msgid "Udmurt" +msgstr "Údmúrt" + +msgid "Ukrainian" +msgstr "Úkraínska" + +msgid "Urdu" +msgstr "Úrdú" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Víetnamska" + +msgid "Simplified Chinese" +msgstr "Einfölduð kínverska " + +msgid "Traditional Chinese" +msgstr "Hefðbundin kínverska" + +msgid "Messages" +msgstr "Skilaboð" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Þetta síðunúmer er ekki heiltala" + +msgid "That page number is less than 1" +msgstr "Þetta síðunúmer er minna en 1" + +msgid "That page contains no results" +msgstr "Þessi síða hefur engar niðurstöður" + +msgid "Enter a valid value." +msgstr "Sláðu inn gilt gildi." + +msgid "Enter a valid URL." +msgstr "Sláðu inn gilt veffang (URL)." + +msgid "Enter a valid integer." +msgstr "Sláðu inn gilda heiltölu." + +msgid "Enter a valid email address." +msgstr "Sláðu inn gilt netfang." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Settu inn gildan vefslóðartitil sem samanstendur af latneskum bókstöfum, " +"númerin, undirstrikum og bandstrikum." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Settu inn gildan vefslóðartitil sem má innihalda unicode bókstafi, " +"tölustafi, undirstrik og bandstrik." + +msgid "Enter a valid IPv4 address." +msgstr "Sláðu inn gilda IPv4 tölu." + +msgid "Enter a valid IPv6 address." +msgstr "Sláðu inn gilt IPv6 vistfang." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Sláðu inn gilt IPv4 eða IPv6 vistfang." + +msgid "Enter only digits separated by commas." +msgstr "Skrifaðu einungis tölur aðskildar með kommum." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Gakktu úr skugga um að gildi sé %(limit_value)s (það er %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Gakktu úr skugga um að gildið sé minna en eða jafnt og %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Gakktu úr skugga um að gildið sé stærra en eða jafnt og %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Gildið má minnst vera %(limit_value)d stafur að lengd (það er %(show_value)d " +"nú)" +msgstr[1] "" +"Gildið má minnst vera %(limit_value)d stafir að lengd (það er %(show_value)d " +"nú)" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Gildið má mest vera %(limit_value)d stafur að lengd (það er %(show_value)d " +"nú)" +msgstr[1] "" +"Gildið má mest vera %(limit_value)d stafir að lengd (það er %(show_value)d " +"nú)" + +msgid "Enter a number." +msgstr "Sláðu inn tölu." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Gildið má ekki hafa fleiri en %(max)s tölu." +msgstr[1] "Gildið má ekki hafa fleiri en %(max)s tölur." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Gildið má ekki hafa meira en %(max)s tugatölustaf (decimal places)." +msgstr[1] "" +"Gildið má ekki hafa meira en %(max)s tugatölustafi (decimal places)." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Gildið má ekki hafa fleiri en %(max)s tölu fyrir tugabrotskil." +msgstr[1] "Gildið má ekki hafa fleiri en %(max)s tölur fyrir tugabrotskil." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Skrár með endingunni „%(extension)s“ eru ekki leyfðar. Leyfilegar endingar " +"eru: „%(allowed_extensions)s“„." + +msgid "Null characters are not allowed." +msgstr "Núlltákn eru ekki leyfileg." + +msgid "and" +msgstr "og" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s með þessi %(field_labels)s er nú þegar til." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Gildið %(value)r er ógilt." + +msgid "This field cannot be null." +msgstr "Þessi reitur getur ekki haft tómgildi (null)." + +msgid "This field cannot be blank." +msgstr "Þessi reitur má ekki vera tómur." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s með þetta %(field_label)s er nú þegar til." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s verður að vera einkvæmt fyrir %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Reitur af gerð: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "„%(value)s“ verður að vera annaðhvort satt eða ósatt." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "„%(value)s“ verður að vera eitt eftirtalinna: True, False eða None." + +msgid "Boolean (Either True or False)" +msgstr "Boole-gildi (True eða False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Strengur (mest %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Heiltölur aðgreindar með kommum" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"„%(value)s“ er ógilt dagsetningarsnið. Það verður að vera á sniðinu YYYY-MM-" +"DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "„%(value)s“ hefur rétt snið (YYYY-MM-DD) en dagsetningin er ógild." + +msgid "Date (without time)" +msgstr "Dagsetning (án tíma)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"„%(value)s“ hefur ógilt snið. Það verður að vera á sniðinu: YYYY-MM-DD HH:" +"MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"„%(value)s“ hefur rétt snið (YYYY-MM-DD HH:MM [:ss[.uuuuuu]][TZ]) en það er " +"ógild dagsetning/tími." + +msgid "Date (with time)" +msgstr "Dagsetning (með tíma)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "„%(value)s“ verður að vera heiltala." + +msgid "Decimal number" +msgstr "Tugatala" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"„%(value)s“ er á ógildu sniði. Það verður að vera á sniðinu [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Tímalengd" + +msgid "Email address" +msgstr "Netfang" + +msgid "File path" +msgstr "Skjalaslóð" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "„%(value)s“ verður að vera fleytitala." + +msgid "Floating point number" +msgstr "Fleytitala (floating point number)" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Gildi „%(value)s“ verður að vera heiltala." + +msgid "Integer" +msgstr "Heiltala" + +msgid "Big (8 byte) integer" +msgstr "Stór (8 bæta) heiltala" + +msgid "Small integer" +msgstr "Lítil heiltala" + +msgid "IPv4 address" +msgstr "IPv4 vistfang" + +msgid "IP address" +msgstr "IP tala" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "„%(value)s“ verður að vera eitt eftirtalinna: None, True eða False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boole-gildi (True, False eða None)" + +msgid "Positive big integer" +msgstr "Jákvæð stór heiltala" + +msgid "Positive integer" +msgstr "Jákvæð heiltala" + +msgid "Positive small integer" +msgstr "Jákvæð lítil heiltala" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slögg (allt að %(max_length)s)" + +msgid "Text" +msgstr "Texti" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"„%(value)s“ er á ógildu sniði. Það verður að vera á sniðinu HH:MM[:ss[." +"uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"„%(value)s“ er á réttu sniði (HH:MM[:ss[.uuuuuu]]), en það er ógild " +"dagsetning/tími." + +msgid "Time" +msgstr "Tími" + +msgid "URL" +msgstr "Veffang" + +msgid "Raw binary data" +msgstr "Hrá tvíundargögn (binary data)" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "„%(value)s“ er ekki gilt UUID." + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Skrá" + +msgid "Image" +msgstr "Mynd" + +msgid "A JSON object" +msgstr "JSON hlutur" + +msgid "Value must be valid JSON." +msgstr "Gildi verður að vera gilt JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s hlutur með %(field)s %(value)r er ekki til." + +msgid "Foreign Key (type determined by related field)" +msgstr "Ytri lykill (Gerð ákveðin af skyldum reit)" + +msgid "One-to-one relationship" +msgstr "Einn-á-einn samband." + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s samband" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s sambönd" + +msgid "Many-to-many relationship" +msgstr "Margir-til-margra samband." + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Þennan reit þarf að fylla út." + +msgid "Enter a whole number." +msgstr "Sláðu inn heiltölu." + +msgid "Enter a valid date." +msgstr "Sláðu inn gilda dagsetningu." + +msgid "Enter a valid time." +msgstr "Sláðu inn gilda tímasetningu." + +msgid "Enter a valid date/time." +msgstr "Sláðu inn gilda dagsetningu ásamt tíma." + +msgid "Enter a valid duration." +msgstr "Sláðu inn gilt tímabil." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Fjöldi daga verður að vera á milli {min_days} og {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Engin skrá var send. Athugaðu kótunartegund á forminu (encoding type)." + +msgid "No file was submitted." +msgstr "Engin skrá var send." + +msgid "The submitted file is empty." +msgstr "Innsend skrá er tóm." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Skráarnafnið má mest vera %(max)d stafur að lengd (það er %(length)d nú)" +msgstr[1] "" +"Skráarnafnið má mest vera %(max)d stafir að lengd (það er %(length)d nú)" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Vinsamlegast sendu annað hvort inn skrá eða merktu í boxið, ekki bæði." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Halaðu upp gildri myndskrá. Skráin sem þú halaðir upp var annað hvort gölluð " +"eða ekki mynd." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Veldu gildan valmöguleika. %(value)s er ekki eitt af gildum valmöguleikum." + +msgid "Enter a list of values." +msgstr "Sláðu inn lista af gildum." + +msgid "Enter a complete value." +msgstr "Sláðu inn heilt gildi." + +msgid "Enter a valid UUID." +msgstr "Sláðu inn gilt UUID." + +msgid "Enter a valid JSON." +msgstr "Sláðu inn gilt JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Falinn reitur %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "Vinsamlegast sendu ekki meira en %d form." +msgstr[1] "Vinsamlegast sendu ekki meira en %d form." + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "Vinsamlegast sendu að minnsta kosta %d form." +msgstr[1] "Vinsamlegast sendu að minnsta kosta %d form." + +msgid "Order" +msgstr "Röð" + +msgid "Delete" +msgstr "Eyða" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Vinsamlegast leiðréttu tvítekin gögn í reit %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Vinsamlegast lagfærðu gögn í reit %(field)s, sem verða að vera einstök." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Vinsamlegast leiðréttu tvítekin gögn í reit %(field_name)s sem verða að vera " +"einstök fyrir %(lookup)s í %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Vinsamlegast lagfærðu tvítöldu gögnin fyrir neðan." + +msgid "The inline value did not match the parent instance." +msgstr "Innra gildið passar ekki við eiganda." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Veldu gildan valmöguleika. Valið virðist ekki vera eitt af gildum " +"valmöguleikum." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "„%(pk)s“ er ekki gilt gildi." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s er ekki hægt að túlka í tímabelti %(current_timezone)s, það " +"getur verið óljóst eða að það er ekki til." + +msgid "Clear" +msgstr "Hreinsa" + +msgid "Currently" +msgstr "Eins og er:" + +msgid "Change" +msgstr "Breyta" + +msgid "Unknown" +msgstr "Óþekkt" + +msgid "Yes" +msgstr "Já" + +msgid "No" +msgstr "Nei" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "já,nei,kannski" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bæti" +msgstr[1] "%(size)d bæti" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "eftirmiðdegi" + +msgid "a.m." +msgstr "morgun" + +msgid "PM" +msgstr "Eftirmiðdegi" + +msgid "AM" +msgstr "Morgun" + +msgid "midnight" +msgstr "miðnætti" + +msgid "noon" +msgstr "hádegi" + +msgid "Monday" +msgstr "mánudagur" + +msgid "Tuesday" +msgstr "þriðjudagur" + +msgid "Wednesday" +msgstr "miðvikudagur" + +msgid "Thursday" +msgstr "fimmtudagur" + +msgid "Friday" +msgstr "föstudagur" + +msgid "Saturday" +msgstr "laugardagur" + +msgid "Sunday" +msgstr "sunnudagur" + +msgid "Mon" +msgstr "mán" + +msgid "Tue" +msgstr "þri" + +msgid "Wed" +msgstr "mið" + +msgid "Thu" +msgstr "fim" + +msgid "Fri" +msgstr "fös" + +msgid "Sat" +msgstr "lau" + +msgid "Sun" +msgstr "sun" + +msgid "January" +msgstr "janúar" + +msgid "February" +msgstr "febrúar" + +msgid "March" +msgstr "mars" + +msgid "April" +msgstr "apríl" + +msgid "May" +msgstr "maí" + +msgid "June" +msgstr "júní" + +msgid "July" +msgstr "júlí" + +msgid "August" +msgstr "ágúst" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "október" + +msgid "November" +msgstr "nóvember" + +msgid "December" +msgstr "desember" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "maí" + +msgid "jun" +msgstr "jún" + +msgid "jul" +msgstr "júl" + +msgid "aug" +msgstr "ágú" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nóv" + +msgid "dec" +msgstr "des" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mars" + +msgctxt "abbrev. month" +msgid "April" +msgstr "apríl" + +msgctxt "abbrev. month" +msgid "May" +msgstr "maí" + +msgctxt "abbrev. month" +msgid "June" +msgstr "júní" + +msgctxt "abbrev. month" +msgid "July" +msgstr "júlí" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ág." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nóv." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "des." + +msgctxt "alt. month" +msgid "January" +msgstr "janúar" + +msgctxt "alt. month" +msgid "February" +msgstr "febrúar" + +msgctxt "alt. month" +msgid "March" +msgstr "mars" + +msgctxt "alt. month" +msgid "April" +msgstr "apríl" + +msgctxt "alt. month" +msgid "May" +msgstr "maí" + +msgctxt "alt. month" +msgid "June" +msgstr "júní" + +msgctxt "alt. month" +msgid "July" +msgstr "júlí" + +msgctxt "alt. month" +msgid "August" +msgstr "ágúst" + +msgctxt "alt. month" +msgid "September" +msgstr "september" + +msgctxt "alt. month" +msgid "October" +msgstr "október" + +msgctxt "alt. month" +msgid "November" +msgstr "nóvember" + +msgctxt "alt. month" +msgid "December" +msgstr "desember" + +msgid "This is not a valid IPv6 address." +msgstr "Þetta er ekki gilt IPv6 vistfang." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "eða" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF auðkenning tókst ekki." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ef þú hefur stillt vafrann þinn til að gera „Referer“ hausa óvirka þarftu að " +"virkja þá aftur. Að minnsta kosti fyrir þetta vefsvæði, eða HTTPS tengingar " +"eða „same-origin“ fyrirspurnir." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Þú ert að fá þessi skilaboð því þetta vefsvæði þarfnast að CSRF kaka (e. " +"cookie) sé send þegar form eru send. Þessi kaka er nauðsynleg af " +"öryggisástæðum til að ganga úr skugga um að utanaðkomandi aðili sé ekki að " +"senda fyrirspurnir úr vafranum þínum." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ef þú hefur stillt vafrann þinn til að gera kökur óvirkar þarftu að virkja " +"þær aftur. Að minnsta kosti fyrir þetta vefsvæði eða „same-origin“ " +"fyrirspurnir." + +msgid "More information is available with DEBUG=True." +msgstr "Meiri upplýsingar fást með DEBUG=True." + +msgid "No year specified" +msgstr "Ekkert ár tilgreint" + +msgid "Date out of range" +msgstr "Dagsetning utan tímabils" + +msgid "No month specified" +msgstr "Enginn mánuður tilgreindur" + +msgid "No day specified" +msgstr "Enginn dagur tilgreindur" + +msgid "No week specified" +msgstr "Engin vika tilgreind" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ekkert %(verbose_name_plural)s í boði" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Framtíðar %(verbose_name_plural)s ekki í boði því %(class_name)s." +"allow_future er Ósatt." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ógilt snið dagsetningar „%(datestr)s“ gefið sniðið „%(format)s“" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Ekkert %(verbose_name)s sem uppfyllir skilyrði" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Þetta er hvorki síðasta síða, né er hægt að breyta í heiltölu." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ógild síða (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tómur listi og „%(class_name)s.allow_empty“ er Ósatt." + +msgid "Directory indexes are not allowed here." +msgstr "Möppulistar eru ekki leyfðir hér." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s“ er ekki til" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Innihald %(directory)s " + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Þú sérð þessa síðu vegna þess að þú hefur DEBUG=True í stillingunum þínum og hefur ekki sett upp " +"neinar vefslóðir." + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/is/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/is/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/is/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe551726bf267ead6115177ea235d471a1d2643a GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFKR!M)FS8^*Uaz3?7Kcr4eoARhsvXGoVkRKL!T>T~2E&vx*IXV|`r zEbSyaw|w(nccO`7`}3(ac@qlAZ~Bo#@-Pa0mKH30PVk}2Dly?nE#WS6J6^^;kT P3xp6rkrTi+1Ty#rhrDj( literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/is/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/is/formats.py new file mode 100644 index 0000000..d0f71cf --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/is/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. F Y" +TIME_FORMAT = "H:i" +# DATETIME_FORMAT = +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "j.n.Y" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..8b46b261949b5ba59776189768025fb1ae45845e GIT binary patch literal 28587 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 aqjR-mosQ=yG>wAVM>o@P&Fksu@%|I29VjvY literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po new file mode 100644 index 0000000..ac26c5d --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/it/LC_MESSAGES/django.po @@ -0,0 +1,1367 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# 0d21a39e384d88c2313b89b5042c04cb, 2017 +# Carlo Miron , 2011 +# Carlo Miron , 2014 +# Carlo Miron , 2018-2019 +# Davide Targa , 2021 +# Denis Darii , 2011 +# Emanuele Di Giacomo, 2021 +# Flavio Curella , 2013,2016 +# Jannis Leidel , 2011 +# Themis Savvidis , 2013 +# Luciano De Falco Alfano, 2016 +# Marco Bonetti, 2014 +# Mirco Grillo , 2018,2020 +# Nicola Larosa , 2013 +# palmux , 2014-2015,2017,2021 +# Paolo Melchiorre , 2022-2023 +# Mattia Procopio , 2015 +# Riccardo Magliocchetti , 2017 +# Stefano Brentegani , 2014-2017 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-17 02:13-0600\n" +"PO-Revision-Date: 2023-04-25 06:49+0000\n" +"Last-Translator: Paolo Melchiorre , 2022-2023\n" +"Language-Team: Italian (http://www.transifex.com/django/django/language/" +"it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabo" + +msgid "Algerian Arabic" +msgstr "Arabo Algerino" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azero" + +msgid "Bulgarian" +msgstr "Bulgaro" + +msgid "Belarusian" +msgstr "Bielorusso" + +msgid "Bengali" +msgstr "Bengalese" + +msgid "Breton" +msgstr "Bretone" + +msgid "Bosnian" +msgstr "Bosniaco" + +msgid "Catalan" +msgstr "Catalano" + +msgid "Central Kurdish (Sorani)" +msgstr "Curdo centrale (Sorani)" + +msgid "Czech" +msgstr "Ceco" + +msgid "Welsh" +msgstr "Gallese" + +msgid "Danish" +msgstr "Danese" + +msgid "German" +msgstr "Tedesco" + +msgid "Lower Sorbian" +msgstr "Sorabo inferiore" + +msgid "Greek" +msgstr "Greco" + +msgid "English" +msgstr "Inglese" + +msgid "Australian English" +msgstr "Inglese Australiano" + +msgid "British English" +msgstr "Inglese britannico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spagnolo" + +msgid "Argentinian Spanish" +msgstr "Spagnolo Argentino" + +msgid "Colombian Spanish" +msgstr "Spagnolo Colombiano" + +msgid "Mexican Spanish" +msgstr "Spagnolo Messicano" + +msgid "Nicaraguan Spanish" +msgstr "Spagnolo Nicaraguense" + +msgid "Venezuelan Spanish" +msgstr "Spagnolo venezuelano" + +msgid "Estonian" +msgstr "Estone" + +msgid "Basque" +msgstr "Basco" + +msgid "Persian" +msgstr "Persiano" + +msgid "Finnish" +msgstr "Finlandese" + +msgid "French" +msgstr "Francese" + +msgid "Frisian" +msgstr "Frisone" + +msgid "Irish" +msgstr "Irlandese" + +msgid "Scottish Gaelic" +msgstr "Gaelico Scozzese" + +msgid "Galician" +msgstr "Galiziano" + +msgid "Hebrew" +msgstr "Ebraico" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croato" + +msgid "Upper Sorbian" +msgstr "Sorabo superiore" + +msgid "Hungarian" +msgstr "Ungherese" + +msgid "Armenian" +msgstr "Armeno" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesiano" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandese" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Giapponese" + +msgid "Georgian" +msgstr "Georgiano" + +msgid "Kabyle" +msgstr "Cabilo" + +msgid "Kazakh" +msgstr "Kazako" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Coreano" + +msgid "Kyrgyz" +msgstr "Kirghiso" + +msgid "Luxembourgish" +msgstr "Lussemburghese" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Lettone" + +msgid "Macedonian" +msgstr "Macedone" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolo" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malese" + +msgid "Burmese" +msgstr "Birmano" + +msgid "Norwegian Bokmål" +msgstr "Norvegese Bokmål" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Olandese" + +msgid "Norwegian Nynorsk" +msgstr "Norvegese Nynorsk" + +msgid "Ossetic" +msgstr "Ossetico" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polacco" + +msgid "Portuguese" +msgstr "Portoghese" + +msgid "Brazilian Portuguese" +msgstr "Brasiliano Portoghese" + +msgid "Romanian" +msgstr "Rumeno" + +msgid "Russian" +msgstr "Russo" + +msgid "Slovak" +msgstr "Slovacco" + +msgid "Slovenian" +msgstr "Sloveno" + +msgid "Albanian" +msgstr "Albanese" + +msgid "Serbian" +msgstr "Serbo" + +msgid "Serbian Latin" +msgstr "Serbo Latino" + +msgid "Swedish" +msgstr "Svedese" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tajik" + +msgid "Thai" +msgstr "Tailandese" + +msgid "Turkmen" +msgstr "Turkmeno" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "Ucraino" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbeko" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Cinese semplificato" + +msgid "Traditional Chinese" +msgstr "Cinese tradizionale" + +msgid "Messages" +msgstr "Messaggi" + +msgid "Site Maps" +msgstr "Mappa del sito" + +msgid "Static Files" +msgstr "File statici" + +msgid "Syndication" +msgstr "Aggregazione" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Quel numero di pagina non è un integer" + +msgid "That page number is less than 1" +msgstr "Quel numero di pagina è minore di 1" + +msgid "That page contains no results" +msgstr "Quella pagina non presenta alcun risultato" + +msgid "Enter a valid value." +msgstr "Inserisci un valore valido." + +msgid "Enter a valid URL." +msgstr "Inserisci un URL valido." + +msgid "Enter a valid integer." +msgstr "Inserire un numero intero valido." + +msgid "Enter a valid email address." +msgstr "Inserisci un indirizzo email valido." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Inserisci uno \"slug\" valido contenente lettere, cifre, sottolineati o " +"trattini." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Inserisci uno 'slug' valido contenente lettere, cifre, sottolineati o " +"trattini." + +msgid "Enter a valid IPv4 address." +msgstr "Inserisci un indirizzo IPv4 valido." + +msgid "Enter a valid IPv6 address." +msgstr "Inserisci un indirizzo IPv6 valido." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Inserisci un indirizzo IPv4 o IPv6 valido." + +msgid "Enter only digits separated by commas." +msgstr "Inserisci solo cifre separate da virgole." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Assicurati che questo valore sia %(limit_value)s (ora è %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Assicurati che questo valore sia minore o uguale a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Assicurati che questo valore sia maggiore o uguale a %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Assicurarsi che questo valore sia un multiplo della dimensione di passo " +"%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assicurati che questo valore contenga almeno %(limit_value)d carattere (ne " +"ha %(show_value)d)." +msgstr[1] "" +"Assicurati che questo valore contenga almeno %(limit_value)d caratteri (ne " +"ha %(show_value)d)." +msgstr[2] "" +"Assicurati che questo valore contenga almeno %(limit_value)d caratteri (ne " +"ha %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Assicurati che questo valore non contenga più di %(limit_value)d carattere " +"(ne ha %(show_value)d)." +msgstr[1] "" +"Assicurati che questo valore non contenga più di %(limit_value)d caratteri " +"(ne ha %(show_value)d)." +msgstr[2] "" +"Assicurati che questo valore non contenga più di %(limit_value)d caratteri " +"(ne ha %(show_value)d)." + +msgid "Enter a number." +msgstr "Inserisci un numero." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Assicurati che non vi sia più di %(max)s cifra in totale." +msgstr[1] "Assicurati che non vi siano più di %(max)s cifre in totale." +msgstr[2] "Assicurati che non vi siano più di %(max)s cifre in totale." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Assicurati che non vi sia più di %(max)s cifra decimale." +msgstr[1] "Assicurati che non vi siano più di %(max)s cifre decimali." +msgstr[2] "Assicurati che non vi siano più di %(max)s cifre decimali." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Assicurati che non vi sia più di %(max)s cifra prima della virgola." +msgstr[1] "" +"Assicurati che non vi siano più di %(max)s cifre prima della virgola." +msgstr[2] "" +"Assicurati che non vi siano più di %(max)s cifre prima della virgola." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Il file con estensione \"%(extension)s\" non e' permesso. Le estensioni " +"permesse sono: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "I caratteri null non sono ammessi." + +msgid "and" +msgstr "e" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s con questa %(field_labels)s esiste già." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Il vincolo “%(name)s” è stato violato." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Il valore %(value)r non è una scelta valida." + +msgid "This field cannot be null." +msgstr "Questo campo non può essere nullo." + +msgid "This field cannot be blank." +msgstr "Questo campo non può essere vuoto." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s con questo %(field_label)s esiste già." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s deve essere unico per %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo di tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Il valore \"%(value)s\" deve essere True oppure False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Il valore di \"%(value)s\" deve essere True, False o None" + +msgid "Boolean (Either True or False)" +msgstr "Booleano (Vero o Falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Stringa (fino a %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Stringa (illimitata)" + +msgid "Comma-separated integers" +msgstr "Interi separati da virgole" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Il valore \"%(value)s\" ha un formato di data non valido. Deve essere nel " +"formato AAAA-MM-GG." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Il valore di \"%(value)s\" ha il corretto formato (AAAA-MM-GG) ma non è una " +"data valida." + +msgid "Date (without time)" +msgstr "Data (senza ora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Il valore \"%(value)s\" ha un formato non valido. Deve essere nel formato " +"AAAA-MM-GG HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Il valore di \"%(value)s\" ha il formato corretto (AAAA-MM-GG HH:MM[:ss[." +"uuuuuu]][TZ]) ma non è una data/ora valida." + +msgid "Date (with time)" +msgstr "Data (con ora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Il valore \"%(value)s\" deve essere un numero decimale." + +msgid "Decimal number" +msgstr "Numero decimale" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Il valore \"%(value)s\" ha un formato non valido. Deve essere nel formato " +"[GG] [[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Durata" + +msgid "Email address" +msgstr "Indirizzo email" + +msgid "File path" +msgstr "Percorso file" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Il valore di \"%(value)s\" deve essere un numero a virgola mobile." + +msgid "Floating point number" +msgstr "Numero in virgola mobile" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Il valore \"%(value)s\" deve essere un intero." + +msgid "Integer" +msgstr "Intero" + +msgid "Big (8 byte) integer" +msgstr "Intero grande (8 byte)" + +msgid "Small integer" +msgstr "Piccolo intero" + +msgid "IPv4 address" +msgstr "Indirizzo IPv4" + +msgid "IP address" +msgstr "Indirizzo IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Il valore \"%(value)s\" deve essere None, True oppure False." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (True, False o None)" + +msgid "Positive big integer" +msgstr "Intero positivo" + +msgid "Positive integer" +msgstr "Intero positivo" + +msgid "Positive small integer" +msgstr "Piccolo intero positivo" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (fino a %(max_length)s)" + +msgid "Text" +msgstr "Testo" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Il valore di \"%(value)s\" ha un formato non valido. Deve essere nel formato " +"HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Il valore di \"%(value)s\" ha il corretto formato (HH:MM[:ss[.uuuuuu]]) ma " +"non è un orario valido." + +msgid "Time" +msgstr "Ora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Dati binari grezzi" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" non è uno UUID valido." + +msgid "Universally unique identifier" +msgstr "Identificatore univoco universale" + +msgid "File" +msgstr "File" + +msgid "Image" +msgstr "Immagine" + +msgid "A JSON object" +msgstr "Un oggetto JSON" + +msgid "Value must be valid JSON." +msgstr "Il valore deve essere un JSON valido." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "L'istanza del modello %(model)s con %(field)s %(value)r non esiste." + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (tipo determinato dal campo collegato)" + +msgid "One-to-one relationship" +msgstr "Relazione uno a uno" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "relazione %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "relazioni %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relazione molti a molti" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Questo campo è obbligatorio." + +msgid "Enter a whole number." +msgstr "Inserisci un numero intero." + +msgid "Enter a valid date." +msgstr "Inserisci una data valida." + +msgid "Enter a valid time." +msgstr "Inserisci un'ora valida." + +msgid "Enter a valid date/time." +msgstr "Inserisci una data/ora valida." + +msgid "Enter a valid duration." +msgstr "Inserisci una durata valida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Il numero di giorni deve essere compreso tra {min_days} e {max_days}" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Non è stato inviato alcun file. Verifica il tipo di codifica sul form." + +msgid "No file was submitted." +msgstr "Nessun file è stato inviato." + +msgid "The submitted file is empty." +msgstr "Il file inviato è vuoto." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Assicurati che questo nome di file non contenga più di %(max)d carattere (ne " +"ha %(length)d)." +msgstr[1] "" +"Assicurati che questo nome di file non contenga più di %(max)d caratteri (ne " +"ha %(length)d)." +msgstr[2] "" +"Assicurati che questo nome di file non contenga più di %(max)d caratteri (ne " +"ha %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"È possibile inviare un file o selezionare la casella \"svuota\", ma non " +"entrambi." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Carica un'immagine valida. Il file caricato non è un'immagine o è " +"un'immagine danneggiata." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Scegli un'opzione valida. %(value)s non è tra quelle disponibili." + +msgid "Enter a list of values." +msgstr "Inserisci una lista di valori." + +msgid "Enter a complete value." +msgstr "Inserisci un valore completo." + +msgid "Enter a valid UUID." +msgstr "Inserire un UUID valido." + +msgid "Enter a valid JSON." +msgstr "Inserisci un JSON valido." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo nascosto %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Mancano i dati ManagementForm o sono stati manomessi. Campi mancanti: " +"%(field_names)s. Potrebbe essere necessario inviare una segnalazione di " +"errore se il problema persiste." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Si prega di inviare al massimo %(num)d form." +msgstr[1] "Si prega di inviare al massimo %(num)d form." +msgstr[2] "Si prega di inviare al massimo %(num)d form." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Si prega di inviare almeno %(num)d form." +msgstr[1] "Si prega di inviare almeno %(num)d form." +msgstr[2] "Si prega di inviare almeno %(num)d form." + +msgid "Order" +msgstr "Ordine" + +msgid "Delete" +msgstr "Cancella" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Si prega di correggere i dati duplicati di %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Si prega di correggere i dati duplicati di %(field)s, che deve essere unico." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Si prega di correggere i dati duplicati di %(field_name)s che deve essere " +"unico/a per %(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Si prega di correggere i dati duplicati qui sotto." + +msgid "The inline value did not match the parent instance." +msgstr "Il valore inline non corrisponde all'istanza padre." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Scegli un'opzione valida. La scelta effettuata non compare tra quelle " +"disponibili." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" non è un valore valido." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +" %(datetime)s non può essere interpretato nel fuso orario " +"%(current_timezone)s: potrebbe essere ambiguo o non esistere." + +msgid "Clear" +msgstr "Svuota" + +msgid "Currently" +msgstr "Attualmente" + +msgid "Change" +msgstr "Cambia" + +msgid "Unknown" +msgstr "Sconosciuto" + +msgid "Yes" +msgstr "Sì" + +msgid "No" +msgstr "No" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "sì,no,forse" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" +msgstr[2] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "mezzanotte" + +msgid "noon" +msgstr "mezzogiorno" + +msgid "Monday" +msgstr "Lunedì" + +msgid "Tuesday" +msgstr "Martedì" + +msgid "Wednesday" +msgstr "Mercoledì" + +msgid "Thursday" +msgstr "Giovedì" + +msgid "Friday" +msgstr "Venerdì" + +msgid "Saturday" +msgstr "Sabato" + +msgid "Sunday" +msgstr "Domenica" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mer" + +msgid "Thu" +msgstr "Gio" + +msgid "Fri" +msgstr "Ven" + +msgid "Sat" +msgstr "Sab" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "Gennaio" + +msgid "February" +msgstr "Febbraio" + +msgid "March" +msgstr "Marzo" + +msgid "April" +msgstr "Aprile" + +msgid "May" +msgstr "Maggio" + +msgid "June" +msgstr "Giugno" + +msgid "July" +msgstr "Luglio" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Settembre" + +msgid "October" +msgstr "Ottobre" + +msgid "November" +msgstr "Novembre" + +msgid "December" +msgstr "Dicembre" + +msgid "jan" +msgstr "gen" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mag" + +msgid "jun" +msgstr "giu" + +msgid "jul" +msgstr "lug" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "set" + +msgid "oct" +msgstr "ott" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dic" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Gen." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marzo" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Aprile" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maggio" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Giugno" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Luglio" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Set." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Ott." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dic." + +msgctxt "alt. month" +msgid "January" +msgstr "Gennaio" + +msgctxt "alt. month" +msgid "February" +msgstr "Febbraio" + +msgctxt "alt. month" +msgid "March" +msgstr "Marzo" + +msgctxt "alt. month" +msgid "April" +msgstr "Aprile" + +msgctxt "alt. month" +msgid "May" +msgstr "Maggio" + +msgctxt "alt. month" +msgid "June" +msgstr "Giugno" + +msgctxt "alt. month" +msgid "July" +msgstr "Luglio" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Settembre" + +msgctxt "alt. month" +msgid "October" +msgstr "Ottobre" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembre" + +msgctxt "alt. month" +msgid "December" +msgstr "Dicembre" + +msgid "This is not a valid IPv6 address." +msgstr "Questo non è un indirizzo IPv6 valido." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "o" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d anno" +msgstr[1] "%(num)d anni" +msgstr[2] "%(num)d anni" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mese" +msgstr[1] "%(num)d mesi" +msgstr[2] "%(num)d mesi" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d settimana" +msgstr[1] "%(num)d settimane" +msgstr[2] "%(num)d settimane" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d giorno" +msgstr[1] "%(num)d giorni" +msgstr[2] "%(num)d giorni" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d ora" +msgstr[1] "%(num)d ore" +msgstr[2] "%(num)d ore" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuto" +msgstr[1] "%(num)d minuti" +msgstr[2] "%(num)d minuti" + +msgid "Forbidden" +msgstr "Proibito" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verifica CSRF fallita. Richiesta interrotta." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Vedi questo messaggio perchè questo sito HTTPS richiede l'invio da parte del " +"tuo browser del “Referer header”, che non è invece stato inviato. Questo " +"header è richiesto per motivi di sicurezza, per assicurare che il tuo " +"browser non sia stato sabotato da terzi." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Se hai configurato il tuo browser web per disattivare l'invio delle " +"intestazioni \"Referer\", riattiva questo invio, almeno per questo sito, o " +"per le connessioni HTTPS, o per le connessioni \"same-origin\"." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Se usi il tag o includi " +"header 'Referrer-Policy: no-referrer', per favore rimuovili. Per la " +"protezione CSRF è necessario eseguire un controllo rigoroso sull'header " +"'Referer'. Se ti preoccupano le ricadute sulla privacy, puoi ricorrere ad " +"alternative come per i link a siti di terze parti." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Stai vedendo questo messaggio perché questo sito richiede un cookie CSRF " +"quando invii dei form. Questo cookie è necessario per ragioni di sicurezza, " +"per assicurare che il tuo browser non sia stato dirottato da terze parti." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Se hai configurato il tuo browser web per disattivare l'invio dei cookies, " +"riattivalo almeno per questo sito, o per connessioni \"same-origin\"" + +msgid "More information is available with DEBUG=True." +msgstr "Maggiorni informazioni sono disponibili con DEBUG=True" + +msgid "No year specified" +msgstr "Anno non specificato" + +msgid "Date out of range" +msgstr "Data al di fuori dell'intervallo" + +msgid "No month specified" +msgstr "Mese non specificato" + +msgid "No day specified" +msgstr "Giorno non specificato" + +msgid "No week specified" +msgstr "Settimana non specificata" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nessun %(verbose_name_plural)s disponibile" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s futuri/e non disponibili/e poichè %(class_name)s." +"allow_future è False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Data non valida \"%(datestr)s\" con il formato \"%(format)s\"" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Trovato nessun %(verbose_name)s corrispondente alla query" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "La pagina non è \"last\", né può essere convertita in un int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Pagina non valida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Lista vuota e \"%(class_name)s.allow_empty\" è False." + +msgid "Directory indexes are not allowed here." +msgstr "Indici di directory non sono consentiti qui." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" non esiste" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indice di %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Installazione completata con successo! Congratulazioni!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Leggi le note di rilascio per Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Stai vedendo questa pagina perché hai impostato DEBUG=True nel tuo file di configurazione e non hai " +"configurato nessun URL." + +msgid "Django Documentation" +msgstr "Documentazione di Django" + +msgid "Topics, references, & how-to’s" +msgstr "Temi, riferimenti, & guide" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: un'app per sondaggi" + +msgid "Get started with Django" +msgstr "Iniziare con Django" + +msgid "Django Community" +msgstr "La Community di Django" + +msgid "Connect, get help, or contribute" +msgstr "Connettiti, chiedi aiuto, o contribuisci." diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/it/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/it/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/it/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..362d4b9dcd2ac9145ba5a3652bc2bc23664d92f8 GIT binary patch literal 193 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 Aw*UYD literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po new file mode 100644 index 0000000..ca8a726 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po @@ -0,0 +1,1331 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# xiu1 , 2016 +# tadasu , 2020 +# Goto Hayato , 2021 +# Goto Hayato , 2019 +# Hiroki Sawano, 2022 +# Jannis Leidel , 2011 +# Kamiyama Satoshi, 2021 +# Kentaro Matsuzaki , 2015 +# Masashi SHIBATA , 2017 +# Nikita K , 2019 +# Shinichi Katsumata , 2019 +# Shinya Okano , 2012-2019,2021,2023-2024 +# TANIGUCHI Taichi, 2022 +# Takuro Onoue , 2020 +# Takuya N , 2020 +# Tetsuya Morimoto , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Shinya Okano , " +"2012-2019,2021,2023-2024\n" +"Language-Team: Japanese (http://app.transifex.com/django/django/language/" +"ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "アフリカーンス語" + +msgid "Arabic" +msgstr "アラビア語" + +msgid "Algerian Arabic" +msgstr "アラビア語(アルジェリア)" + +msgid "Asturian" +msgstr "アストゥリアス語" + +msgid "Azerbaijani" +msgstr "アゼルバイジャン語" + +msgid "Bulgarian" +msgstr "ブルガリア語" + +msgid "Belarusian" +msgstr "ベラルーシ語" + +msgid "Bengali" +msgstr "ベンガル語" + +msgid "Breton" +msgstr "ブルトン語" + +msgid "Bosnian" +msgstr "ボスニア語" + +msgid "Catalan" +msgstr "カタロニア語" + +msgid "Central Kurdish (Sorani)" +msgstr "中央クルド語 (ソラニー語)" + +msgid "Czech" +msgstr "チェコ語" + +msgid "Welsh" +msgstr "ウェールズ語" + +msgid "Danish" +msgstr "デンマーク語" + +msgid "German" +msgstr "ドイツ語" + +msgid "Lower Sorbian" +msgstr "低地ソルブ語" + +msgid "Greek" +msgstr "ギリシャ語" + +msgid "English" +msgstr "英語(米国)" + +msgid "Australian English" +msgstr "英語(オーストラリア)" + +msgid "British English" +msgstr "英語(英国)" + +msgid "Esperanto" +msgstr "エスペラント語" + +msgid "Spanish" +msgstr "スペイン語" + +msgid "Argentinian Spanish" +msgstr "アルゼンチンスペイン語" + +msgid "Colombian Spanish" +msgstr "コロンビアスペイン語" + +msgid "Mexican Spanish" +msgstr "メキシコスペイン語" + +msgid "Nicaraguan Spanish" +msgstr "ニカラグアスペイン語" + +msgid "Venezuelan Spanish" +msgstr "ベネズエラスペイン語" + +msgid "Estonian" +msgstr "エストニア語" + +msgid "Basque" +msgstr "バスク語" + +msgid "Persian" +msgstr "ペルシア語" + +msgid "Finnish" +msgstr "フィンランド語" + +msgid "French" +msgstr "フランス語" + +msgid "Frisian" +msgstr "フリジア語" + +msgid "Irish" +msgstr "アイルランド語" + +msgid "Scottish Gaelic" +msgstr "ゲール語(スコットランド)" + +msgid "Galician" +msgstr "ガリシア語" + +msgid "Hebrew" +msgstr "ヘブライ語" + +msgid "Hindi" +msgstr "ヒンディー語" + +msgid "Croatian" +msgstr "クロアチア語" + +msgid "Upper Sorbian" +msgstr "高地ソルブ語" + +msgid "Hungarian" +msgstr "ハンガリー語" + +msgid "Armenian" +msgstr "アルメニア" + +msgid "Interlingua" +msgstr "インターリングア" + +msgid "Indonesian" +msgstr "インドネシア語" + +msgid "Igbo" +msgstr "イグボ語" + +msgid "Ido" +msgstr "イド語" + +msgid "Icelandic" +msgstr "アイスランド語" + +msgid "Italian" +msgstr "イタリア語" + +msgid "Japanese" +msgstr "日本語" + +msgid "Georgian" +msgstr "グルジア語" + +msgid "Kabyle" +msgstr "カビル語" + +msgid "Kazakh" +msgstr "カザフ語" + +msgid "Khmer" +msgstr "クメール語" + +msgid "Kannada" +msgstr "カンナダ語" + +msgid "Korean" +msgstr "韓国語" + +msgid "Kyrgyz" +msgstr "キルギス語" + +msgid "Luxembourgish" +msgstr "ルクセンブルグ語" + +msgid "Lithuanian" +msgstr "リトアニア語" + +msgid "Latvian" +msgstr "ラトビア語" + +msgid "Macedonian" +msgstr "マケドニア語" + +msgid "Malayalam" +msgstr "マラヤーラム語" + +msgid "Mongolian" +msgstr "モンゴル語" + +msgid "Marathi" +msgstr "マラーティー語" + +msgid "Malay" +msgstr "マレー語" + +msgid "Burmese" +msgstr "ビルマ語" + +msgid "Norwegian Bokmål" +msgstr "ノルウェーのブークモール" + +msgid "Nepali" +msgstr "ネパール語" + +msgid "Dutch" +msgstr "オランダ語" + +msgid "Norwegian Nynorsk" +msgstr "ノルウェーのニーノシュク" + +msgid "Ossetic" +msgstr "オセット語" + +msgid "Punjabi" +msgstr "パンジャブ語" + +msgid "Polish" +msgstr "ポーランド語" + +msgid "Portuguese" +msgstr "ポルトガル語" + +msgid "Brazilian Portuguese" +msgstr "ブラジルポルトガル語" + +msgid "Romanian" +msgstr "ルーマニア語" + +msgid "Russian" +msgstr "ロシア語" + +msgid "Slovak" +msgstr "スロバキア語" + +msgid "Slovenian" +msgstr "スロヴェニア語" + +msgid "Albanian" +msgstr "アルバニア語" + +msgid "Serbian" +msgstr "セルビア語" + +msgid "Serbian Latin" +msgstr "セルビア語ラテン文字" + +msgid "Swedish" +msgstr "スウェーデン語" + +msgid "Swahili" +msgstr "スワヒリ語" + +msgid "Tamil" +msgstr "タミル語" + +msgid "Telugu" +msgstr "テルグ語" + +msgid "Tajik" +msgstr "タジク語" + +msgid "Thai" +msgstr "タイ語" + +msgid "Turkmen" +msgstr "トルクメン語" + +msgid "Turkish" +msgstr "トルコ語" + +msgid "Tatar" +msgstr "タタール語" + +msgid "Udmurt" +msgstr "ウドムルト語" + +msgid "Uyghur" +msgstr "ウイグル語" + +msgid "Ukrainian" +msgstr "ウクライナ語" + +msgid "Urdu" +msgstr "ウルドゥー語" + +msgid "Uzbek" +msgstr "ウズベク語" + +msgid "Vietnamese" +msgstr "ベトナム語" + +msgid "Simplified Chinese" +msgstr "簡体字中国語" + +msgid "Traditional Chinese" +msgstr "繁体字中国語" + +msgid "Messages" +msgstr "メッセージ" + +msgid "Site Maps" +msgstr "サイトマップ" + +msgid "Static Files" +msgstr "静的ファイル" + +msgid "Syndication" +msgstr "シンジケーション" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "このページ番号は整数ではありません。" + +msgid "That page number is less than 1" +msgstr "ページ番号が 1 よりも小さいです。" + +msgid "That page contains no results" +msgstr "このページには結果が含まれていません。" + +msgid "Enter a valid value." +msgstr "値を正しく入力してください。" + +msgid "Enter a valid domain name." +msgstr "有効なドメイン名を入力してください。" + +msgid "Enter a valid URL." +msgstr "URLを正しく入力してください。" + +msgid "Enter a valid integer." +msgstr "整数を正しく入力してください。" + +msgid "Enter a valid email address." +msgstr "有効なメールアドレスを入力してください。" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"“slug” には半角の英数字、アンダースコア、ハイフン以外は使用できません。" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"ユニコード文字、数字、アンダースコアまたはハイフンで構成された、有効なスラグ" +"を入力してください。" + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "有効な%(protocol)sアドレスを入力してください。" + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4またはIPv6" + +msgid "Enter only digits separated by commas." +msgstr "カンマ区切りの数字だけを入力してください。" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"この値は %(limit_value)s でなければなりません(実際には %(show_value)s でし" +"た) 。" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "この値は %(limit_value)s 以下でなければなりません。" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "この値は %(limit_value)s 以上でなければなりません。" + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "この値は %(limit_value)s の倍数でなければなりません。" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"この値は%(offset)s から始まる %(limit_value)s の倍数でなければなりません。" +"例. %(offset)s%(valid_value1)s%(valid_value2)s など。" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"この値が少なくとも %(limit_value)d 文字以上であることを確認してください " +"(%(show_value)d 文字になっています)。" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"この値は %(limit_value)d 文字以下でなければなりません( %(show_value)d 文字に" +"なっています)。" + +msgid "Enter a number." +msgstr "数値を入力してください。" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "この値は合計 %(max)s 桁以内でなければなりません。" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "この値は小数点以下が合計 %(max)s 桁以内でなければなりません。" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "この値は小数点より前が合計 %(max)s 桁以内でなければなりません。" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"ファイル拡張子 “%(extension)s” は許可されていません。許可されている拡張子は " +"%(allowed_extensions)s です。" + +msgid "Null characters are not allowed." +msgstr "何か文字を入力してください。" + +msgid "and" +msgstr "と" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "この %(field_labels)s を持った %(model_name)s が既に存在します。" + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "制約 “%(name)s” に違反しています。" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r は有効な選択肢ではありません。" + +msgid "This field cannot be null." +msgstr "このフィールドには NULL を指定できません。" + +msgid "This field cannot be blank." +msgstr "このフィールドは空ではいけません。" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "この %(field_label)s を持った %(model_name)s が既に存在します。" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(date_field_label)s %(lookup_type)s では %(field_label)s がユニークである必" +"要があります。" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "タイプが %(field_type)s のフィールド" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” は True または False にしなければなりません。" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” は True 、 False または None の値でなければなりません。" + +msgid "Boolean (Either True or False)" +msgstr "ブール値 (真: True または偽: False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "文字列 ( %(max_length)s 字まで )" + +msgid "String (unlimited)" +msgstr "文字列 (無制限)" + +msgid "Comma-separated integers" +msgstr "カンマ区切りの整数" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” は無効な日付形式です。YYYY-MM-DD 形式にしなければなりません。" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "“%(value)s” は有効な日付形式(YYYY-MM-DD)ですが、不正な日付です。" + +msgid "Date (without time)" +msgstr "日付" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” は無効な形式の値です。 YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ] 形式で" +"なければなりません。" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” は正しい形式 (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) の値ですが、無" +"効な日時です。" + +msgid "Date (with time)" +msgstr "日時" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” は10進浮動小数値にしなければなりません。" + +msgid "Decimal number" +msgstr "10 進数 (小数可)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” は無効な形式の値です。 [DD] [HH:[MM:]]ss[.uuuuuu] 形式でなければ" +"なりません。" + +msgid "Duration" +msgstr "時間差分" + +msgid "Email address" +msgstr "メールアドレス" + +msgid "File path" +msgstr "ファイルの場所" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” は小数値にしなければなりません。" + +msgid "Floating point number" +msgstr "浮動小数点" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” は整数値にしなければなりません。" + +msgid "Integer" +msgstr "整数" + +msgid "Big (8 byte) integer" +msgstr "大きな(8バイト)整数" + +msgid "Small integer" +msgstr "小さな整数" + +msgid "IPv4 address" +msgstr "IPv4アドレス" + +msgid "IP address" +msgstr "IP アドレス" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” は None、True または False の値でなければなりません。" + +msgid "Boolean (Either True, False or None)" +msgstr "ブール値 (真: True 、偽: False または None)" + +msgid "Positive big integer" +msgstr "正の多倍長整数" + +msgid "Positive integer" +msgstr "正の整数" + +msgid "Positive small integer" +msgstr "小さな正の整数" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "スラグ(%(max_length)s文字以内)" + +msgid "Text" +msgstr "テキスト" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” は無効な形式の値です。 HH:MM[:ss[.uuuuuu]] 形式でなければなりませ" +"ん。" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "“%(value)s” は正しい形式(HH:MM[:ss[.uuuuuu]])ですが、無効な時刻です。" + +msgid "Time" +msgstr "時刻" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "生のバイナリデータ" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” は有効なUUIDではありません。" + +msgid "Universally unique identifier" +msgstr "汎用一意識別子" + +msgid "File" +msgstr "ファイル" + +msgid "Image" +msgstr "画像" + +msgid "A JSON object" +msgstr "JSONオブジェクト" + +msgid "Value must be valid JSON." +msgstr "JSONとして正しい値にしてください。" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s が %(value)r である %(model)s のインスタンスは存在しません。" + +msgid "Foreign Key (type determined by related field)" +msgstr "外部キー(型は関連フィールドによって決まります)" + +msgid "One-to-one relationship" +msgstr "1対1の関連" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s の関連" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s の関連" + +msgid "Many-to-many relationship" +msgstr "多対多の関連" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "このフィールドは必須です。" + +msgid "Enter a whole number." +msgstr "整数を入力してください。" + +msgid "Enter a valid date." +msgstr "日付を正しく入力してください。" + +msgid "Enter a valid time." +msgstr "時間を正しく入力してください。" + +msgid "Enter a valid date/time." +msgstr "日時を正しく入力してください。" + +msgid "Enter a valid duration." +msgstr "時間差分を正しく入力してください。" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "日数は{min_days}から{max_days}の間でなければなりません。" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"ファイルが取得できませんでした。フォームのencoding typeを確認してください。" + +msgid "No file was submitted." +msgstr "ファイルが送信されていません。" + +msgid "The submitted file is empty." +msgstr "入力されたファイルは空です。" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"このファイル名は %(max)d 文字以下でなければなりません( %(length)d 文字になっ" +"ています)。" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"ファイルを投稿するか、クリアチェックボックスをチェックするかどちらかを選択し" +"てください。両方とも行ってはいけません。" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"画像をアップロードしてください。アップロードしたファイルは画像でないか、また" +"は壊れています。" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "正しく選択してください。 %(value)s は候補にありません。" + +msgid "Enter a list of values." +msgstr "リストを入力してください。" + +msgid "Enter a complete value." +msgstr "すべての値を入力してください。" + +msgid "Enter a valid UUID." +msgstr "UUIDを正しく入力してください。" + +msgid "Enter a valid JSON." +msgstr "JSONを正しく入力してください。" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(隠しフィールド %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm のデータが不足しているか改竄されています。不足するフィールドの" +"数: %(field_names)s 。問題が続くようならバグレポートを出す必要があるかもしれ" +"ません。" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "最大で %(num)d 個のフォームを送信してください。" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "少なくとも %(num)d 個のフォームを送信してください。" + +msgid "Order" +msgstr "並び変え" + +msgid "Delete" +msgstr "削除" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s の重複したデータを修正してください。" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"%(field)s の重複したデータを修正してください。このフィールドはユニークである" +"必要があります。" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s の重複したデータを修正してください。%(date_field)s %(lookup)s " +"では %(field_name)s がユニークである必要があります。" + +msgid "Please correct the duplicate values below." +msgstr "下記の重複したデータを修正してください。" + +msgid "The inline value did not match the parent instance." +msgstr "インライン値が親のインスタンスに一致しません。" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "正しく選択してください。選択したものは候補にありません。" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” は無効な値です。" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s は %(current_timezone)s のタイムゾーンでは解釈できませんでした。" +"それは曖昧であるか、存在しない可能性があります。" + +msgid "Clear" +msgstr "クリア" + +msgid "Currently" +msgstr "現在" + +msgid "Change" +msgstr "変更" + +msgid "Unknown" +msgstr "不明" + +msgid "Yes" +msgstr "はい" + +msgid "No" +msgstr "いいえ" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "はい,いいえ,たぶん" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d バイト" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "0時" + +msgid "noon" +msgstr "12時" + +msgid "Monday" +msgstr "月曜日" + +msgid "Tuesday" +msgstr "火曜日" + +msgid "Wednesday" +msgstr "水曜日" + +msgid "Thursday" +msgstr "木曜日" + +msgid "Friday" +msgstr "金曜日" + +msgid "Saturday" +msgstr "土曜日" + +msgid "Sunday" +msgstr "日曜日" + +msgid "Mon" +msgstr "月" + +msgid "Tue" +msgstr "火" + +msgid "Wed" +msgstr "水" + +msgid "Thu" +msgstr "木" + +msgid "Fri" +msgstr "金" + +msgid "Sat" +msgstr "土" + +msgid "Sun" +msgstr "日" + +msgid "January" +msgstr "1月" + +msgid "February" +msgstr "2月" + +msgid "March" +msgstr "3月" + +msgid "April" +msgstr "4月" + +msgid "May" +msgstr "5月" + +msgid "June" +msgstr "6月" + +msgid "July" +msgstr "7月" + +msgid "August" +msgstr "8月" + +msgid "September" +msgstr "9月" + +msgid "October" +msgstr "10月" + +msgid "November" +msgstr "11月" + +msgid "December" +msgstr "12月" + +msgid "jan" +msgstr "1月" + +msgid "feb" +msgstr "2月" + +msgid "mar" +msgstr "3月" + +msgid "apr" +msgstr "4月" + +msgid "may" +msgstr "5月" + +msgid "jun" +msgstr "6月" + +msgid "jul" +msgstr "7月" + +msgid "aug" +msgstr "8月" + +msgid "sep" +msgstr "9月" + +msgid "oct" +msgstr "10月" + +msgid "nov" +msgstr "11月" + +msgid "dec" +msgstr "12月" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "1月" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "2月" + +msgctxt "abbrev. month" +msgid "March" +msgstr "3月" + +msgctxt "abbrev. month" +msgid "April" +msgstr "4月" + +msgctxt "abbrev. month" +msgid "May" +msgstr "5月" + +msgctxt "abbrev. month" +msgid "June" +msgstr "6月" + +msgctxt "abbrev. month" +msgid "July" +msgstr "7月" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "8月" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "9月" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "10月" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "11月" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "12月" + +msgctxt "alt. month" +msgid "January" +msgstr "1月" + +msgctxt "alt. month" +msgid "February" +msgstr "2月" + +msgctxt "alt. month" +msgid "March" +msgstr "3月" + +msgctxt "alt. month" +msgid "April" +msgstr "4月" + +msgctxt "alt. month" +msgid "May" +msgstr "5月" + +msgctxt "alt. month" +msgid "June" +msgstr "6月" + +msgctxt "alt. month" +msgid "July" +msgstr "7月" + +msgctxt "alt. month" +msgid "August" +msgstr "8月" + +msgctxt "alt. month" +msgid "September" +msgstr "9月" + +msgctxt "alt. month" +msgid "October" +msgstr "10月" + +msgctxt "alt. month" +msgid "November" +msgstr "11月" + +msgctxt "alt. month" +msgid "December" +msgstr "12月" + +msgid "This is not a valid IPv6 address." +msgstr "これは有効なIPv6アドレスではありません。" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "または" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d年" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)dヶ月" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d週間" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d日" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d時間" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d分" + +msgid "Forbidden" +msgstr "アクセス禁止" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF検証に失敗したため、リクエストは中断されました。" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"このメッセージが表示されている理由は、このHTTPSのサイトはウェブブラウザからリ" +"ファラーヘッダが送信されることを必須としていますが、送信されなかったためで" +"す。このヘッダはセキュリティ上の理由(使用中のブラウザが第三者によってハイ" +"ジャックされていないことを確認するため)で必要です。" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"もしブラウザのリファラーヘッダを無効に設定しているならば、HTTPS接続やsame-" +"originリクエストのために、少なくともこのサイトでは再度有効にしてください。" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"もし タグを使用しているか " +"“Referrer-Policy: no-referrer” ヘッダを含んでいる場合は削除してください。" +"CSRF プロテクションは、厳密に “Referer” ヘッダが必要です。プライバシーが気に" +"なる場合は などの代替で第三者サイトと接続してくださ" +"い。" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"このメッセージが表示されている理由は、このサイトはフォーム送信時にCSRFクッ" +"キーを必須としているためです。このクッキーはセキュリティ上の理由(使用中のブラ" +"ウザが第三者によってハイジャックされていないことを確認するため)で必要です。" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"もしブラウザのクッキーを無効に設定しているならば、same-originリクエストのため" +"に少なくともこのサイトでは再度有効にしてください。" + +msgid "More information is available with DEBUG=True." +msgstr "詳細な情報は DEBUG=True を設定すると利用できます。" + +msgid "No year specified" +msgstr "年が未指定です" + +msgid "Date out of range" +msgstr "日付が有効範囲外です" + +msgid "No month specified" +msgstr "月が未指定です" + +msgid "No day specified" +msgstr "日が未指定です" + +msgid "No week specified" +msgstr "週が未指定です" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s は利用できません" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(class_name)s.allow_futureがFalseであるため、未来の%(verbose_name_plural)sは" +"利用できません。" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "指定された形式 “%(format)s” では “%(datestr)s” は無効な日付文字列です" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "クエリーに一致する %(verbose_name)s は見つかりませんでした" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "ページが 「最後」ではないか、数値に変換できる値ではありません。" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "無効なページです (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "空の一覧かつ “%(class_name)s.allow_empty” が False です。" + +msgid "Directory indexes are not allowed here." +msgstr "ここではディレクトリインデックスが許可されていません。" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” が存在しません" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)sのディレクトリインデックス" + +msgid "The install worked successfully! Congratulations!" +msgstr "インストールは成功しました!おめでとうございます!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Django%(version)sのリリースノートを見る。" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"このページは、設定ファイルでDEBUG=Trueが指定され、何もURLが設定されていない時に表示" +"されます。" + +msgid "Django Documentation" +msgstr "Django ドキュメント" + +msgid "Topics, references, & how-to’s" +msgstr "トピック、リファレンス、ハウツー" + +msgid "Tutorial: A Polling App" +msgstr "チュートリアル: 投票アプリケーション" + +msgid "Get started with Django" +msgstr "Djangoを始めよう" + +msgid "Django Community" +msgstr "Djangoのコミュニティ" + +msgid "Connect, get help, or contribute" +msgstr "つながり、助け合い、貢献しよう" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ja/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ja/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ja/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..80e4819e7f57a9b70d79362acaf3075cc7bbff33 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF%zSo zA4RrC65qhEa*6?qXEJBz|IYbOCK+6*lqeF9-^TboM^PWC$OcWs1=&%9Bt$_9(U3+t zm_rO?5DQt9hk3LI_fP>A5C=I_ghf=+sCqfsCzj#o+iS3Vx}Po|p65)bHA$-fXv(+@ zTZ^qFKjeKL&5P^fg!C@x=8A57F~lL)ORy{eU9_$gRRTIJ>pf{Js%a$)YC{pImZZpf zcVjsCRRS1pNKNZ1s%~Yc9{-`8ae~|$l313dGmB$sj{X4` C5tlRo literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ja/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ja/formats.py new file mode 100644 index 0000000..c0554d9 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ja/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "Y年n月j日" +TIME_FORMAT = "G:i" +DATETIME_FORMAT = "Y年n月j日G:i" +YEAR_MONTH_FORMAT = "Y年n月" +MONTH_DAY_FORMAT = "n月j日" +SHORT_DATE_FORMAT = "Y/m/d" +SHORT_DATETIME_FORMAT = "Y/m/d G:i" +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..7cdc3c59bf8235ae1b304f415b6d93eb9445889c GIT binary patch literal 24759 zcmeI337lP3eaA0hO;m&+3MzO-mJDRFARr7NW@iW!hGYU2vEk0Vo0*q+@7>|P_cEDO z5gd(LR1&sCh&ae1f)%7%T#&jJTPu~?iqfh~YZsxk;s)JlzrXW8@80(&lL<+owV(EV za^CMO|MTC^a__wSaOOVO1$@fo1>I~aTsc(m`I2hO1V25^6HAt-y! z0gnXNfJcLu`SDx)_+6mnehGXj_#h~K9|6T@+~ZF`(LDu9-)BI%`dJVagM(ga_OyYT zeHS@aTo?gx5@W^0Mz{J!IyyBLFscRSOf0`uLqBNRS>KP z9{_I!PbRn@1s?^^0N;K@5WErmJa{_z&mf@>PR1$1E>L#IAS{A9_&RWlZ+`}qzaIu& zTtM0T45;}BzsB;Z4SYH6rJ(5E3d;YNf`@{ez+=Jfp#1YyQ1*Yz<99(+3w{Ld1O7WG zx@n=={bEpjUIwcFcyJDQ5-7j*fqR4Ne7ge5Uv=;z@a>@Feb3`KsCkcr^7B)^{j_gC z3rfyDB(w7BK=8%j;h_4D1to7DsQD*>vcCfq{rRBeUkoZw3!vzReE)inmx0o26DYf{ z@^~#M{XPVW&zNuD0gBJvzWo_Lem^L=Ujvmdf8y~6zW)hOdjAR}WrN@--p!Dek#itvT|1a|W?*o-5o55+|E#PeMc2Mi?JD~Fa8Bl(j{yNLY z5Y)VjL9M66;}ssS@pv03z3u};@JpclG7c&ae*(&my%47U{lRJAOMQDLxRmxQ!FgZ= zCg9cJ@!+&$SfgM&C_9Hh`EwYQ-tPpZ_cfsS-wDb;_kz;vE584m;NG;q{AgPQ*a6j7Zpy*EWcm}AvTnz3Dc6+=46#d2EK47260Z@F)AWJj25+sztT_9Uc@DM1y zo&edJg8gS%T#f=sxu64-UoHj@051W>zX)o-sDK)OC%8Yj$>Rro|Mj5sx&c)F-3&^f zyFk(ZA^2wSVNiZKq0RW82I7+7jiCG*gNo}0Q1V8>>EL@n`C*Ii-wH~<8$sze25SDN zJwE91QIAi0R5FR~5K!}u1(nwwzW-d0Yy5Z$D!(>?qTA~GKko61p!huuDvy5b@fV=x z?Q?>iABTdHcQh#aQ$g*&%R$+BiN}J+0gok*Lmq1$H+X!T$ICsw3p@aR?*-+bEx!MH zk2io?cQ^U*n|=T7pz`xh@Hh5i9fQ9``=EAW0=^&Y0e=S02bZzAXrCGZSu(*jpz`i> zzW@8a|L4B{@VOSp(>yNn*yZs;j}h1bpFvQ1-VPoJe%!Y|3v#ptUjTK^JqpU7KL>UG z?8oNu2JqFO+C8B1ew}Y`0?(wq9b_p4kNW;;7$v@kd3*zS8tn@}?US3q6TvTnlKWF| z5jdSr@$UkqchR?R1ttGWp!j|loC*FCd?|Rq>rKzYK%IZxpy=)bHSdo=(Ld(fKL^Es z`bjo#F(|oj16fkRHc)zf89W+%6coSz08asrJlW`1gCoTEQg8@-g26+IlJd*bQOYK}d7F2r~I2~LI9t{qG%E#-#*MeUJ#pg%9{ZF9g9lXrs%>$Ju zoxZ&Wl${$qUg`U90!4S9Z-2|T|JLKb`Tm(_8{G-uG0-mnj|2Nb>2nn*`JV!r5_}t! z-G_CWp7T8}05$J?kkkuC!0F&8LD7E}l;0i(N5Ch2fB!j_-Hh+F1^9JP>v`F7 zyDz^3#1+B);Dg}a=UV?aK|&uKKoTm?mV?KFSAv>7Uva2oiK?|&HlJKB$f?*;!9Ca>CyHA6CQq&>`HcnA11P<&F7TXDS-JRQ6TWNPpa zpyF}*D%Ko$J}CN6f-}JfLD~PPZ~qvSAD;%V0%!N2BX~ckc=WC|epi5OWx-ZZ`@}au z#c}To%+5AY^h?0w!2)V7=i5*C@n3?{_u#kK`Fb3vc_(;W29{{|fy(c1gGUh0pMmn*L2tG5@DxyS zS_HlU90O(d_dx0MH25lTuirFzM}Yg$em%Gk*a6M}&+>SV$JHJ$@i^#ly~is&z8{pF zt>8<*n|=S?zWsSn{{99id;bEIK2Ldk2~Jjj8z{Q7Jgx*4*VtnnJdF0cLCwDjJQDmo zD0{vSN{`1pKJM`s9-sAiz$HdE)8nf>9_w))D1ACW>C+90Z=c69D0#!6{C63s@lmi1 z`~XOpT0Y~newXrM2B!PL2Ry|~Xdg^{2KWu|>%L#PrOy(|CtMBRdBk zIPQbx6n*xlyqw?oLe?_^2@-fPZlqV>S&v}gsc$cpq z2X3Pr<=cXTD6gT+SA);zDJN5IryNbuXEWt-%3o9diEg1yKslVUo$`Ll8!1J~rIepg+9-cQxtF5P0Oe0zjb~f%`@a4+;9h%i zZwKG!``!g!M)^J8)&}?{>WBLF2C$E^n6jGEMfn=#-IVndeg2K|Radin*8$X5P<}vp zjH1tr4czx+E8o5LZIy1e{_1X`>dWX_B^8gV|v)FVkQ_ zSFm7hS{#g`N;Oze>WwPJs1hs~N{gjnK^pZI`+)wqQY&g8Tr~tib%4HdY?RenJ#|y+ z{e&`Dz*icTM7yNYUvjh?9B&8Tuvz8FvI1PJJa)cCF8kMTNLYi!NwhfAEMN)A@Rj28~G}>5nighPx z4Q=BpillKZL5Z|jL)A>>h4oT@*4*w)E%q0+Bd`-l%Q)8}AuD#D zRrPt~ML5G+LL%&m8k5Xrw^|>SNa=xy-KG|jRP2Uqb;WYAw#E&y+w={POno)de-@q* zDO=A#GTb0&Ytm*nIac?8WjT4Cb)1^vZmEd*t=_ZQuDi)))k$3jRX<0C9L?&eXa|We zt+UE%$waP`d7SAb7TR-~D;ZJPmz0OJa4iYM)B4#pYhkk1y4~urep~H19SKq_gq_{% zPin04Nyo4Qnp38r+3DEomFG@msk3>qzPZ|>b{OzG(!~C_d258 z9^km}n_{Cksgy>-f;N?EnD5KIBl3PZl6R{^aT-->2{q0F?a@o)-n1U2Bf(PLRTK){ zIy%S#yIR;Cgway$zQUo1Gkj^W;?BmUC2jSU{%}Y;R%4G|nxwt%WDcms#r{gTJRS*W zi4|KM0p?D?fq`NvhojC8C#x-3%5lMNzBDbW=#BxnqjPDUvo}Vo^&GHCHFkHQHA5ww zuB%lgsfE#c&VZ;Fuk^-!QN1eazEV`J`g_xys8nJnS!7L2VEI6q({niiVD`CDZN0dh%iW^RDXeNT%*tG)P^nel zz;Vm%tzSaBI0Vs616^DNMkr-!m67&Z(vE9<;5dJ)1H~amIE)91LZa72*t*yqu)IoT zL$R;vGS$VAO;Kop{>0hVrSq>?;TSBtLp>xoc{JTcVeyiMtCyXrJJFnA1y>GkQ7d4a zMtCZ}s;x+Z723d>lZ5P8o75{@L?dnr%2l1T+|0=N9f(cz-Dp|Jfb&R9-MG%H#ELVy zY3s8Q=JV2mMyu7hMtXO51>JG#vbS4@dCV@ub+6A|wZcMuh*hO~9h+$6pLJ}NS7(RA z1I5093C}}wg56}Zn-j99r%7Zx{S=MHqZdiT9j5u|OwVCcD(LoS-N5i>MjG2)-m-*a z(B%z>R9}`9eY#y+yEoY|+eM@|sSUt_#lc!^y1{oRRqpQVwN~tzA?v7?+1&E(dSxAt zGr`JeIP5J}*xg+ef|UttSBrXOz3KwDDyjvPdaCufsxPUzCxc~COzeVHaY@mPbT)JL z_6;OOuEttjy2r^ww(lxWbZp?hY|(gXe6|xVJ-U+{%je2xsAhS*iW5LacnsOwinNMc zFx>iN#c{l_L#`^4eqGT}HCR``u2sm>!FfpI~>Ts5Mj!EJIuPgLf?vxnu820bwf z)qxGQ0M``tRpY4b*Q%=2qGCn9W;s^trCPOV)b2@gVSXW-Kk2wz>Xj@)2a2E)-!k3ySu7znB}26uBCFZi zeIch0h3uA}E{sb!;LYS?G>0=J>gA%cehv?}93=bLYmEtg_5O)uJY7%h;zl^Ji_6Cj zUAlg>vUit})-JmdOzfLDkt1p%d(NVXU8~|D^_6N9Ol<0~_cBc+m}i?tQ(t!DZR%^> zu9~}?fjM)tE^m9&nme#7Z)WFiQ(xnRZR(O$Ud2iwh=$T2s`m%HjtJJqy}>$?d0o9k zsRU*Ai85g?7YmhQ|3EFMBwVH{$@(Das|86K3@Hn^_Xi_!b#^704RLQAbf?KW_VM=4 zLi+_euaingSb%STGGk>t#OtBH&<=e4hl*K_YqD(!kT(-EFH zZ~kfR^XIqEJ2{*;ujBQno-mKkjB|N{Z)crWs$Alev?E-}j+Q1N*SUz@h;iLx`{VYW zI4XC9jq7zdYoJye>XDdtuMl-tIBSkw8F6C-RSg|LJ>X|2=9$NLxS(VqGIlt}n8A0O-squPueDs#_(e2}- z*Nl&D4#!8gjgNk8eDuTPqc_vA5xPFa;P~hbu4fFQmODoFrnqqp@o#|JVKP3tb$s+X z$M)tq$ZmNfJU)7(6LshK=(VnnJYBlLbdK`Y7Mnw6lQ%I^xyaQBd!SCp6F-F8sqmaMAcAU7v6+&q*e> z&AXm|OT+wxmiTD1@t>p%et1t#HMY1|5WXZUp4w)^uqW!)OZtpu1L&rPH_nmJh7fX} zXU2hEti%iORYYBdZ!G|N5e2J>0_bIp;E7LWYr?oO028mt1WAbTOTiI+*k;gWlTZXP z@>j+H6-*zd+5n_2W?t`bsk?)f}YQ7*olBd^Wund!)jE0b`y|GN&MWqF(SM zvk|86&^dzSGj7}XBLRym)5m;j4&2tpO!(tFxH3OiD4gZ~bYRLi{(LYsapMmOevbVy z!AaKs)rez@!Pto=I1Sn6P(O?jgqe9zSO6zC8?&ImQiz}?XJC+fj4?PfX7)m-wTm|J z2Oyt3lCU*CCKWa6Z86Ib@h5En(=%R?;2*p+#-yS-C^jiBG z485A{IRPcs!zPmq(>CyomDvSY` z2??~i+R&%7*omT!oyI!j#@)eD{lD`68$8ddP!bZ@|G{k8sc2TsShjVcBMovcOSKmu zaes|eVY9$MqQlZ=+oH}&vu%r|j32Z_Th``1>P ze05~Vvh5Wr3DVYXTbADq;EpCYGrQ@pj0OJ6=;;0rYD*NxTrBV~p2Fj{A<9M1!NKPB z{|Pt$x+zX}wxlwt*m#0&^(24kc8h|8PzSx)0riBW)Ste0nUv36CfR2yZy%C zg_3d#zCw*X)4$al?l%on2e5U*j`#CjIc!(+F~;8-0YdcQ-DT*fnM2^la}Ua^}-MO>xt^vf7%tL3FMh(^XG{K$4d*Vmb_%AN>DXj>mPBWz2BPmW$)CeS9 z+0!rHvDHRUpTlGDBsVlg1s0@ZmLOWHwlQa8woB8?svaYA7%;1{=SkZy6)MJP__)~? z#&i@!z_uNJAmeffiH!TnoKBncc8Y0`va_nItq4)#wdZ%lt z34eTPvh3XyQ+>h(Ex)KjG3U$%4~TG?62RD+Fqlzcj0A=pyS!ioa%X%(EFJD;0Qn4QY_nreO;?gvKPdhAxzm!8V=rXSx=zqs^z= z0JQvrLMs&AxmwfE4&}DyoE#tH3A34AiG>^{sD-8sdbUexOJx$0;LHHu zvcxieLNB?(ur_cLW5X>=GaJAWa-y~KklDSKL3_@z*bybHrf%PU9u1$%&SY<6=%`2l z+X|VQ8*iSy1F^p5^o1{4yQOMja9(30hX_;i>FA0~DUJ|ShPU04#u|3m_M}Z8S~CjP zoJcs%;$i)p!~EBKcv5?&F~@vJk%DZqeXEXfbAVaYq7nm$v8bU1!Ym(9T2X>8ye4-B zw3-2T)u2QJq{5D!ky(g`yMMU}CAQH^MV`vYY1l0WwM`irLoZBe!;@h%2?sEH;<>`F zKKJmT2{O&i6#3iqq9!HXw^@?=11)r>Gr8ps!bI-|rYZO6Xx?n8+s2UDDgP=q&j%ZX zS>mIEg@K&0jL_ZBb{aHCx3NZWsLNcXqg}vg*j$Sg_1x;_Jk>;JEk42;HD!l4e|LOo z4CKo_n2b>-eT?aQ#=@?83Iy}XHe1z}Z3GO<8Xjo;7<6hfmZIfw#tTQGXU?8%!mqXy zq4&1H{e;wY+Du!()S*N%TgH}yS~SEESD{t5(2bXDU`TOb3fmfCrP3;^vCuJ)>Cj69 zn8Kc#G9Cl61{@Hj&Dew@f;Mh3ZRBz!U?AEseVcy1>e|^I(#E`dnTUjJt#8$xF3VXc zi3RLn#J6%5p)kfeGmQb0+la`ne5RMN{@1Z^vzQtygyosrbhUI6jO0$HAc!!?b{aUV z@#3s8LYM8EOz|#|`(F?{@d>)%{%mQQGqRtfxZjNAR=r?~Op&CS!y7*f{_pZSfwuqM z>72kWd+ltx^gm7Pe}VoQ_{K-eZi;yz~*FupyDPR z<(3dMEGnPpM?p>gj=42Ox7!}~l+WCtaZ84ng-@?3Xq<8)+Y0#h7P+P5Pjk|b zUd=!*d{`i)s~z9k0e3prHVoTunCGuQyJE*I^um1mQ3*RmE`$Nx#J8+&YqNot{mvwBVbIr{CKx4px{!m#%vV^Qb6^TbWM~`4{pL*H z#UuzJVVoZoP;pUjcooqWdfVt^RJh9>viX*K7_twaJFzn;J( zn)pa2SrScd?xb2mil^*Eq%!eDv|(i7vOJ!X^y>AEMN2Vk#Gi@ocSG57HpPi7Bv~vx zW7N0MS?*|V;7&{?L2i>|JtIuvbU|T-(x{M5(wH|G%M$}_voU7KQ#%eL10{J2<$jEi z{Wzag!zEhKdPB5lD-oHfU~?y$W~y0kD8*Wr$P91CXp6=~tZ6)m1+A~w-W1y;;sQ==|cWCCrZ(uPky z&j$ELCcRz;mSL$85{p~lU|seYDkoVNOjU!%bb^Z%2%R`BMD`CjAr)O9hDvFJBIYnt z5(;|Ew>Jknva?AT$0Q>hGa+=r0b^0srpw-NKDnaPb$3|7r*-2nHSr9LXjGO0<+B$P-$v@^yFV$<7d6I|L%-kJre3P(#9{AdS@z|+) zB#xz8rq`raP3B^9JiAZ3zu@iiFJK(g$n!tkQf<<6i!8*ydXZ?W6xp^iOi`cexO%7i z+>OjdJ0_BHIG+kT9N!33&I526bF1I8bN?a5bt8*eHjV;~aaSWBswF%`l19yVH|F7x;{QhG>IM7xK1OI+j2xQWd34t3CwDRjYs zS+)}V0}o@S8;-F_{vdB&4@P0}$}(fKekKPmb`qP2u6|2E4!UajZXK z$j$sF*Q)8-iVNYvN=6^?bXw(yE}dFY+Fx9dC%(&M7GBLmI_83+EtHI~_?pv%Fn zlt)<%xltrkb(2yRo#<_}m?%Y@6dxq7kn4h2>x5}uw?>$W5L`5mF|TZ+3l-tvxn)^n zy?zG0GNd6xOsvZ?06 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po new file mode 100644 index 0000000..1f342b9 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po @@ -0,0 +1,1239 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# André Bouatchidzé , 2013-2015 +# David A. , 2019 +# David A. , 2011 +# Jannis Leidel , 2011 +# Tornike Beradze , 2018 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Georgian (http://www.transifex.com/django/django/language/" +"ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +msgid "Afrikaans" +msgstr "აფრიკაანსი" + +msgid "Arabic" +msgstr "არაბული" + +msgid "Asturian" +msgstr "ასტურიული" + +msgid "Azerbaijani" +msgstr "აზერბაიჯანული" + +msgid "Bulgarian" +msgstr "ბულგარული" + +msgid "Belarusian" +msgstr "ბელარუსული" + +msgid "Bengali" +msgstr "ბენგალიური" + +msgid "Breton" +msgstr "ბრეტონული" + +msgid "Bosnian" +msgstr "ბოსნიური" + +msgid "Catalan" +msgstr "კატალანური" + +msgid "Czech" +msgstr "ჩეხური" + +msgid "Welsh" +msgstr "უელსური" + +msgid "Danish" +msgstr "დანიური" + +msgid "German" +msgstr "გერმანული" + +msgid "Lower Sorbian" +msgstr "ქვემო სორბული" + +msgid "Greek" +msgstr "ბერძნული" + +msgid "English" +msgstr "ინგლისური" + +msgid "Australian English" +msgstr "ავსტრალიური ინგლისური" + +msgid "British English" +msgstr "ბრიტანეთის ინგლისური" + +msgid "Esperanto" +msgstr "ესპერანტო" + +msgid "Spanish" +msgstr "ესპანური" + +msgid "Argentinian Spanish" +msgstr "არგენტინის ესპანური" + +msgid "Colombian Spanish" +msgstr "კოლუმბიური ესპანური" + +msgid "Mexican Spanish" +msgstr "მექსიკური ესპანური" + +msgid "Nicaraguan Spanish" +msgstr "ნიკარაგუული ესპანური" + +msgid "Venezuelan Spanish" +msgstr "ვენესუელის ესპანური" + +msgid "Estonian" +msgstr "ესტონური" + +msgid "Basque" +msgstr "ბასკური" + +msgid "Persian" +msgstr "სპარსული" + +msgid "Finnish" +msgstr "ფინური" + +msgid "French" +msgstr "ფრანგული" + +msgid "Frisian" +msgstr "ფრისიული" + +msgid "Irish" +msgstr "ირლანდიური" + +msgid "Scottish Gaelic" +msgstr "შოტლანდიური-გელური" + +msgid "Galician" +msgstr "გალიციური" + +msgid "Hebrew" +msgstr "ებრაული" + +msgid "Hindi" +msgstr "ჰინდი" + +msgid "Croatian" +msgstr "ხორვატიული" + +msgid "Upper Sorbian" +msgstr "ზემო სორბიული" + +msgid "Hungarian" +msgstr "უნგრული" + +msgid "Armenian" +msgstr "სომხური" + +msgid "Interlingua" +msgstr "ინტერლინგუა" + +msgid "Indonesian" +msgstr "ინდონეზიური" + +msgid "Ido" +msgstr "იდო" + +msgid "Icelandic" +msgstr "ისლანდიური" + +msgid "Italian" +msgstr "იტალიური" + +msgid "Japanese" +msgstr "იაპონური" + +msgid "Georgian" +msgstr "ქართული" + +msgid "Kabyle" +msgstr "კაბილური" + +msgid "Kazakh" +msgstr "ყაზახური" + +msgid "Khmer" +msgstr "ხმერული" + +msgid "Kannada" +msgstr "კანნადა" + +msgid "Korean" +msgstr "კორეული" + +msgid "Luxembourgish" +msgstr "ლუქსემბურგული" + +msgid "Lithuanian" +msgstr "ლიტვური" + +msgid "Latvian" +msgstr "ლატვიური" + +msgid "Macedonian" +msgstr "მაკედონიური" + +msgid "Malayalam" +msgstr "მალაიზიური" + +msgid "Mongolian" +msgstr "მონღოლური" + +msgid "Marathi" +msgstr "მარათული" + +msgid "Burmese" +msgstr "ბირმული" + +msgid "Norwegian Bokmål" +msgstr "ნორვეგიული Bokmål" + +msgid "Nepali" +msgstr "ნეპალური" + +msgid "Dutch" +msgstr "ჰოლანდიური" + +msgid "Norwegian Nynorsk" +msgstr "ნორვეგიული-ნინორსკი" + +msgid "Ossetic" +msgstr "ოსური" + +msgid "Punjabi" +msgstr "პუნჯაბი" + +msgid "Polish" +msgstr "პოლონური" + +msgid "Portuguese" +msgstr "პორტუგალიური" + +msgid "Brazilian Portuguese" +msgstr "ბრაზილიური პორტუგალიური" + +msgid "Romanian" +msgstr "რუმინული" + +msgid "Russian" +msgstr "რუსული" + +msgid "Slovak" +msgstr "სლოვაკური" + +msgid "Slovenian" +msgstr "სლოვენიური" + +msgid "Albanian" +msgstr "ალბანური" + +msgid "Serbian" +msgstr "სერბული" + +msgid "Serbian Latin" +msgstr "სერბული (ლათინური)" + +msgid "Swedish" +msgstr "შვედური" + +msgid "Swahili" +msgstr "სუაჰილი" + +msgid "Tamil" +msgstr "თამილური" + +msgid "Telugu" +msgstr "ტელუგუ" + +msgid "Thai" +msgstr "ტაი" + +msgid "Turkish" +msgstr "თურქული" + +msgid "Tatar" +msgstr "თათრული" + +msgid "Udmurt" +msgstr "უდმურტული" + +msgid "Ukrainian" +msgstr "უკრაინული" + +msgid "Urdu" +msgstr "ურდუ" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "ვიეტნამური" + +msgid "Simplified Chinese" +msgstr "გამარტივებული ჩინური" + +msgid "Traditional Chinese" +msgstr "ტრადიციული ჩინური" + +msgid "Messages" +msgstr "შეტყობინებები" + +msgid "Site Maps" +msgstr "საიტის რუკები" + +msgid "Static Files" +msgstr "სტატიკური ფაილები" + +msgid "Syndication" +msgstr "სინდიკაცია" + +msgid "That page number is not an integer" +msgstr "გვერდის ნომერი არ არის მთელი რიცხვი" + +msgid "That page number is less than 1" +msgstr "გვერდის ნომერი ნაკლებია 1-ზე" + +msgid "That page contains no results" +msgstr "გვერდი არ შეიცავს მონაცემებს" + +msgid "Enter a valid value." +msgstr "შეიყვანეთ სწორი მნიშვნელობა." + +msgid "Enter a valid URL." +msgstr "შეიყვანეთ სწორი URL." + +msgid "Enter a valid integer." +msgstr "შეიყვანეთ სწორი მთელი რიცხვი." + +msgid "Enter a valid email address." +msgstr "შეიყვანეთ მართებული ელფოსტის მისამართი." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "შეიყვანეთ სწორი IPv4 მისამართი." + +msgid "Enter a valid IPv6 address." +msgstr "შეიყვანეთ მართებული IPv6 მისამართი." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "შეიყვანეთ მართებული IPv4 ან IPv6 მისამართი." + +msgid "Enter only digits separated by commas." +msgstr "შეიყვანეთ მხოლოდ მძიმეებით გამოყოფილი ციფრები." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "მნიშვნელობა უნდა იყოს %(limit_value)s (იგი არის %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "მნიშვნელობა უნდა იყოს %(limit_value)s-ზე ნაკლები ან ტოლი." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "მნიშვნელობა უნდა იყოს %(limit_value)s-ზე მეტი ან ტოლი." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"მნიშვნელობას უნდა ჰქონდეს სულ ცოტა %(limit_value)d სიმბოლო (მას აქვს " +"%(show_value)d)." +msgstr[1] "" +"მნიშვნელობას უნდა ჰქონდეს სულ ცოტა %(limit_value)d სიმბოლო (მას აქვს " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"მნიშვნელობას უნდა ჰქონდეს არაუმეტეს %(limit_value)d სიმბოლოსი (მას აქვს " +"%(show_value)d)." +msgstr[1] "" +"მნიშვნელობას უნდა ჰქონდეს არაუმეტეს %(limit_value)d სიმბოლოსი (მას აქვს " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "შეიყვანეთ რიცხვი." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "ციფრების სრული რაოდენობა %(max)s-ს არ უნდა აღემატებოდეს." +msgstr[1] "ციფრების სრული რაოდენობა %(max)s-ს არ უნდა აღემატებოდეს." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"ათობითი გამყოფის შემდეგ ციფრების რაოდენობა %(max)s-ს არ უნდა აღემატებოდეს." +msgstr[1] "" +"ათობითი გამყოფის შემდეგ ციფრების რაოდენობა %(max)s-ს არ უნდა აღემატებოდეს." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"ათობითი გამყოფის შემდეგ ციფრების რაოდენობა %(max)s-ს არ უნდა აღემატებოდეს." +msgstr[1] "" +"ათობითი გამყოფის წინ ციფრების რაოდენობა %(max)s-ს არ უნდა აღემატებოდეს." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Null მნიშვნელობები დაუშვებელია." + +msgid "and" +msgstr "და" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s ამ %(field_labels)s-ით უკვე არსებობს." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "მნიშვნელობა %(value)r არ არის დასაშვები." + +msgid "This field cannot be null." +msgstr "ეს ველი არ შეიძლება იყოს null." + +msgid "This field cannot be blank." +msgstr "ეს ველი არ შეიძლება იყოს ცარიელი." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s მოცემული %(field_label)s-ით უკვე არსებობს." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s უნდა იყოს უნიკალური %(date_field_label)s %(lookup_type)s-" +"სთვის." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "ველის ტიპი: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "ლოგიკური (True ან False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "სტრიქონი (%(max_length)s სიმბოლომდე)" + +msgid "Comma-separated integers" +msgstr "მძიმით გამოყოფილი მთელი რიცხვები" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "თარიღი (დროის გარეშე)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "თარიღი (დროსთან ერთად)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "ათობითი რიცხვი" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "ხანგრზლივობა" + +msgid "Email address" +msgstr "ელ. ფოსტის მისამართი" + +msgid "File path" +msgstr "გზა ფაილისაკენ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "რიცხვი მცოცავი წერტილით" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "მთელი" + +msgid "Big (8 byte) integer" +msgstr "დიდი მთელი (8-ბაიტიანი)" + +msgid "IPv4 address" +msgstr "IPv4 მისამართი" + +msgid "IP address" +msgstr "IP-მისამართი" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "ლოგიკური (True, False ან None)" + +msgid "Positive integer" +msgstr "დადებითი მთელი რიცხვი" + +msgid "Positive small integer" +msgstr "დადებითი პატარა მთელი რიცხვი" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "სლაგი (%(max_length)s-მდე)" + +msgid "Small integer" +msgstr "პატარა მთელი რიცხვი" + +msgid "Text" +msgstr "ტექსტი" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "დრო" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "დაუმუშავებელი ორობითი მონაცემები" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "უნივერსალური უნიკალური იდენტიფიკატორი." + +msgid "File" +msgstr "ფაილი" + +msgid "Image" +msgstr "გამოსახულება" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "გარე გასაღები (ტიპი განისაზღვრება დაკავშირებული ველის ტიპით)" + +msgid "One-to-one relationship" +msgstr "კავშირი ერთი-ერთტან" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "კავშირი მრავალი-მრავალთან" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "ეს ველი აუცილებელია." + +msgid "Enter a whole number." +msgstr "შეიყვანეთ მთელი რიცხვი" + +msgid "Enter a valid date." +msgstr "შეიყვანეთ სწორი თარიღი." + +msgid "Enter a valid time." +msgstr "შეიყვანეთ სწორი დრო." + +msgid "Enter a valid date/time." +msgstr "შეიყვანეთ სწორი თარიღი და დრო." + +msgid "Enter a valid duration." +msgstr "შეიყვანეთ სწორი დროის პერიოდი." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"ფაილი არ იყო გამოგზავნილი. შეამოწმეთ კოდირების ტიპი მოცემული ფორმისათვის." + +msgid "No file was submitted." +msgstr "ფაილი არ იყო გამოგზავნილი." + +msgid "The submitted file is empty." +msgstr "გამოგზავნილი ფაილი ცარიელია." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "ან გამოგზავნეთ ფაილი, ან მონიშნეთ \"წაშლის\" დროშა." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"ატვირთეთ დასაშვები გამოსახულება. თქვენს მიერ გამოგზავნილი ფაილი ან არ არის " +"გამოსახულება, ან დაზიანებულია." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "აირჩიეთ დასაშვები მნიშვნელობა. %(value)s დასაშვები არ არის." + +msgid "Enter a list of values." +msgstr "შეიყვანეთ მნიშვნელობების სია." + +msgid "Enter a complete value." +msgstr "შეიყვანეთ სრული მნიშვნელობა." + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(დამალული ველი %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "დალაგება" + +msgid "Delete" +msgstr "წავშალოთ" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "გთხოვთ, შეასწოროთ დუბლირებული მონაცემები %(field)s-თვის." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"გთხოვთ, შეასწოროთ დუბლირებული მნიშვნელობა %(field)s ველისთვის, რომელიც უნდა " +"იყოს უნიკალური." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"გთხოვთ, შეასწოროთ დუბლირებული მნიშვნელობა %(field_name)s ველისთვის, რომელიც " +"უნდა იყოს უნიკალური %(lookup)s-ზე, %(date_field)s-თვის." + +msgid "Please correct the duplicate values below." +msgstr "გთხოვთ, შეასწოროთ დუბლირებული მნიშვნელობები." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "აირჩიეთ დასაშვები მნიშვნელობა. ეს არჩევანი დასაშვები არ არის." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "წაშლა" + +msgid "Currently" +msgstr "ამჟამად" + +msgid "Change" +msgstr "შეცვლა" + +msgid "Unknown" +msgstr "გაურკვეველი" + +msgid "Yes" +msgstr "კი" + +msgid "No" +msgstr "არა" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "კი,არა,შესაძლოა" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d ბაიტი" +msgstr[1] "%(size)d ბაიტი" + +#, python-format +msgid "%s KB" +msgstr "%s კბ" + +#, python-format +msgid "%s MB" +msgstr "%s მბ" + +#, python-format +msgid "%s GB" +msgstr "%s გბ" + +#, python-format +msgid "%s TB" +msgstr "%s ტბ" + +#, python-format +msgid "%s PB" +msgstr "%s პბ" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "შუაღამე" + +msgid "noon" +msgstr "შუადღე" + +msgid "Monday" +msgstr "ორშაბათი" + +msgid "Tuesday" +msgstr "სამშაბათი" + +msgid "Wednesday" +msgstr "ოთხშაბათი" + +msgid "Thursday" +msgstr "ხუთშაბათი" + +msgid "Friday" +msgstr "პარასკევი" + +msgid "Saturday" +msgstr "შაბათი" + +msgid "Sunday" +msgstr "კვირა" + +msgid "Mon" +msgstr "ორშ" + +msgid "Tue" +msgstr "სამ" + +msgid "Wed" +msgstr "ოთხ" + +msgid "Thu" +msgstr "ხუთ" + +msgid "Fri" +msgstr "პარ" + +msgid "Sat" +msgstr "შაბ" + +msgid "Sun" +msgstr "კვრ" + +msgid "January" +msgstr "იანვარი" + +msgid "February" +msgstr "თებერვალი" + +msgid "March" +msgstr "მარტი" + +msgid "April" +msgstr "აპრილი" + +msgid "May" +msgstr "მაისი" + +msgid "June" +msgstr "ივნისი" + +msgid "July" +msgstr "ივლისი" + +msgid "August" +msgstr "აგვისტო" + +msgid "September" +msgstr "სექტემბერი" + +msgid "October" +msgstr "ოქტომბერი" + +msgid "November" +msgstr "ნოემბერი" + +msgid "December" +msgstr "დეკემბერი" + +msgid "jan" +msgstr "იან" + +msgid "feb" +msgstr "თებ" + +msgid "mar" +msgstr "მარ" + +msgid "apr" +msgstr "აპრ" + +msgid "may" +msgstr "მაი" + +msgid "jun" +msgstr "ივნ" + +msgid "jul" +msgstr "ივლ" + +msgid "aug" +msgstr "აგვ" + +msgid "sep" +msgstr "სექ" + +msgid "oct" +msgstr "ოქტ" + +msgid "nov" +msgstr "ნოე" + +msgid "dec" +msgstr "დეკ" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "იან." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "თებ." + +msgctxt "abbrev. month" +msgid "March" +msgstr "მარ." + +msgctxt "abbrev. month" +msgid "April" +msgstr "აპრ." + +msgctxt "abbrev. month" +msgid "May" +msgstr "მაი" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ივნ." + +msgctxt "abbrev. month" +msgid "July" +msgstr "ივლ." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "აგვ." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "სექტ." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "ოქტ." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "ნოემ." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "დეკ." + +msgctxt "alt. month" +msgid "January" +msgstr "იანვარი" + +msgctxt "alt. month" +msgid "February" +msgstr "თებერვალი" + +msgctxt "alt. month" +msgid "March" +msgstr "მარტი" + +msgctxt "alt. month" +msgid "April" +msgstr "აპრილი" + +msgctxt "alt. month" +msgid "May" +msgstr "მაისი" + +msgctxt "alt. month" +msgid "June" +msgstr "ივნისი" + +msgctxt "alt. month" +msgid "July" +msgstr "ივლისი" + +msgctxt "alt. month" +msgid "August" +msgstr "აგვისტო" + +msgctxt "alt. month" +msgid "September" +msgstr "სექტემბერი" + +msgctxt "alt. month" +msgid "October" +msgstr "ოქტომბერი" + +msgctxt "alt. month" +msgid "November" +msgstr "ნოემბერი" + +msgctxt "alt. month" +msgid "December" +msgstr "დეკემბერი" + +msgid "This is not a valid IPv6 address." +msgstr "ეს არ არის სწორი IPv6 მისამართი." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "ან" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d წელი" +msgstr[1] "%d წელი" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d თვე" +msgstr[1] "%d თვე" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d კვირა" +msgstr[1] "%d კვირა" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d დღე" +msgstr[1] "%d დღე" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d საათი" +msgstr[1] "%d საათი" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d წუთი" +msgstr[1] "%d წუთი" + +msgid "0 minutes" +msgstr "0 წუთი" + +msgid "Forbidden" +msgstr "აკრძალული" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "მეტი ინფორმაცია მისაწვდომია DEBUG=True-ს მეშვეობით." + +msgid "No year specified" +msgstr "არ არის მითითებული წელი" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "არ არის მითითებული თვე" + +msgid "No day specified" +msgstr "არ არის მითითებული დღე" + +msgid "No week specified" +msgstr "არ არის მითითებული კვირა" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s არ არსებობს" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"მომავალი %(verbose_name_plural)s არ არსებობს იმიტომ, რომ %(class_name)s." +"allow_future არის False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "არ მოიძებნა არცერთი მოთხოვნის თანმხვედრი %(verbose_name)s" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s-ის იდექსი" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ka/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ka/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ka/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..faf1985c16281433a30bf5f2d84a661ddf97ee13 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFNIWu literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ka/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4a9331c41412b56cb059241fd7dae7845a873f3c GIT binary patch literal 930 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po new file mode 100644 index 0000000..b0f6fa2 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/kab/LC_MESSAGES/django.po @@ -0,0 +1,1211 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Kabyle (http://www.transifex.com/django/django/language/" +"kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Tafrikanst" + +msgid "Arabic" +msgstr "Taɛṛabt" + +msgid "Asturian" +msgstr "Tasturyant" + +msgid "Azerbaijani" +msgstr "Tazeṛbayǧant" + +msgid "Bulgarian" +msgstr "Tabulgarit" + +msgid "Belarusian" +msgstr "Tabilurusit" + +msgid "Bengali" +msgstr "Tabelgalit" + +msgid "Breton" +msgstr "Tabrutunt" + +msgid "Bosnian" +msgstr "Tabusnit" + +msgid "Catalan" +msgstr "Takaṭalant" + +msgid "Czech" +msgstr "Tačikit" + +msgid "Welsh" +msgstr "Takusit" + +msgid "Danish" +msgstr "Tadanit" + +msgid "German" +msgstr "Talmanit" + +msgid "Lower Sorbian" +msgstr "Tasiṛbit n wadda" + +msgid "Greek" +msgstr "Tagrigit" + +msgid "English" +msgstr "Taglizit" + +msgid "Australian English" +msgstr "Taglizit n Ustralya" + +msgid "British English" +msgstr "Taglizit (UK)" + +msgid "Esperanto" +msgstr "Taspirantit" + +msgid "Spanish" +msgstr "Taspanit" + +msgid "Argentinian Spanish" +msgstr "Taspanit n Arjuntin" + +msgid "Colombian Spanish" +msgstr "Taspanit n Kulumbya" + +msgid "Mexican Spanish" +msgstr "Taspanit n Miksik" + +msgid "Nicaraguan Spanish" +msgstr "Taspanit n Nikaragwa" + +msgid "Venezuelan Spanish" +msgstr "Taspanit n Vinizwila" + +msgid "Estonian" +msgstr "Tastunit" + +msgid "Basque" +msgstr "Tabaskit" + +msgid "Persian" +msgstr "Tafarsit" + +msgid "Finnish" +msgstr "Tafinit" + +msgid "French" +msgstr "Tafṛansist" + +msgid "Frisian" +msgstr "" + +msgid "Irish" +msgstr "" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "" + +msgid "Hebrew" +msgstr "" + +msgid "Hindi" +msgstr "Tahendit" + +msgid "Croatian" +msgstr "Takarwasit" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Tahungarit" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "Tandunizit" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Taslandit" + +msgid "Italian" +msgstr "Taṭelyanit" + +msgid "Japanese" +msgstr "" + +msgid "Georgian" +msgstr "Tajyuṛjit" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Takazaxt" + +msgid "Khmer" +msgstr "" + +msgid "Kannada" +msgstr "Takannadat" + +msgid "Korean" +msgstr "Takurit" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "Talitwanit" + +msgid "Latvian" +msgstr "Talitunit" + +msgid "Macedonian" +msgstr "Tamasidunit" + +msgid "Malayalam" +msgstr "Tamayalamt" + +msgid "Mongolian" +msgstr "" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "Tabirmanit" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Tanipalit" + +msgid "Dutch" +msgstr "Tahulandit" + +msgid "Norwegian Nynorsk" +msgstr "" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "Tabenjabit" + +msgid "Polish" +msgstr "Tapulandit" + +msgid "Portuguese" +msgstr "Tapurtugit" + +msgid "Brazilian Portuguese" +msgstr "" + +msgid "Romanian" +msgstr "Tarumanit" + +msgid "Russian" +msgstr "Tarusit" + +msgid "Slovak" +msgstr "Tasluvakt" + +msgid "Slovenian" +msgstr "" + +msgid "Albanian" +msgstr "Talbanit" + +msgid "Serbian" +msgstr "Tasiṛbit" + +msgid "Serbian Latin" +msgstr "" + +msgid "Swedish" +msgstr "Taswidit" + +msgid "Swahili" +msgstr "Taswahilit" + +msgid "Tamil" +msgstr "Taṭamult" + +msgid "Telugu" +msgstr "" + +msgid "Thai" +msgstr "" + +msgid "Turkish" +msgstr "Taṭurkit" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "" + +msgid "Urdu" +msgstr "" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "" + +msgid "Simplified Chinese" +msgstr "" + +msgid "Traditional Chinese" +msgstr "" + +msgid "Messages" +msgstr "Iznan" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Sekcem azal ameɣtu." + +msgid "Enter a valid URL." +msgstr "" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "Sekcem tansa imayl tameɣtut." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Sekcem tansa IPv4 tameɣtut." + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "Sekcem amḍan." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "akked" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "" + +msgid "This field cannot be blank." +msgstr "" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Azemz (s wakud)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Tanzagt" + +msgid "Email address" +msgstr "Tansa email" + +msgid "File path" +msgstr "Abrid n ufaylu" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Ummid" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "Tansa IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "Aḍris" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Akud" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Afaylu" + +msgid "Image" +msgstr "Tugna" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "" + +msgid "Enter a whole number." +msgstr "Sekcem amḍan ummid." + +msgid "Enter a valid date." +msgstr "" + +msgid "Enter a valid time." +msgstr "" + +msgid "Enter a valid date/time." +msgstr "" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +msgid "No file was submitted." +msgstr "Afaylu ur yettwazen ara." + +msgid "The submitted file is empty." +msgstr "" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "" + +msgid "Enter a complete value." +msgstr "Sekcem azal ummid." + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Amizwer" + +msgid "Delete" +msgstr "KKES" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Sfeḍ" + +msgid "Currently" +msgstr "Tura" + +msgid "Change" +msgstr "Beddel" + +msgid "Unknown" +msgstr "Arussin" + +msgid "Yes" +msgstr "Ih" + +msgid "No" +msgstr "Uhu" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%s KB" +msgstr "%s KAṬ" + +#, python-format +msgid "%s MB" +msgstr "%s MAṬ" + +#, python-format +msgid "%s GB" +msgstr "%s GAṬ" + +#, python-format +msgid "%s TB" +msgstr "%s TAṬ" + +#, python-format +msgid "%s PB" +msgstr "%s PAṬ" + +msgid "p.m." +msgstr "m.d." + +msgid "a.m." +msgstr "f.t." + +msgid "PM" +msgstr "MD" + +msgid "AM" +msgstr "FT" + +msgid "midnight" +msgstr "ttnaṣfa n yiḍ" + +msgid "noon" +msgstr "ttnaṣfa n uzal" + +msgid "Monday" +msgstr "Arim" + +msgid "Tuesday" +msgstr "Aram" + +msgid "Wednesday" +msgstr "Ahad" + +msgid "Thursday" +msgstr "Amhad" + +msgid "Friday" +msgstr "Sem" + +msgid "Saturday" +msgstr "Sed" + +msgid "Sunday" +msgstr "Acer" + +msgid "Mon" +msgstr "Ari" + +msgid "Tue" +msgstr "Ara" + +msgid "Wed" +msgstr "Aha" + +msgid "Thu" +msgstr "Amh" + +msgid "Fri" +msgstr "Sem" + +msgid "Sat" +msgstr "Sed" + +msgid "Sun" +msgstr "Ace" + +msgid "January" +msgstr "Yennayer" + +msgid "February" +msgstr "Fuṛaṛ" + +msgid "March" +msgstr "Meɣres" + +msgid "April" +msgstr "Yebrir" + +msgid "May" +msgstr "Mayyu" + +msgid "June" +msgstr "Yunyu" + +msgid "July" +msgstr "Yulyu" + +msgid "August" +msgstr "Ɣuct" + +msgid "September" +msgstr "Ctamber" + +msgid "October" +msgstr "Tuber" + +msgid "November" +msgstr "Wamber" + +msgid "December" +msgstr "Dujamber" + +msgid "jan" +msgstr "yen" + +msgid "feb" +msgstr "fuṛ" + +msgid "mar" +msgstr "meɣ" + +msgid "apr" +msgstr "yeb" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "yun" + +msgid "jul" +msgstr "yul" + +msgid "aug" +msgstr "ɣuc" + +msgid "sep" +msgstr "cte" + +msgid "oct" +msgstr "tub" + +msgid "nov" +msgstr "wam" + +msgid "dec" +msgstr "duj" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Yen." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Fuṛ." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Meɣres" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Yebrir" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mayyu" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Yunyu" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Yulyu" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ɣuc." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Tub." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Wam." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Duj." + +msgctxt "alt. month" +msgid "January" +msgstr "Yennayer" + +msgctxt "alt. month" +msgid "February" +msgstr "Fuṛaṛ" + +msgctxt "alt. month" +msgid "March" +msgstr "Meɣres" + +msgctxt "alt. month" +msgid "April" +msgstr "Yebrir" + +msgctxt "alt. month" +msgid "May" +msgstr "Mayyu" + +msgctxt "alt. month" +msgid "June" +msgstr "Yunyu" + +msgctxt "alt. month" +msgid "July" +msgstr "Yulyu" + +msgctxt "alt. month" +msgid "August" +msgstr "Ɣuct" + +msgctxt "alt. month" +msgid "September" +msgstr "Ctamber" + +msgctxt "alt. month" +msgid "October" +msgstr "Tuber" + +msgctxt "alt. month" +msgid "November" +msgstr "Wamber" + +msgctxt "alt. month" +msgid "December" +msgstr "Dujamber" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "neɣ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "0 minutes" +msgstr "0 n tisdatin" + +msgid "Forbidden" +msgstr "Yegdel" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "Bdu s Django" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..38300b20556650b790c71c214193519f0a85b772 GIT binary patch literal 13148 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po new file mode 100644 index 0000000..2858be0 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/kk/LC_MESSAGES/django.po @@ -0,0 +1,1223 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Baurzhan Muftakhidinov , 2015 +# Zharzhan Kulmyrza , 2011 +# Leo Trubach , 2017 +# Nurlan Rakhimzhanov , 2011 +# yun_man_ger , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Kazakh (http://www.transifex.com/django/django/language/kk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kk\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "Араб" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Әзірбайжан" + +msgid "Bulgarian" +msgstr "Болгар" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "Бенгал" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "Босния" + +msgid "Catalan" +msgstr "Каталан" + +msgid "Czech" +msgstr "Чех" + +msgid "Welsh" +msgstr "Валлий" + +msgid "Danish" +msgstr "Дания" + +msgid "German" +msgstr "Неміс" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Грек" + +msgid "English" +msgstr "Ағылшын" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "Британдық ағылшын" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "Испан" + +msgid "Argentinian Spanish" +msgstr "Аргентиналық испан" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Мексикалық испан" + +msgid "Nicaraguan Spanish" +msgstr "Никарагуа испан" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "Эстон" + +msgid "Basque" +msgstr "Баск" + +msgid "Persian" +msgstr "Парсы" + +msgid "Finnish" +msgstr "Фин" + +msgid "French" +msgstr "Француз" + +msgid "Frisian" +msgstr "Фриз" + +msgid "Irish" +msgstr "Ирландия" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Галиц" + +msgid "Hebrew" +msgstr "Иврит" + +msgid "Hindi" +msgstr "Хинди" + +msgid "Croatian" +msgstr "Кроат" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Венгрия" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "Индонезия" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Исладия" + +msgid "Italian" +msgstr "Итальян" + +msgid "Japanese" +msgstr "Жапон" + +msgid "Georgian" +msgstr "Грузин" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Қазақша" + +msgid "Khmer" +msgstr "Кхмер" + +msgid "Kannada" +msgstr "Канада" + +msgid "Korean" +msgstr "Корей" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "Литва" + +msgid "Latvian" +msgstr "Латвия" + +msgid "Macedonian" +msgstr "Македон" + +msgid "Malayalam" +msgstr "Малаялам" + +msgid "Mongolian" +msgstr "Монғол" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "Голланд" + +msgid "Norwegian Nynorsk" +msgstr "Норвегиялық нюнор" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "Пенджаб" + +msgid "Polish" +msgstr "Поляк" + +msgid "Portuguese" +msgstr "Португал" + +msgid "Brazilian Portuguese" +msgstr "Бразилиялық португал" + +msgid "Romanian" +msgstr "Роман" + +msgid "Russian" +msgstr "Орыс" + +msgid "Slovak" +msgstr "Словак" + +msgid "Slovenian" +msgstr "Словениялық" + +msgid "Albanian" +msgstr "Албан" + +msgid "Serbian" +msgstr "Серб" + +msgid "Serbian Latin" +msgstr "Сербиялық латын" + +msgid "Swedish" +msgstr "Швед" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "Тамиль" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Thai" +msgstr "Тай" + +msgid "Turkish" +msgstr "Түрік" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "Украин" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Вьетнам" + +msgid "Simplified Chinese" +msgstr "Жеңілдетілген қытай" + +msgid "Traditional Chinese" +msgstr "Дәстүрлі қытай" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Тура мәнін енгізіңіз." + +msgid "Enter a valid URL." +msgstr "Тура URL-ді енгізіңіз." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Тура IPv4 адресті енгізіңіз." + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "Тек үтірлермен бөлінген цифрлерді енгізіңіз." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Бұл мәннің %(limit_value)s екендігін тексеріңіз (қазір ол %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Бұл мәннің мынадан %(limit_value)s кіші немесе тең екендігін тексеріңіз." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Бұл мәннің мынадан %(limit_value)s үлкен немесе тең екендігін тексеріңіз." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "Сан енгізіңіз." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "және" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Бұл жолақ null болмау керек." + +msgid "This field cannot be blank." +msgstr "Бұл жолақ бос болмау керек." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s %(field_label)s жолақпен бұрыннан бар." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Жолақтын түрі: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (True немесе False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Жол (%(max_length)s символға дейін)" + +msgid "Comma-separated integers" +msgstr "Үтірмен бөлінген бүтін сандар" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Дата (уақытсыз)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Дата (уақытпен)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Ондық сан" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Email адрес" + +msgid "File path" +msgstr "Файл жолы" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Реал сан" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Бүтін сан" + +msgid "Big (8 byte) integer" +msgstr "Ұзын (8 байт) бүтін сан" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "IP мекенжайы" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Булеан (True, False немесе None)" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "Мәтін" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Уақыт" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (тип related field арқылы анықталады)" + +msgid "One-to-one relationship" +msgstr "One-to-one қатынас" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Many-to-many қатынас" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Бұл өрісті толтыру міндетті." + +msgid "Enter a whole number." +msgstr "Толық санды енгізіңіз." + +msgid "Enter a valid date." +msgstr "Дұрыс күнді енгізіңіз." + +msgid "Enter a valid time." +msgstr "Дұрыс уақытты енгізіңіз." + +msgid "Enter a valid date/time." +msgstr "Дұрыс күнді/уақытты енгізіңіз." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ешқандай файл жіберілмеді. Форманың кодтау түрін тексеріңіз." + +msgid "No file was submitted." +msgstr "Ешқандай файл жіберілмеді." + +msgid "The submitted file is empty." +msgstr "Бос файл жіберілді." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Файлды жіберіңіз немесе тазалауды белгіленіз, екеуін бірге емес." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Дұрыс сүретті жүктеңіз. Сіз жүктеген файл - сүрет емес немесе бұзылған сүрет." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Дұрыс тандау жасаңыз. %(value)s дұрыс тандау емес." + +msgid "Enter a list of values." +msgstr "Мәндер тізімін енгізіңіз." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Сұрыптау" + +msgid "Delete" +msgstr "Жою" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s жолақтағы қайталанған мәнді түзетіңіз." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "%(field)s жолақтағы мәнді түзетіңіз, ол бірегей болу керек." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s жолақтағы мәнді түзетіңіз. Ол %(date_field)s жолақтың ішінде " +"%(lookup)s үшін бірегей болу керек." + +msgid "Please correct the duplicate values below." +msgstr "Қайталанатын мәндерді түзетіңіз." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Дұрыс нұсқаны таңдаңыз. Бұл нұсқа дұрыс таңдаулардың арасында жоқ." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Тазалау" + +msgid "Currently" +msgstr "Ағымдағы" + +msgid "Change" +msgstr "Түзету" + +msgid "Unknown" +msgstr "Белгісіз" + +msgid "Yes" +msgstr "Иә" + +msgid "No" +msgstr "Жоқ" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "иә,жоқ,мүмкін" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" +msgstr[1] "%(size)d байт" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s ГБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "Т.Қ." + +msgid "a.m." +msgstr "Т.Ж." + +msgid "PM" +msgstr "ТҚ" + +msgid "AM" +msgstr "ТЖ" + +msgid "midnight" +msgstr "түнжарым" + +msgid "noon" +msgstr "түсқайта" + +msgid "Monday" +msgstr "Дүйсенбі" + +msgid "Tuesday" +msgstr "Сейсенбі" + +msgid "Wednesday" +msgstr "Сәрсенбі" + +msgid "Thursday" +msgstr "Бейсенбі" + +msgid "Friday" +msgstr "Жума" + +msgid "Saturday" +msgstr "Сенбі" + +msgid "Sunday" +msgstr "Жексенбі" + +msgid "Mon" +msgstr "Дб" + +msgid "Tue" +msgstr "Сб" + +msgid "Wed" +msgstr "Ср" + +msgid "Thu" +msgstr "Бс" + +msgid "Fri" +msgstr "Жм" + +msgid "Sat" +msgstr "Сн" + +msgid "Sun" +msgstr "Жк" + +msgid "January" +msgstr "Қаңтар" + +msgid "February" +msgstr "Ақпан" + +msgid "March" +msgstr "Наурыз" + +msgid "April" +msgstr "Сәуір" + +msgid "May" +msgstr "Мамыр" + +msgid "June" +msgstr "Маусым" + +msgid "July" +msgstr "Шілде" + +msgid "August" +msgstr "Тамыз" + +msgid "September" +msgstr "Қыркүйек" + +msgid "October" +msgstr "Қазан" + +msgid "November" +msgstr "Қараша" + +msgid "December" +msgstr "Желтоқсан" + +msgid "jan" +msgstr "қан" + +msgid "feb" +msgstr "ақп" + +msgid "mar" +msgstr "нау" + +msgid "apr" +msgstr "сәу" + +msgid "may" +msgstr "мам" + +msgid "jun" +msgstr "мау" + +msgid "jul" +msgstr "шіл" + +msgid "aug" +msgstr "там" + +msgid "sep" +msgstr "қыр" + +msgid "oct" +msgstr "қаз" + +msgid "nov" +msgstr "қар" + +msgid "dec" +msgstr "жел" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Қаң." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Ақп." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Наурыз" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Сәуір" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Мамыр" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Маусым" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Шілде" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Там." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Қыр." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Қаз." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Қар." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Жел." + +msgctxt "alt. month" +msgid "January" +msgstr "Қаңтар" + +msgctxt "alt. month" +msgid "February" +msgstr "Ақпан" + +msgctxt "alt. month" +msgid "March" +msgstr "Наурыз" + +msgctxt "alt. month" +msgid "April" +msgstr "Сәуір" + +msgctxt "alt. month" +msgid "May" +msgstr "Мамыр" + +msgctxt "alt. month" +msgid "June" +msgstr "Маусым" + +msgctxt "alt. month" +msgid "July" +msgstr "Шілде" + +msgctxt "alt. month" +msgid "August" +msgstr "Тамыз" + +msgctxt "alt. month" +msgid "September" +msgstr "Қыркүйек" + +msgctxt "alt. month" +msgid "October" +msgstr "Қазан" + +msgctxt "alt. month" +msgid "November" +msgstr "Қараша" + +msgctxt "alt. month" +msgid "December" +msgstr "Желтоқсан" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "немесе" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "Жыл таңдалмаған" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Ай таңдалмаған" + +msgid "No day specified" +msgstr "Күн таңдалмаған" + +msgid "No week specified" +msgstr "Апта таңдалмаған" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s қол жеткізгісіз" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Болашақ %(verbose_name_plural)s қол жеткізгісіз, себебі %(class_name)s." +"allow_future False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "%(verbose_name)s табылған жоқ" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..3de6c806d2fd44ee29deac961a4654d2526361cc GIT binary patch literal 7223 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 W8^=krlvAykkMo`rA}Y;gto{jnaGKQs literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po new file mode 100644 index 0000000..c706129 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/km/LC_MESSAGES/django.po @@ -0,0 +1,1196 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Khmer (http://www.transifex.com/django/django/language/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "ភាសាអារ៉ាប់" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "" + +msgid "Bulgarian" +msgstr "" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "ភាសាបេឡារុស្ស" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "" + +msgid "Catalan" +msgstr "" + +msgid "Czech" +msgstr "ភាសាឆេក" + +msgid "Welsh" +msgstr "ភាសាអ៊ុយក្រែន" + +msgid "Danish" +msgstr "ភាសាដាណឺម៉ាក" + +msgid "German" +msgstr "ភាសាអាល្លឺម៉ង់" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "ភាសាហ្កែលិគ" + +msgid "English" +msgstr "ភាសាអង់គ្លេស" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "ភាសាអេស្ប៉ាញ" + +msgid "Argentinian Spanish" +msgstr "" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "" + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "" + +msgid "Basque" +msgstr "" + +msgid "Persian" +msgstr "" + +msgid "Finnish" +msgstr "ភាសាហ្វាំងឡង់" + +msgid "French" +msgstr "ភាសាបារាំង" + +msgid "Frisian" +msgstr "" + +msgid "Irish" +msgstr "" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "ភាសាហ្កែលិគ" + +msgid "Hebrew" +msgstr "ភាសាហេប្រិ" + +msgid "Hindi" +msgstr "" + +msgid "Croatian" +msgstr "" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "ភាសាហុងគ្រី" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "ភាសាអ៉ីស្លង់" + +msgid "Italian" +msgstr "ភាសាអ៊ីតាលី" + +msgid "Japanese" +msgstr "ភាសាជប៉ុន" + +msgid "Georgian" +msgstr "" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "" + +msgid "Kannada" +msgstr "" + +msgid "Korean" +msgstr "" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "" + +msgid "Latvian" +msgstr "" + +msgid "Macedonian" +msgstr "" + +msgid "Malayalam" +msgstr "" + +msgid "Mongolian" +msgstr "" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "ភាសាហ្វាំងឡង់" + +msgid "Norwegian Nynorsk" +msgstr "" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "" + +msgid "Polish" +msgstr "" + +msgid "Portuguese" +msgstr "" + +msgid "Brazilian Portuguese" +msgstr "" + +msgid "Romanian" +msgstr "ភាសារូម៉ានី" + +msgid "Russian" +msgstr "ភាសាรัរូស្ស៉ី" + +msgid "Slovak" +msgstr "ភាសាស្លូវ៉ាគី" + +msgid "Slovenian" +msgstr "ភាសាស្លូវ៉ានី" + +msgid "Albanian" +msgstr "" + +msgid "Serbian" +msgstr "" + +msgid "Serbian Latin" +msgstr "" + +msgid "Swedish" +msgstr "ភាសាស៊ុយអែដ" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "ភាសាតាមីល" + +msgid "Telugu" +msgstr "" + +msgid "Thai" +msgstr "" + +msgid "Turkish" +msgstr "ភាសាទួរគី" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "ភាសាអ៊ុយក្រែន" + +msgid "Urdu" +msgstr "" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "" + +msgid "Simplified Chinese" +msgstr "ភាសាចិនសាមញ្ញ" + +msgid "Traditional Chinese" +msgstr "ភាសាចិនបុរាណ" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "" + +msgid "Enter a valid URL." +msgstr "" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "" + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "បំពេញតែលេខហើយផ្តាច់ចេញពីគ្នាដោយសញ្ញាក្បៀស។" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +msgid "Enter a number." +msgstr "" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "និង" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "ចាំបាច់បំពេញទិន្នន័យកន្លែងនេះ។" + +msgid "This field cannot be blank." +msgstr "" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (អាច​ជា True រឺ False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "ចំនួនពិត(Integer) ដែលផ្តាច់ចេញពីគ្នាដោយ​ក្បៀស" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "កាល​បរិច្ឆេទ (Date) (មិនមានសរសេរម៉ោង)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "កាល​បរិច្ឆេទ (Date) (មានសរសេរម៉ោង)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "ចំនួនទសភាគ (Decimal)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "" + +msgid "File path" +msgstr "ផ្លូវទៅកាន់ឯកសារ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "ចំនួនពិត(Integer)" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "លេខ IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (អាចជា True​ រឺ False រឺ None)" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "អត្ថបទ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "ពេលវេលា" + +msgid "URL" +msgstr "អាស័យដ្ឋានគេហទំព័រ(URL)" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "ចាំបាច់បំពេញទិន្នន័យកន្លែងនេះ។" + +msgid "Enter a whole number." +msgstr "បំពេញចំនួនទាំងអស់។" + +msgid "Enter a valid date." +msgstr "" + +msgid "Enter a valid time." +msgstr "" + +msgid "Enter a valid date/time." +msgstr "" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "មិនមានឯកសារត្រូវបានជ្រើសរើស។ សូមពិនិត្យប្រភេទឯកសារម្តងទៀត។" + +msgid "No file was submitted." +msgstr "" + +msgid "The submitted file is empty." +msgstr "ពុំមានឯកសារ។​" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "រូបភាពដែលទាញយកមិនត្រឹមត្រូវ ប្រហែលជាមិនមែនជារូបភាព ឬក៏ជា រូបភាពខូច។" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" + +msgid "Order" +msgstr "" + +msgid "Delete" +msgstr "លប់" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "" + +msgid "Currently" +msgstr "" + +msgid "Change" +msgstr "ផ្លាស់ប្តូរ" + +msgid "Unknown" +msgstr "មិន​ដឹង" + +msgid "Yes" +msgstr "យល់ព្រម" + +msgid "No" +msgstr "មិនយល់ព្រម" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "យល់ព្រម មិនយល់ព្រម​ ប្រហែល" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" + +#, python-format +msgid "%s KB" +msgstr "" + +#, python-format +msgid "%s MB" +msgstr "" + +#, python-format +msgid "%s GB" +msgstr "" + +#, python-format +msgid "%s TB" +msgstr "" + +#, python-format +msgid "%s PB" +msgstr "" + +msgid "p.m." +msgstr "" + +msgid "a.m." +msgstr "" + +msgid "PM" +msgstr "" + +msgid "AM" +msgstr "" + +msgid "midnight" +msgstr "" + +msgid "noon" +msgstr "" + +msgid "Monday" +msgstr "ច័ន្ទ" + +msgid "Tuesday" +msgstr "អង្គារ" + +msgid "Wednesday" +msgstr "ពុធ" + +msgid "Thursday" +msgstr "ព្រហស្បតិ៍" + +msgid "Friday" +msgstr "សុក្រ" + +msgid "Saturday" +msgstr "សៅរ៍" + +msgid "Sunday" +msgstr "អាទិត្យ" + +msgid "Mon" +msgstr "" + +msgid "Tue" +msgstr "" + +msgid "Wed" +msgstr "" + +msgid "Thu" +msgstr "" + +msgid "Fri" +msgstr "" + +msgid "Sat" +msgstr "" + +msgid "Sun" +msgstr "" + +msgid "January" +msgstr "មករា" + +msgid "February" +msgstr "កុម្ភៈ" + +msgid "March" +msgstr "មិនា" + +msgid "April" +msgstr "មេសា" + +msgid "May" +msgstr "ឧសភា" + +msgid "June" +msgstr "មិថុនា" + +msgid "July" +msgstr "កក្កដា" + +msgid "August" +msgstr "សីហា" + +msgid "September" +msgstr "កញ្ញា" + +msgid "October" +msgstr "តុលា" + +msgid "November" +msgstr "វិច្ឆិកា" + +msgid "December" +msgstr "ធ្នូ" + +msgid "jan" +msgstr "មករា" + +msgid "feb" +msgstr "កុម្ភះ" + +msgid "mar" +msgstr "មិនា" + +msgid "apr" +msgstr "មេសា" + +msgid "may" +msgstr "ឧសភា" + +msgid "jun" +msgstr "មិថុនា" + +msgid "jul" +msgstr "កក្កដា" + +msgid "aug" +msgstr "សីហា" + +msgid "sep" +msgstr "កញ្ញា" + +msgid "oct" +msgstr "តុលា" + +msgid "nov" +msgstr "វិច្ឆិកា" + +msgid "dec" +msgstr "ធ្នូ" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +msgctxt "abbrev. month" +msgid "March" +msgstr "មិនា" + +msgctxt "abbrev. month" +msgid "April" +msgstr "មេសា" + +msgctxt "abbrev. month" +msgid "May" +msgstr "ឧសភា" + +msgctxt "abbrev. month" +msgid "June" +msgstr "មិថុនា" + +msgctxt "abbrev. month" +msgid "July" +msgstr "កក្កដា" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +msgctxt "alt. month" +msgid "January" +msgstr "មករា" + +msgctxt "alt. month" +msgid "February" +msgstr "កុម្ភៈ" + +msgctxt "alt. month" +msgid "March" +msgstr "មិនា" + +msgctxt "alt. month" +msgid "April" +msgstr "មេសា" + +msgctxt "alt. month" +msgid "May" +msgstr "ឧសភា" + +msgctxt "alt. month" +msgid "June" +msgstr "មិថុនា" + +msgctxt "alt. month" +msgid "July" +msgstr "កក្កដា" + +msgctxt "alt. month" +msgid "August" +msgstr "សីហា" + +msgctxt "alt. month" +msgid "September" +msgstr "កញ្ញា" + +msgctxt "alt. month" +msgid "October" +msgstr "តុលា" + +msgctxt "alt. month" +msgid "November" +msgstr "វិច្ឆិកា" + +msgctxt "alt. month" +msgid "December" +msgstr "ធ្នូ" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "" + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/km/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/km/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/km/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f47e311e31f14c971d4fc58106c9083cc4a10a26 GIT binary patch literal 193 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po new file mode 100644 index 0000000..f2ba2aa --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po @@ -0,0 +1,1232 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jannis Leidel , 2011 +# karthikbgl , 2011-2012 +# Ramakrishna Yekulla , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Kannada (http://www.transifex.com/django/django/language/" +"kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "ಅರೇಬಿಕ್" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "ಆಜೆರ್ಬೈಜನಿ" + +msgid "Bulgarian" +msgstr "ಬಲ್ಗೇರಿಯನ್" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "ಬೆಂಗಾಲಿ" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "ಬೋಸ್ನಿಯನ್" + +msgid "Catalan" +msgstr "ಕೆಟಲಾನ್" + +msgid "Czech" +msgstr "ಝೆಕ್" + +msgid "Welsh" +msgstr "ವೆಲ್ಷ್" + +msgid "Danish" +msgstr "ಡ್ಯಾನಿಷ್" + +msgid "German" +msgstr "ಜರ್ಮನ್" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "ಗ್ರೀಕ್" + +msgid "English" +msgstr "ಇಂಗ್ಲಿಷ್" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "ಬ್ರಿಟೀಶ್ ಇಂಗ್ಲಿಷ್" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "ಸ್ಪ್ಯಾನಿಷ್" + +msgid "Argentinian Spanish" +msgstr "ಅರ್ಜೆಂಟಿನಿಯನ್ ಸ್ಪಾನಿಷ್" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "ಮೆಕ್ಸಿಕನ್ ಸ್ಪಾನಿಷ್" + +msgid "Nicaraguan Spanish" +msgstr "nicarguan ಸ್ಪಾನಿಷ್" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "ಎಷ್ಟೋನಿಯನ್" + +msgid "Basque" +msgstr "ಬಾಸ್ಕ್‍" + +msgid "Persian" +msgstr "ಪರ್ಶಿಯನ್" + +msgid "Finnish" +msgstr "ಫಿನ್ನಿಶ್" + +msgid "French" +msgstr "ಫ್ರೆಂಚ್" + +msgid "Frisian" +msgstr "ಫ್ರಿಸಿಯನ್" + +msgid "Irish" +msgstr "ಐರಿಶ್" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "ಗೆಲಿಶಿಯನ್" + +msgid "Hebrew" +msgstr "ಹೀಬ್ರೂ" + +msgid "Hindi" +msgstr "ಹಿಂದಿ" + +msgid "Croatian" +msgstr "ಕ್ರೊಯೇಶಿಯನ್" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "ಹಂಗೇರಿಯನ್" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "ಇಂಡೋನಿಶಿಯನ್" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "ಐಸ್‌ಲ್ಯಾಂಡಿಕ್" + +msgid "Italian" +msgstr "ಇಟಾಲಿಯನ್" + +msgid "Japanese" +msgstr "ಜಾಪನೀಸ್" + +msgid "Georgian" +msgstr "ಜಾರ್ಜೆಯನ್ " + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "ಖಮೇರ್" + +msgid "Kannada" +msgstr "ಕನ್ನಡ" + +msgid "Korean" +msgstr "ಕೊರಿಯನ್" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "ಲಿತುವಾನಿಯನ್ " + +msgid "Latvian" +msgstr "ಲಾಟ್ವಿಯನ್" + +msgid "Macedonian" +msgstr "ಮೆಸಡೊನಿಯನ್" + +msgid "Malayalam" +msgstr "ಮಲಯಾಳಂ" + +msgid "Mongolian" +msgstr "ಮಂಗೊಲಿಯನ್" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "ಡಚ್" + +msgid "Norwegian Nynorsk" +msgstr "ನಾರ್ವೇಜಿಯನ್ ನಿನೋರ್ಕ್" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "ಪಂಜಾಬಿ" + +msgid "Polish" +msgstr "ಪೋಲಿಷ್" + +msgid "Portuguese" +msgstr "ಪೋರ್ಚುಗೀಸ್" + +msgid "Brazilian Portuguese" +msgstr "ಬ್ರಜೀಲಿಯನ್ ಪೋರ್ಚುಗೀಸ್" + +msgid "Romanian" +msgstr "ರೋಮೇನಿಯನ್" + +msgid "Russian" +msgstr "ರಶಿಯನ್" + +msgid "Slovak" +msgstr "ಸ್ಲೋವಾಕ್" + +msgid "Slovenian" +msgstr "ಸ್ಲೋವೇನಿಯನ್" + +msgid "Albanian" +msgstr "ಅಲ್ಬೆನಿಯನ್ " + +msgid "Serbian" +msgstr "ಸರ್ಬಿಯನ್" + +msgid "Serbian Latin" +msgstr "ಸರ್ಬಿಯನ್ ಲ್ಯಾಟಿನ್" + +msgid "Swedish" +msgstr "ಸ್ವೀಡಿಷ್" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "ತಮಿಳು" + +msgid "Telugu" +msgstr "ತೆಲುಗು" + +msgid "Thai" +msgstr "ಥಾಯ್" + +msgid "Turkish" +msgstr "ಟರ್ಕಿಶ್" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "ಉಕ್ರೇನಿಯನ್" + +msgid "Urdu" +msgstr "ಉರ್ದು" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "ವಿಯೆತ್ನಾಮೀಸ್" + +msgid "Simplified Chinese" +msgstr "ಸರಳೀಕೃತ ಚೈನೀಸ್" + +msgid "Traditional Chinese" +msgstr "ಸಂಪ್ರದಾಯಿಕ ಚೈನೀಸ್ " + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "ಸಿಂಧುವಾದ ಮೌಲ್ಯವನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a valid URL." +msgstr "ಸರಿಯಾದ ಒಂದು URL ಅನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "ಒಂದು ಸರಿಯಾದ IPv4 ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a valid IPv6 address." +msgstr "ಮಾನ್ಯವಾದ IPv6 ವಿಳಾಸ ದಾಖಲಿಸಿ" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "ಮಾನ್ಯವಾದ IPv4 ಅಥವಾ IPv6 ವಿಳಾಸ ದಾಖಲಿಸಿ" + +msgid "Enter only digits separated by commas." +msgstr "ಅಲ್ಪವಿರಾಮ(,)ಗಳಿಂದ ಬೇರ್ಪಟ್ಟ ಅಂಕೆಗಳನ್ನು ಮಾತ್ರ ಬರೆಯಿರಿ." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"ಈ ಮೌಲ್ಯವು %(limit_value)s ಆಗಿದೆ ಎಂದು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳಿ (ಇದು %(show_value)s ಆಗಿದೆ)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"ಈ ಮೌಲ್ಯವು %(limit_value)s ಕ್ಕಿಂತ ಕಡಿಮೆಯ ಅಥವ ಸಮನಾದ ಮೌಲ್ಯವಾಗಿದೆ ಎಂದು ಖಾತ್ರಿ " +"ಮಾಡಿಕೊಳ್ಳಿ." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"ಈ ಮೌಲ್ಯವು %(limit_value)s ಕ್ಕಿಂತ ಹೆಚ್ಚಿನ ಅಥವ ಸಮನಾದ ಮೌಲ್ಯವಾಗಿದೆ ಎಂದು ಖಾತ್ರಿ " +"ಮಾಡಿಕೊಳ್ಳಿ." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "ಒಂದು ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "ಮತ್ತು" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "ಈ ಅಂಶವನ್ನು ಖಾಲಿ ಬಿಡುವಂತಿಲ್ಲ." + +msgid "This field cannot be blank." +msgstr "ಈ ಸ್ಥಳವು ಖಾಲಿ ಇರುವಂತಿಲ್ಲ." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" +"ಈ %(field_label)s ಅನ್ನು ಹೊಂದಿರುವ ಒಂದು %(model_name)s ಈಗಾಗಲೆ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "ಕ್ಷೇತ್ರದ ಬಗೆ: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "ಬೂಲಿಯನ್ (ಹೌದು ಅಥವ ಅಲ್ಲ)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "ಪದಪುಂಜ (%(max_length)s ವರೆಗೆ)" + +msgid "Comma-separated integers" +msgstr "ಅಲ್ಪವಿರಾಮ(,) ದಿಂದ ಬೇರ್ಪಟ್ಟ ಪೂರ್ಣಸಂಖ್ಯೆಗಳು" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "ದಿನಾಂಕ (ಸಮಯವಿಲ್ಲದೆ)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "ದಿನಾಂಕ (ಸಮಯದೊಂದಿಗೆ)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "ದಶಮಾನ ಸಂಖ್ಯೆ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "" + +msgid "File path" +msgstr "ಕಡತದ ಸ್ಥಾನಪಥ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "ತೇಲುವ-ಬಿಂದು ಸಂಖ್ಯೆ" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "ಪೂರ್ಣಾಂಕ" + +msgid "Big (8 byte) integer" +msgstr "ಬೃಹತ್ (೮ ಬೈಟ್) ಪೂರ್ಣ ಸಂಖ್ಯೆ" + +msgid "IPv4 address" +msgstr "IPv4 ವಿಳಾಸ" + +msgid "IP address" +msgstr "IP ವಿಳಾಸ" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "ಬೂಲಿಯನ್ (ನಿಜ, ಸುಳ್ಳು ಅಥವ ಯಾವುದೂ ಅಲ್ಲ ಇವುಗಳಲ್ಲಿ ಒಂದು)" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "ಪಠ್ಯ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "ಸಮಯ" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "ಬಾಹ್ಯ ಕೀಲಿ (ಸಂಬಂಧಿತ ಸ್ಥಳದಿಂದ ಪ್ರಕಾರವನ್ನು ನಿರ್ಧರಿಸಲಾಗುತ್ತದೆ)" + +msgid "One-to-one relationship" +msgstr "ಒನ್-ಟು-ಒನ್ (ಪರಸ್ಪರ) ಸಂಬಂಧ" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "ಮೆನಿ-ಟು-ಮೆನಿ (ಸಾರ್ವಜನಿಕ) ಸಂಬಂಧ" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "ಈ ಸ್ಥಳವು ಅಗತ್ಯವಿರುತ್ತದೆ." + +msgid "Enter a whole number." +msgstr "ಪೂರ್ಣಾಂಕವೊಂದನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a valid date." +msgstr "ಸರಿಯಾದ ದಿನಾಂಕವನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a valid time." +msgstr "ಸರಿಯಾದ ಸಮಯವನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a valid date/time." +msgstr "ಸರಿಯಾದ ದಿನಾಂಕ/ಸಮಯವನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"ಯಾವದೇ ಕಡತವನ್ನೂ ಸಲ್ಲಿಸಲಾಗಿಲ್ಲ. ನಮೂನೆಯ ಮೇಲಿನ ಸಂಕೇತೀಕರಣ (ಎನ್ಕೋಡಿಂಗ್) ಬಗೆಯನ್ನು " +"ಪರೀಕ್ಷಿಸಿ." + +msgid "No file was submitted." +msgstr "ಯಾವದೇ ಕಡತವನ್ನೂ ಸಲ್ಲಿಸಲಾಗಿಲ್ಲ." + +msgid "The submitted file is empty." +msgstr "ಸಲ್ಲಿಸಲಾದ ಕಡತ ಖಾಲಿ ಇದೆ." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"ದಯವಿಟ್ಟು ಕಡತವನ್ನು ಸಲ್ಲಿಸಿ ಅಥವ ಅಳಿಸುವ ಗುರುತುಚೌಕವನ್ನು ಗುರುತು ಹಾಕಿ, ಎರಡನ್ನೂ ಒಟ್ಟಿಗೆ " +"ಮಾಡಬೇಡಿ." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"ಸರಿಯಾದ ಚಿತ್ರವನ್ನು ಸೇರಿಸಿ. ನೀವು ಸೇರಿಸಿದ ಕಡತವು ಚಿತ್ರವೇ ಅಲ್ಲ ಅಥವಾ ಅದು ಒಂದು ಹಾಳಾದ " +"ಚಿತ್ರವಾಗಿದೆ. " + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "ಸರಿಯಾದ ಒಂದು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಿ. %(value)s ಎನ್ನುವುದು ಲಭ್ಯವಿರುವ ಆಯ್ಕೆಗಳಲ್ಲಿ ಇಲ್ಲ." + +msgid "Enter a list of values." +msgstr "ಮೌಲ್ಯಗಳ ಒಂದು ಪಟ್ಟಿಯನ್ನು ನಮೂದಿಸಿ." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "ಕ್ರಮ" + +msgid "Delete" +msgstr "ಅಳಿಸಿಹಾಕಿ" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s ಗಾಗಿ ಎರಡು ಬಾರಿ ನಮೂದಿಸಲಾದ ಮಾಹಿತಿಯನ್ನು ಸರಿಪಡಿಸಿ." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"%(field)s ಗಾಗಿ ಎರಡು ಬಾರಿ ನಮೂದಿಸಲಾದ ಮಾಹಿತಿಯನ್ನು ಸರಿಪಡಿಸಿ, ಇದರ ಮೌಲ್ಯವು " +"ವಿಶಿಷ್ಟವಾಗಿರಬೇಕು." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s ಗಾಗಿ ಎರಡು ಬಾರಿ ನಮೂದಿಸಲಾದ ಮಾಹಿತಿಯನ್ನು ಸರಿಪಡಿಸಿ, %(date_field)s " +"ನಲ್ಲಿನ %(lookup)s ಗಾಗಿ ಇದರ ಮೌಲ್ಯವು ವಿಶಿಷ್ಟವಾಗಿರಬೇಕು." + +msgid "Please correct the duplicate values below." +msgstr "ದಯವಿಟ್ಟು ಈ ಕೆಳಗೆ ಎರಡು ಬಾರಿ ನಮೂದಿಸಲಾದ ಮೌಲ್ಯವನ್ನು ಸರಿಪಡಿಸಿ." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "ಸರಿಯಾದ ಒಂದು ಆಯ್ಕೆಯನ್ನು ಆರಿಸಿ. ಆ ಆಯ್ಕೆಯು ಲಭ್ಯವಿರುವ ಆಯ್ಕೆಗಳಲ್ಲಿ ಇಲ್ಲ." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "ಮುಕ್ತಗೊಳಿಸು" + +msgid "Currently" +msgstr "ಪ್ರಸಕ್ತ" + +msgid "Change" +msgstr "ಬದಲಾವಣೆ" + +msgid "Unknown" +msgstr "ಗೊತ್ತಿರದ" + +msgid "Yes" +msgstr "ಹೌದು" + +msgid "No" +msgstr "ಇಲ್ಲ" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "ಹೌದು,ಇಲ್ಲ,ಇರಬಹುದು" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d ಬೈಟ್‌ಗಳು" +msgstr[1] "%(size)d ಬೈಟ್‌ಗಳು" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "ಅಪರಾಹ್ನ" + +msgid "a.m." +msgstr "ಪೂರ್ವಾಹ್ನ" + +msgid "PM" +msgstr "ಅಪರಾಹ್ನ" + +msgid "AM" +msgstr "ಪೂರ್ವಾಹ್ನ" + +msgid "midnight" +msgstr "ಮಧ್ಯರಾತ್ರಿ" + +msgid "noon" +msgstr "ಮಧ್ಯಾಹ್ನ" + +msgid "Monday" +msgstr "ಸೋಮವಾರ" + +msgid "Tuesday" +msgstr "ಮಂಗಳವಾರ" + +msgid "Wednesday" +msgstr "ಬುಧವಾರ" + +msgid "Thursday" +msgstr "ಗುರುವಾರ" + +msgid "Friday" +msgstr "ಶುಕ್ರವಾರ" + +msgid "Saturday" +msgstr "ಶನಿವಾರ" + +msgid "Sunday" +msgstr "ರವಿವಾರ" + +msgid "Mon" +msgstr "ಸೋಮ" + +msgid "Tue" +msgstr "ಮಂಗಳ" + +msgid "Wed" +msgstr "ಬುಧ" + +msgid "Thu" +msgstr "ಗುರು" + +msgid "Fri" +msgstr "ಶುಕ್ರ" + +msgid "Sat" +msgstr "ಶನಿ" + +msgid "Sun" +msgstr "ರವಿ" + +msgid "January" +msgstr "ಜನವರಿ" + +msgid "February" +msgstr "ಫೆಬ್ರುವರಿ" + +msgid "March" +msgstr "ಮಾರ್ಚ್" + +msgid "April" +msgstr "ಎಪ್ರಿಲ್" + +msgid "May" +msgstr "ಮೇ" + +msgid "June" +msgstr "ಜೂನ್" + +msgid "July" +msgstr "ಜುಲೈ" + +msgid "August" +msgstr "ಆಗಸ್ಟ್" + +msgid "September" +msgstr "ಸೆಪ್ಟೆಂಬರ್" + +msgid "October" +msgstr "ಅಕ್ಟೋಬರ್" + +msgid "November" +msgstr "ನವೆಂಬರ್" + +msgid "December" +msgstr "ಡಿಸೆಂಬರ್" + +msgid "jan" +msgstr "ಜನವರಿ" + +msgid "feb" +msgstr "ಫೆಬ್ರವರಿ" + +msgid "mar" +msgstr "ಮಾರ್ಚ್" + +msgid "apr" +msgstr "ಏಪ್ರಿಲ್" + +msgid "may" +msgstr "ಮೇ" + +msgid "jun" +msgstr "ಜೂನ್" + +msgid "jul" +msgstr "ಜುಲೈ" + +msgid "aug" +msgstr "ಆಗಸ್ಟ್‍" + +msgid "sep" +msgstr "ಸೆಪ್ಟೆಂಬರ್" + +msgid "oct" +msgstr "ಅಕ್ಟೋಬರ್" + +msgid "nov" +msgstr "ನವೆಂಬರ್" + +msgid "dec" +msgstr "ಡಿಸೆಂಬರ್" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "ಜನ." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ಫೆಬ್ರ." + +msgctxt "abbrev. month" +msgid "March" +msgstr "ಮಾರ್ಚ್" + +msgctxt "abbrev. month" +msgid "April" +msgstr "ಏಪ್ರಿಲ್" + +msgctxt "abbrev. month" +msgid "May" +msgstr "ಮೇ" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ಜೂನ್" + +msgctxt "abbrev. month" +msgid "July" +msgstr "ಜುಲೈ" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ಆಗ." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "ಸೆಪ್ಟೆ." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "ಅಕ್ಟೋ." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "ನವೆಂ." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ಡಿಸೆಂ." + +msgctxt "alt. month" +msgid "January" +msgstr "ಜನವರಿ" + +msgctxt "alt. month" +msgid "February" +msgstr "ಫೆಬ್ರವರಿ" + +msgctxt "alt. month" +msgid "March" +msgstr "ಮಾರ್ಚ್" + +msgctxt "alt. month" +msgid "April" +msgstr "ಏಪ್ರಿಲ್" + +msgctxt "alt. month" +msgid "May" +msgstr "ಮೇ" + +msgctxt "alt. month" +msgid "June" +msgstr "ಜೂನ್" + +msgctxt "alt. month" +msgid "July" +msgstr "ಜುಲೈ" + +msgctxt "alt. month" +msgid "August" +msgstr "ಆಗಸ್ಟ್‍" + +msgctxt "alt. month" +msgid "September" +msgstr "ಸಪ್ಟೆಂಬರ್" + +msgctxt "alt. month" +msgid "October" +msgstr "ಅಕ್ಟೋಬರ್" + +msgctxt "alt. month" +msgid "November" +msgstr "ನವೆಂಬರ್" + +msgctxt "alt. month" +msgid "December" +msgstr "ಡಿಸೆಂಬರ್" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "ಅಥವ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "ಯಾವುದೆ ವರ್ಷವನ್ನು ಸೂಚಿಲಾಗಿಲ್ಲ" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "ಯಾವುದೆ ತಿಂಗಳನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ" + +msgid "No day specified" +msgstr "ಯಾವುದೆ ದಿನವನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ" + +msgid "No week specified" +msgstr "ಯಾವುದೆ ವಾರವನ್ನು ಸೂಚಿಸಲಾಗಿಲ್ಲ" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "ಯಾವುದೆ %(verbose_name_plural)s ಲಭ್ಯವಿಲ್ಲ" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"ಭವಿಷ್ಯದ %(verbose_name_plural)s ಲಭ್ಯವಿಲ್ಲ ಏಕೆಂದರೆ %(class_name)s.allow_future " +"ಎನ್ನುವುದು ಅಸತ್ಯವಾಗಿದೆ (ಫಾಲ್ಸ್‍) ಆಗಿದೆ." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "ಮನವಿಗೆ ತಾಳೆಯಾಗುವ ಯಾವುದೆ %(verbose_name)s ಕಂಡುಬಂದಿಲ್ಲ" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/kn/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/kn/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/kn/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed256349425e97e79f608fdb6d7d5c09d40a437b GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFg`kf*C(T(^oJtFgylvkO3o*;{e3PB0wUAA&Mb|F^VyTDT*nDIf^-jC73~z zwTd-M!A&8uiZ#P3Q^B!{8OQ?(`6@*EX|hCdyEulp#=H3k`8tL~aff*N!Z`xI{(d1I z@h*;$FloVH5C5PLpa@*YN`@kk3&6y$WM`|G(Bjmh;+XQ(oRa()m;B_?+|<01;+XW* z;*!Mt_@czp92B-sW>QRXW=X1UL1J=tB2ZOKN>*ZCdcJ;geqNe>PJVJ?PO5%(o_<<> kQEp;Mv0g#tEe@O9{FKt1R6CHp#T-C_g@uKYg_(m90K2|X5C8xG literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/kn/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/kn/formats.py new file mode 100644 index 0000000..d212fd5 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/kn/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "h:i A" +# DATETIME_FORMAT = +# YEAR_MONTH_FORMAT = +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "j M Y" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +# DECIMAL_SEPARATOR = +# THOUSAND_SEPARATOR = +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..02c61beb19c05a98faefd868c7216daddce49a1a GIT binary patch literal 29175 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 ZsxB7}rzi$?R=l+>5|7kbb#=A(e*u(g_*(z~ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po new file mode 100644 index 0000000..ef36cf1 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po @@ -0,0 +1,1333 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# BJ Jang , 2014 +# JunGu Kang , 2017 +# Jiyoon, Ha , 2016 +# darjeeling , 2024 +# DONGHO JEONG , 2020 +# Park Hyunwoo , 2017 +# Geonho Kim / Leo Kim , 2019 +# hoseung2 , 2017 +# Ian Y. Choi , 2015 +# Jaehong Kim , 2011 +# Jannis Leidel , 2011 +# Jay Oh , 2020 +# Le Tartuffe , 2014,2016 +# Jonghwa Seo , 2019 +# Jubeen Lee , 2020 +# JuneHyeon Bae , 2014 +# JunGu Kang , 2015 +# JunGu Kang , 2019 +# Kagami Sascha Rosylight , 2017 +# Mariusz Felisiak , 2021 +# Seho Noh , 2018 +# Seoeun(Sun☀️) Hong, 2023 +# 최소영, 2024 +# Subin Choi , 2016 +# Taesik Yoon , 2015 +# 정훈 이, 2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: darjeeling , 2024\n" +"Language-Team: Korean (http://app.transifex.com/django/django/language/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "아프리칸스어" + +msgid "Arabic" +msgstr "아랍어" + +msgid "Algerian Arabic" +msgstr "알제리 아랍어" + +msgid "Asturian" +msgstr "호주어" + +msgid "Azerbaijani" +msgstr "아제르바이잔어" + +msgid "Bulgarian" +msgstr "불가리어" + +msgid "Belarusian" +msgstr "벨라루스어" + +msgid "Bengali" +msgstr "방글라데시어" + +msgid "Breton" +msgstr "브르타뉴어" + +msgid "Bosnian" +msgstr "보스니아어" + +msgid "Catalan" +msgstr "카탈로니아어" + +msgid "Central Kurdish (Sorani)" +msgstr "중부 쿠르드어 (소라니어)" + +msgid "Czech" +msgstr "체코어" + +msgid "Welsh" +msgstr "웨일즈어" + +msgid "Danish" +msgstr "덴마크어" + +msgid "German" +msgstr "독일어" + +msgid "Lower Sorbian" +msgstr "저지 소르브어" + +msgid "Greek" +msgstr "그리스어" + +msgid "English" +msgstr "영어" + +msgid "Australian English" +msgstr "영어(호주)" + +msgid "British English" +msgstr "영어 (영국)" + +msgid "Esperanto" +msgstr "에스페란토어" + +msgid "Spanish" +msgstr "스페인어" + +msgid "Argentinian Spanish" +msgstr "아르헨티나 스페인어" + +msgid "Colombian Spanish" +msgstr "콜롬비아 스페인어" + +msgid "Mexican Spanish" +msgstr "멕시컨 스페인어" + +msgid "Nicaraguan Spanish" +msgstr "니카과라 스페인어" + +msgid "Venezuelan Spanish" +msgstr "베네수엘라 스페인어" + +msgid "Estonian" +msgstr "에스토니아어" + +msgid "Basque" +msgstr "바스크어" + +msgid "Persian" +msgstr "페르시아어" + +msgid "Finnish" +msgstr "핀란드어" + +msgid "French" +msgstr "프랑스어" + +msgid "Frisian" +msgstr "프리슬란트어" + +msgid "Irish" +msgstr "아일랜드어" + +msgid "Scottish Gaelic" +msgstr "스코틀랜드 게일어" + +msgid "Galician" +msgstr "갈리시아어" + +msgid "Hebrew" +msgstr "히브리어" + +msgid "Hindi" +msgstr "힌두어" + +msgid "Croatian" +msgstr "크로아티아어" + +msgid "Upper Sorbian" +msgstr "고지 소르브어" + +msgid "Hungarian" +msgstr "헝가리어" + +msgid "Armenian" +msgstr "아르메니아어" + +msgid "Interlingua" +msgstr "인테르링구아어" + +msgid "Indonesian" +msgstr "인도네시아어" + +msgid "Igbo" +msgstr "이그보어" + +msgid "Ido" +msgstr "이도어" + +msgid "Icelandic" +msgstr "아이슬란드어" + +msgid "Italian" +msgstr "이탈리아어" + +msgid "Japanese" +msgstr "일본어" + +msgid "Georgian" +msgstr "조지아어" + +msgid "Kabyle" +msgstr "커바일어" + +msgid "Kazakh" +msgstr "카자흐어" + +msgid "Khmer" +msgstr "크메르어" + +msgid "Kannada" +msgstr "칸나다어" + +msgid "Korean" +msgstr "한국어" + +msgid "Kyrgyz" +msgstr "키르키즈 공화국어" + +msgid "Luxembourgish" +msgstr "룩셈부르크" + +msgid "Lithuanian" +msgstr "리투아니아어" + +msgid "Latvian" +msgstr "라트비아어" + +msgid "Macedonian" +msgstr "마케도니아어" + +msgid "Malayalam" +msgstr "말라얄람어" + +msgid "Mongolian" +msgstr "몽고어" + +msgid "Marathi" +msgstr "마라티어" + +msgid "Malay" +msgstr "말레이시아어" + +msgid "Burmese" +msgstr "룩셈부르크어" + +msgid "Norwegian Bokmål" +msgstr "노르웨이어(보크몰)" + +msgid "Nepali" +msgstr "네팔어" + +msgid "Dutch" +msgstr "네덜란드어" + +msgid "Norwegian Nynorsk" +msgstr "노르웨이어 (뉘노르스크)" + +msgid "Ossetic" +msgstr "오세티아어" + +msgid "Punjabi" +msgstr "펀자브어" + +msgid "Polish" +msgstr "폴란드어" + +msgid "Portuguese" +msgstr "포르투갈어" + +msgid "Brazilian Portuguese" +msgstr "브라질 포르투갈어" + +msgid "Romanian" +msgstr "루마니아어" + +msgid "Russian" +msgstr "러시아어" + +msgid "Slovak" +msgstr "슬로바키아어" + +msgid "Slovenian" +msgstr "슬로베니아어" + +msgid "Albanian" +msgstr "알바니아어" + +msgid "Serbian" +msgstr "세르비아어" + +msgid "Serbian Latin" +msgstr "세르비아어" + +msgid "Swedish" +msgstr "스웨덴어" + +msgid "Swahili" +msgstr "스와힐리어" + +msgid "Tamil" +msgstr "타밀어" + +msgid "Telugu" +msgstr "텔루구어" + +msgid "Tajik" +msgstr "타지크어" + +msgid "Thai" +msgstr "태국어" + +msgid "Turkmen" +msgstr "튀르크멘어" + +msgid "Turkish" +msgstr "터키어" + +msgid "Tatar" +msgstr "타타르" + +msgid "Udmurt" +msgstr "이제프스크" + +msgid "Uyghur" +msgstr "위구르" + +msgid "Ukrainian" +msgstr "우크라이나어" + +msgid "Urdu" +msgstr "우르드어" + +msgid "Uzbek" +msgstr "우즈베크어" + +msgid "Vietnamese" +msgstr "베트남어" + +msgid "Simplified Chinese" +msgstr "중국어 간체" + +msgid "Traditional Chinese" +msgstr "중국어 번체" + +msgid "Messages" +msgstr "메시지" + +msgid "Site Maps" +msgstr "사이트 맵" + +msgid "Static Files" +msgstr "정적 파일" + +msgid "Syndication" +msgstr "신디케이션" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "페이지 번호가 정수가 아닙니다." + +msgid "That page number is less than 1" +msgstr "페이지 번호가 1보다 작습니다." + +msgid "That page contains no results" +msgstr "해당 페이지에 결과가 없습니다." + +msgid "Enter a valid value." +msgstr "올바른 값을 입력하세요." + +msgid "Enter a valid domain name." +msgstr "유효한 도메인 이름을 입력하세요." + +msgid "Enter a valid URL." +msgstr "올바른 URL을 입력하세요." + +msgid "Enter a valid integer." +msgstr "올바른 정수를 입력하세요." + +msgid "Enter a valid email address." +msgstr "올바른 이메일 주소를 입력하세요." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "문자, 숫자, '_', '-'만 가능합니다." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"유니코드 문자, 숫자, 언더스코어 또는 하이픈으로 구성된 올바른 내용을 입력하세" +"요." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "유효한 %(protocol)s의 주소를 입력하세요." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 혹은 IPv6" + +msgid "Enter only digits separated by commas." +msgstr "콤마로 구분된 숫자만 입력하세요." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"%(limit_value)s 안의 값을 입력해 주세요. (입력하신 값은 %(show_value)s입니" +"다.)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "%(limit_value)s 이하의 값을 입력해 주세요." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "%(limit_value)s 이상의 값을 입력해 주세요." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "단계 크기 %(limit_value)s의 배수를 입력해 주세요." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"예를 들어 %(offset)s, %(valid_value1)s, %(valid_value2)s 등, %(offset)s에서 " +"시작하는 %(limit_value)s의 배수를 입력해 주세요." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"이 값이 최소 %(limit_value)d 개의 글자인지 확인하세요(입력값 %(show_value)d " +"자)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"이 값이 최대 %(limit_value)d 개의 글자인지 확인하세요(입력값 %(show_value)d " +"자)." + +msgid "Enter a number." +msgstr "숫자를 입력하세요." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "전체 자릿수가 %(max)s 개를 넘지 않도록 해주세요." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "전체 유효자리 개수가 %(max)s 개를 넘지 않도록 해주세요." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "전체 유효자리 개수가 %(max)s 개를 넘지 않도록 해주세요." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"파일 확장자 '%(extension)s'는 허용되지 않습니다. 허용된 확장자: " +"'%(allowed_extensions)s'." + +msgid "Null characters are not allowed." +msgstr "null 문자는 사용할 수 없습니다. " + +msgid "and" +msgstr "또한" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s의 %(field_labels)s 은/는 이미 존재합니다." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "%(name)s을(를) 위반하였습니다." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r 은/는 올바른 선택사항이 아닙니다." + +msgid "This field cannot be null." +msgstr "이 필드는 null 값을 사용할 수 없습니다. " + +msgid "This field cannot be blank." +msgstr "이 필드는 빈 칸으로 둘 수 없습니다." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s의 %(field_label)s은/는 이미 존재합니다." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s은/는 반드시 %(date_field_label)s %(lookup_type)s에 대해 유일" +"해야 합니다." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "%(field_type)s 형식 필드" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "'%(value)s' 값은 반드시 True 또는 False 중 하나여야만 합니다." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "'%(value)s'값은 반드시 True, False, None 중 하나여야만 합니다." + +msgid "Boolean (Either True or False)" +msgstr "boolean(True 또는 False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "문자열(%(max_length)s 글자까지)" + +msgid "String (unlimited)" +msgstr "문자열 (무제한의)" + +msgid "Comma-separated integers" +msgstr "정수(콤마로 구분)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "'%(value)s' 값은 날짜 형식이 아닙니다. YYYY-MM-DD 형식이어야 합니다." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"'%(value)s' 값은 올바른 형식(YYYY-MM-DD)이지만 유효하지 않은 날짜입니다." + +msgid "Date (without time)" +msgstr "날짜(시간 제외)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"'%(value)s' 값은 올바르지 않은 형식입니다. YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ] 형식이어야 합니다." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"'%(value)s' 값은 올바른 형식이지만 (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) 유효" +"하지 않은 날짜/시간입니다." + +msgid "Date (with time)" +msgstr "날짜(시간 포함)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "'%(value)s' 값은 10진수를 입력하여야 합니다." + +msgid "Decimal number" +msgstr "10진수" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"'%(value)s' 값은 올바르지 않은 형식입니다. [DD] [HH:[MM:]]ss[.uuuuuu] 형식이" +"어야 합니다." + +msgid "Duration" +msgstr "지속시간" + +msgid "Email address" +msgstr "이메일 주소" + +msgid "File path" +msgstr "파일 경로" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "\"%(value)s\" 값은 실수를 입력하여야 합니다." + +msgid "Floating point number" +msgstr "부동소수점 숫자" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "\"%(value)s\" 값은 정수를 입력하여야 합니다." + +msgid "Integer" +msgstr "정수" + +msgid "Big (8 byte) integer" +msgstr "큰 정수 (8 byte)" + +msgid "Small integer" +msgstr "작은 정수" + +msgid "IPv4 address" +msgstr "IPv4 주소" + +msgid "IP address" +msgstr "IP 주소" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "\"%(value)s\" 값은 반드시 None, True 또는 False이어야 합니다." + +msgid "Boolean (Either True, False or None)" +msgstr "boolean (True, False 또는 None)" + +msgid "Positive big integer" +msgstr "큰 양의 정수" + +msgid "Positive integer" +msgstr "양의 정수" + +msgid "Positive small integer" +msgstr "작은 양의 정수" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "슬러그(%(max_length)s 까지)" + +msgid "Text" +msgstr "텍스트" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"\"%(value)s\" 값의 형식이 올바르지 않습니다. HH:MM[:ss[.uuuuuu]] 형식이어야 " +"합니다." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"\"%(value)s\" 값이 올바른 형식(HH:MM[:ss[.uuuuuu]])이나, 유효하지 않은 시간 " +"값입니다." + +msgid "Time" +msgstr "시각" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Raw binary data" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\"은 유효하지 않은 UUID입니다." + +msgid "Universally unique identifier" +msgstr "범용 고유 식별 수단(UUID)" + +msgid "File" +msgstr "파일" + +msgid "Image" +msgstr "이미지" + +msgid "A JSON object" +msgstr "JSON 객체" + +msgid "Value must be valid JSON." +msgstr "올바른 JSON 형식이여야 합니다." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s %(value)r 를 가지는 %(model)s 인스턴스가 존재하지 않습니다." + +msgid "Foreign Key (type determined by related field)" +msgstr "외래 키 (연관 필드에 의해 형식 결정)" + +msgid "One-to-one relationship" +msgstr "일대일 관계" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s 관계" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s 관계들" + +msgid "Many-to-many relationship" +msgstr "다대다 관계" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "필수 항목입니다." + +msgid "Enter a whole number." +msgstr "정수를 입력하세요." + +msgid "Enter a valid date." +msgstr "올바른 날짜를 입력하세요." + +msgid "Enter a valid time." +msgstr "올바른 시각을 입력하세요." + +msgid "Enter a valid date/time." +msgstr "올바른 날짜/시각을 입력하세요." + +msgid "Enter a valid duration." +msgstr "올바른 기간을 입력하세요." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "날짜는 {min_days}와 {max_days} 사이여야 합니다." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "등록된 파일이 없습니다. 인코딩 형식을 확인하세요." + +msgid "No file was submitted." +msgstr "파일이 전송되지 않았습니다." + +msgid "The submitted file is empty." +msgstr "입력하신 파일은 빈 파일입니다." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "파일이름의 길이가 최대 %(max)d 자인지 확인하세요(%(length)d 자)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"파일 업로드 또는 삭제 체크박스를 선택하세요. 동시에 둘 다 할 수는 없습니다." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"올바른 이미지를 업로드하세요. 업로드하신 파일은 이미지 파일이 아니거나 파일" +"이 깨져 있습니다." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "올바르게 선택해 주세요. %(value)s 이/가 선택가능항목에 없습니다." + +msgid "Enter a list of values." +msgstr "리스트를 입력하세요." + +msgid "Enter a complete value." +msgstr "완전한 값을 입력하세요." + +msgid "Enter a valid UUID." +msgstr "올바른 UUID를 입력하세요." + +msgid "Enter a valid JSON." +msgstr "올바른 JSON을 입력하세요." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(%(name)s hidden 필드) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm 데이터가 없거나 변경되었습니다. 현재 없는 필드: " +"%(field_names)s. 이런 이슈가 지속된다면 버그 리포트를 제출해주시기 바랍니다." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "최대 %(num)d개의 양식을 제출하세요." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "최소 %(num)d개의 양식을 제출하세요." + +msgid "Order" +msgstr "순서:" + +msgid "Delete" +msgstr "삭제" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s의 중복된 데이터를 고쳐주세요." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "%(field)s의 중복된 데이터를 고쳐주세요. 유일한 값이어야 합니다." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s의 값은 %(date_field)s의 %(lookup)s에 대해 유일해야 합니다. 중" +"복된 데이터를 고쳐주세요." + +msgid "Please correct the duplicate values below." +msgstr "아래의 중복된 값들을 고쳐주세요." + +msgid "The inline value did not match the parent instance." +msgstr "Inline 값이 부모 인스턴스와 일치하지 않습니다." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "올바르게 선택해 주세요. 선택하신 것이 선택가능항목에 없습니다." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" 은/는 유효한 값이 아닙니다." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s 은/는 %(current_timezone)s 시간대에서 해석될 수 없습니다; 정보" +"가 모호하거나 존재하지 않을 수 있습니다." + +msgid "Clear" +msgstr "취소" + +msgid "Currently" +msgstr "현재" + +msgid "Change" +msgstr "변경" + +msgid "Unknown" +msgstr "알 수 없습니다." + +msgid "Yes" +msgstr "예" + +msgid "No" +msgstr "아니오" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "예,아니오,아마도" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d 바이트" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "오후" + +msgid "a.m." +msgstr "오전" + +msgid "PM" +msgstr "오후" + +msgid "AM" +msgstr "오전" + +msgid "midnight" +msgstr "자정" + +msgid "noon" +msgstr "정오" + +msgid "Monday" +msgstr "월요일" + +msgid "Tuesday" +msgstr "화요일" + +msgid "Wednesday" +msgstr "수요일" + +msgid "Thursday" +msgstr "목요일" + +msgid "Friday" +msgstr "금요일" + +msgid "Saturday" +msgstr "토요일" + +msgid "Sunday" +msgstr "일요일" + +msgid "Mon" +msgstr "월요일" + +msgid "Tue" +msgstr "화요일" + +msgid "Wed" +msgstr "수요일" + +msgid "Thu" +msgstr "목요일" + +msgid "Fri" +msgstr "금요일" + +msgid "Sat" +msgstr "토요일" + +msgid "Sun" +msgstr "일요일" + +msgid "January" +msgstr "1월" + +msgid "February" +msgstr "2월" + +msgid "March" +msgstr "3월" + +msgid "April" +msgstr "4월" + +msgid "May" +msgstr "5월" + +msgid "June" +msgstr "6월" + +msgid "July" +msgstr "7월" + +msgid "August" +msgstr "8월" + +msgid "September" +msgstr "9월" + +msgid "October" +msgstr "10월" + +msgid "November" +msgstr "11월" + +msgid "December" +msgstr "12월" + +msgid "jan" +msgstr "1월" + +msgid "feb" +msgstr "2월" + +msgid "mar" +msgstr "3월" + +msgid "apr" +msgstr "4월" + +msgid "may" +msgstr "5월" + +msgid "jun" +msgstr "6월" + +msgid "jul" +msgstr "7월" + +msgid "aug" +msgstr "8월" + +msgid "sep" +msgstr "9월" + +msgid "oct" +msgstr "10월" + +msgid "nov" +msgstr "11월" + +msgid "dec" +msgstr "12월" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "1월" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "2월" + +msgctxt "abbrev. month" +msgid "March" +msgstr "3월" + +msgctxt "abbrev. month" +msgid "April" +msgstr "4월" + +msgctxt "abbrev. month" +msgid "May" +msgstr "5월" + +msgctxt "abbrev. month" +msgid "June" +msgstr "6월" + +msgctxt "abbrev. month" +msgid "July" +msgstr "7월" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "8월" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "9월" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "10월" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "11월" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "12월" + +msgctxt "alt. month" +msgid "January" +msgstr "1월" + +msgctxt "alt. month" +msgid "February" +msgstr "2월" + +msgctxt "alt. month" +msgid "March" +msgstr "3월" + +msgctxt "alt. month" +msgid "April" +msgstr "4월" + +msgctxt "alt. month" +msgid "May" +msgstr "5월" + +msgctxt "alt. month" +msgid "June" +msgstr "6월" + +msgctxt "alt. month" +msgid "July" +msgstr "7월" + +msgctxt "alt. month" +msgid "August" +msgstr "8월" + +msgctxt "alt. month" +msgid "September" +msgstr "9월" + +msgctxt "alt. month" +msgid "October" +msgstr "10월" + +msgctxt "alt. month" +msgid "November" +msgstr "11월" + +msgctxt "alt. month" +msgid "December" +msgstr "12월" + +msgid "This is not a valid IPv6 address." +msgstr "올바른 IPv6 주소가 아닙니다." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "또는" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d년" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d개월" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d주" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d일" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d시간" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d분" + +msgid "Forbidden" +msgstr "Forbidden" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF 검증에 실패했습니다. 요청을 중단하였습니다." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"이 메세지가 보이는 이유는 이 HTTPS 사이트가 당신의 웹 브라우저로부터 \"참조 " +"헤더\"를 요구하지만, 아무것도 받기 못하였기 때문입니다. 이 헤더는 보안상의 이" +"유로 필요하며, 당신의 웹 브라우저가 제3자에 의해 해킹당하고 있지 않다는 것을 " +"보장하기 위함입니다." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"만약 브라우저 설정에서 '참조' 헤더를 비활성화 시켰을 경우, 적어도 이 사이트" +"나 HTTPS 연결, '동일-출처' 요청에 대해서는 이를 다시 활성화 시키십시오. " + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"태그나 'Referrer-Policy: no-" +"referrer' 헤더를 포함하고 있다면, 제거해주시기 바랍니다. CSRF 방지를 위한 리" +"퍼러 검사를 위해 'Referer' 헤더가 필요합니다. 개인 정보에 대해 우려가 있는 경" +"우, 서드 파티 사이트에 대한 링크에 와 같은 대안을 사" +"용할 수 있습니다." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"이 메세지가 보이는 이유는 사이트가 폼을 제출할 때 CSRF 쿠키를 필요로 하기 때" +"문입니다. 이 쿠키는 보안상의 이유로 필요하며, 제3자에 의해 당신의 브라우저가 " +"해킹당하고 있지 않다는 것을 보장합니다." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"만약 브라우저 설정에서 쿠키를 비활성화 시켰을 경우, 적어도 이 사이트나 '동일-" +"출처' 요청에 대해서는 활성화 시키십시오." + +msgid "More information is available with DEBUG=True." +msgstr "DEBUG=True 로 더 많은 정보를 확인할 수 있습니다." + +msgid "No year specified" +msgstr "년도가 없습니다." + +msgid "Date out of range" +msgstr "유효 범위 밖의 날짜" + +msgid "No month specified" +msgstr "월이 없습니다." + +msgid "No day specified" +msgstr "날짜가 없습니다." + +msgid "No week specified" +msgstr "주가 없습니다." + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr " %(verbose_name_plural)s를 사용할 수 없습니다." + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Future 모듈 %(verbose_name_plural)s을 사용할 수 없습니다. %(class_name)s." +"allow_future가 False 입니다." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "날짜 문자열 '%(datestr)s'이 표준 형식 '%(format)s'과 다릅니다." + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "쿼리 결과에 %(verbose_name)s가 없습니다." + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "'마지막' 페이지가 아니거나, 정수형으로 변환할 수 없습니다." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Invalid page (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "빈 리스트이고 '%(class_name)s.allow_empty'가 False입니다." + +msgid "Directory indexes are not allowed here." +msgstr "디렉토리 인덱스는 이곳에 사용할 수 없습니다." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" 이/가 존재하지 않습니다." + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index of %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "성공적으로 설치되었습니다! 축하합니다!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Django %(version)s릴리스 노트 보기" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"이 페이지는 어떤 URL도 지정되지 않았고, settings 파일에 DEBUG=True가 설정되어 있을 때 표시됩니" +"다." + +msgid "Django Documentation" +msgstr "Django 문서" + +msgid "Topics, references, & how-to’s" +msgstr "주제, 레퍼런스, & 입문참조하다" + +msgid "Tutorial: A Polling App" +msgstr "튜토리얼: 폴링 애플리케이션" + +msgid "Get started with Django" +msgstr "Django와 함께 시작하기" + +msgid "Django Community" +msgstr "Django 커뮤니티" + +msgid "Connect, get help, or contribute" +msgstr "연결하고, 도움을 받거나 기여하기" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ko/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ko/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ko/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edc0b9ab01c91062cd40da730727df0a3f9059df GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF&B)%cue?h=B|`fCs3m z5sg|@!&c_q%{4n&eEPtS7GHkG1)lZV!{~T#C&4Tqm9raZwbd5Q=A=1l#pN`zVtd%2 zVj7rD;5Pxnna=^l0dtehqdK+&=?K72W&j8e(J0^!u??g)&|+qtwZI@Qq{UJtF5Z7; zfpqudng!b8`@4uqytcH##P#*r?Ajzg-b0CRZI@!S9x7g zv0PLPjhBTCJCqISbw{<&RK@6Z<+E?Zl)`sUm;3%{+cH9T8d_KGcotYf(2sm~G7Bxw z4QEbZPn~GIlb;XYTH$c!HZPt2g@d~+G;$_h!1aU4fEx#WXY6tp0XGPyzB3D3m-Act f#1Bw3c3+bC-0&%0D2gJtFI}W-bcw1_Bu)MW%I6+< literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ko/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ko/formats.py new file mode 100644 index 0000000..1f3487c --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ko/formats.py @@ -0,0 +1,54 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "Y년 n월 j일" +TIME_FORMAT = "A g:i" +DATETIME_FORMAT = "Y년 n월 j일 g:i A" +YEAR_MONTH_FORMAT = "Y년 n월" +MONTH_DAY_FORMAT = "n월 j일" +SHORT_DATE_FORMAT = "Y-n-j." +SHORT_DATETIME_FORMAT = "Y-n-j H:i" +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# Kept ISO formats as they are in first position +DATE_INPUT_FORMATS = [ + "%Y-%m-%d", # '2006-10-25' + "%m/%d/%Y", # '10/25/2006' + "%m/%d/%y", # '10/25/06' + # "%b %d %Y", # 'Oct 25 2006' + # "%b %d, %Y", # 'Oct 25, 2006' + # "%d %b %Y", # '25 Oct 2006' + # "%d %b, %Y", #'25 Oct, 2006' + # "%B %d %Y", # 'October 25 2006' + # "%B %d, %Y", #'October 25, 2006' + # "%d %B %Y", # '25 October 2006' + # "%d %B, %Y", # '25 October, 2006' + "%Y년 %m월 %d일", # '2006년 10월 25일', with localized suffix. +] +TIME_INPUT_FORMATS = [ + "%H:%M:%S", # '14:30:59' + "%H:%M:%S.%f", # '14:30:59.000200' + "%H:%M", # '14:30' + "%H시 %M분 %S초", # '14시 30분 59초' + "%H시 %M분", # '14시 30분' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%m/%d/%Y %H:%M:%S", # '10/25/2006 14:30:59' + "%m/%d/%Y %H:%M:%S.%f", # '10/25/2006 14:30:59.000200' + "%m/%d/%Y %H:%M", # '10/25/2006 14:30' + "%m/%d/%y %H:%M:%S", # '10/25/06 14:30:59' + "%m/%d/%y %H:%M:%S.%f", # '10/25/06 14:30:59.000200' + "%m/%d/%y %H:%M", # '10/25/06 14:30' + "%Y년 %m월 %d일 %H시 %M분 %S초", # '2006년 10월 25일 14시 30분 59초' + "%Y년 %m월 %d일 %H시 %M분", # '2006년 10월 25일 14시 30분' +] + +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..f99fc908f772a47cf1a99141c8b9f416ddac7b1e GIT binary patch literal 31395 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 Bc&PvY literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po new file mode 100644 index 0000000..391196f --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ky/LC_MESSAGES/django.po @@ -0,0 +1,1279 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Mariusz Felisiak , 2021 +# Soyuzbek Orozbek uulu , 2020-2021 +# Soyuzbek Orozbek uulu , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-27 14:11+0000\n" +"Last-Translator: Soyuzbek Orozbek uulu \n" +"Language-Team: Kyrgyz (http://www.transifex.com/django/django/language/ky/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ky\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "Африканча" + +msgid "Arabic" +msgstr "Арабча" + +msgid "Algerian Arabic" +msgstr "Алжир арабчасы" + +msgid "Asturian" +msgstr "Австрийче" + +msgid "Azerbaijani" +msgstr "Азерче" + +msgid "Bulgarian" +msgstr "Болгарча" + +msgid "Belarusian" +msgstr "Белорусча" + +msgid "Bengali" +msgstr "Бенгалча" + +msgid "Breton" +msgstr "Бретончо" + +msgid "Bosnian" +msgstr "Босния" + +msgid "Catalan" +msgstr "Каталан" + +msgid "Czech" +msgstr "Чехче" + +msgid "Welsh" +msgstr "Валлий" + +msgid "Danish" +msgstr "Данчийче" + +msgid "German" +msgstr "Немисче" + +msgid "Lower Sorbian" +msgstr "Сорб" + +msgid "Greek" +msgstr "Грекче" + +msgid "English" +msgstr "Англисче" + +msgid "Australian English" +msgstr "Авс. Англисчеси" + +msgid "British English" +msgstr "Бр. Англ." + +msgid "Esperanto" +msgstr "Есперанто" + +msgid "Spanish" +msgstr "Испанча" + +msgid "Argentinian Spanish" +msgstr "Арг. исп" + +msgid "Colombian Spanish" +msgstr "Колумб Испанчасы" + +msgid "Mexican Spanish" +msgstr "Мекс. исп" + +msgid "Nicaraguan Spanish" +msgstr "Никарагуа испанчасы" + +msgid "Venezuelan Spanish" +msgstr "Венесуела Испанчасы" + +msgid "Estonian" +msgstr "Эстон" + +msgid "Basque" +msgstr "Баск" + +msgid "Persian" +msgstr "Персче" + +msgid "Finnish" +msgstr "Финче" + +msgid "French" +msgstr "Французча" + +msgid "Frisian" +msgstr "Фризче" + +msgid "Irish" +msgstr "Ирланча" + +msgid "Scottish Gaelic" +msgstr "Шотланча" + +msgid "Galician" +msgstr "Галицианча" + +msgid "Hebrew" +msgstr "Жөөтчө" + +msgid "Hindi" +msgstr "Хиндче" + +msgid "Croatian" +msgstr "Хорватча" + +msgid "Upper Sorbian" +msgstr "Жогорку Сорбчо" + +msgid "Hungarian" +msgstr "Венгрче" + +msgid "Armenian" +msgstr "Арменче" + +msgid "Interlingua" +msgstr "Эл аралык" + +msgid "Indonesian" +msgstr "Индонезче" + +msgid "Igbo" +msgstr "Игбо" + +msgid "Ido" +msgstr "идо" + +msgid "Icelandic" +msgstr "Исландча" + +msgid "Italian" +msgstr "Итальянча" + +msgid "Japanese" +msgstr "Жапончо" + +msgid "Georgian" +msgstr "Грузинче" + +msgid "Kabyle" +msgstr "Кабилче" + +msgid "Kazakh" +msgstr "Казакча" + +msgid "Khmer" +msgstr "Кхмер" + +msgid "Kannada" +msgstr "Канадча" + +msgid "Korean" +msgstr "Корейче" + +msgid "Kyrgyz" +msgstr "Кыргызча" + +msgid "Luxembourgish" +msgstr "Люкцембургча" + +msgid "Lithuanian" +msgstr "Литвача" + +msgid "Latvian" +msgstr "Латвияча" + +msgid "Macedonian" +msgstr "Македончо" + +msgid "Malayalam" +msgstr "Малаяламча" + +msgid "Mongolian" +msgstr "Монголчо" + +msgid "Marathi" +msgstr "Марати" + +msgid "Malay" +msgstr "Малай" + +msgid "Burmese" +msgstr "Бурмача" + +msgid "Norwegian Bokmål" +msgstr "Норвег Бокмолчо" + +msgid "Nepali" +msgstr "Непалча" + +msgid "Dutch" +msgstr "Голландча" + +msgid "Norwegian Nynorsk" +msgstr "Норвегиялык нюнор" + +msgid "Ossetic" +msgstr "Оссетче" + +msgid "Punjabi" +msgstr "Пенжабча" + +msgid "Polish" +msgstr "Полякча" + +msgid "Portuguese" +msgstr "Португалча" + +msgid "Brazilian Portuguese" +msgstr "Бразилиялык португалчасы" + +msgid "Romanian" +msgstr "Румынча" + +msgid "Russian" +msgstr "Орусча" + +msgid "Slovak" +msgstr "Словакча" + +msgid "Slovenian" +msgstr "Словенияча" + +msgid "Albanian" +msgstr "Албанча" + +msgid "Serbian" +msgstr "Сербче" + +msgid "Serbian Latin" +msgstr "Серб латынчасы" + +msgid "Swedish" +msgstr "Шведче" + +msgid "Swahili" +msgstr "Свахилче" + +msgid "Tamil" +msgstr "Тамиль" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Tajik" +msgstr "Тажикче" + +msgid "Thai" +msgstr "Тайча" + +msgid "Turkmen" +msgstr "Түркмөнчө" + +msgid "Turkish" +msgstr "Түркчө" + +msgid "Tatar" +msgstr "Татарча" + +msgid "Udmurt" +msgstr "Удмурча" + +msgid "Ukrainian" +msgstr "Украинче" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "Өзбекче" + +msgid "Vietnamese" +msgstr "Вьетнамча" + +msgid "Simplified Chinese" +msgstr "Жеңилдетилген кытайча" + +msgid "Traditional Chinese" +msgstr "салттык кытайча" + +msgid "Messages" +msgstr "Билдирүүлөр" + +msgid "Site Maps" +msgstr "сайт картасы" + +msgid "Static Files" +msgstr "Туруктуу файлдар" + +msgid "Syndication" +msgstr "Синдикат" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Бул барактын номуру сан эмес" + +msgid "That page number is less than 1" +msgstr "Бул барактын номуру 1 ден кичине" + +msgid "That page contains no results" +msgstr "Бул баракта жыйынтык жок" + +msgid "Enter a valid value." +msgstr "Туура маани киргиз" + +msgid "Enter a valid URL." +msgstr "Туура URL киргиз" + +msgid "Enter a valid integer." +msgstr "Туура натурал сан тер." + +msgid "Enter a valid email address." +msgstr "Туура эдарек тер." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"ариптер, цифралар, дефис же астыңкы сызык камтыган туура слаг киргизиңиз." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Юникод символдор, цифралар, астыңкы сызыктар же дефис камтыган туурга слаг " +"киргизиңиз." + +msgid "Enter a valid IPv4 address." +msgstr "Туура IPv4 тер." + +msgid "Enter a valid IPv6 address." +msgstr "Туура IPv6 тер." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Туура IPv4 же IPv6 тер." + +msgid "Enter only digits separated by commas." +msgstr "Жалаң үтүр менен бөлүнгөн сан тер." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Бул маани %(limit_value)s ашпоосун текшериңиз (азыр %(show_value)s)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "%(limit_value)s карата кичине же барабар маани болгонун текшериңиз" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "%(limit_value)s карата чоң же барабар маани болгонун текшериңиз" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Бул маани жок дегенде %(limit_value)dсимвол камтыганын текшериңиз (азыркысы " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Бул маани эң көп %(limit_value)dсимвол камтыганын текшериңиз (азыркысы " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Сан киргизиңиз." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Жалпысынан %(max)sорундан ашпоосун текшериңиз." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Жалпысынан ондук сандын%(max)s ашпоосун текшериңиз." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Жалпысынан үтүргө чейин%(max)s ашпоосун текшериңиз." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"%(extension)sфайл кеңейтүүсү кабыл алынбайт. Кабыл алынгандар: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Боштук кабыл алынбайт" + +msgid "and" +msgstr "жана" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s бул %(field_labels)s менен мурдатан эле бар" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r мааниси туура эмес тандоо." + +msgid "This field cannot be null." +msgstr "Бул аймак жок маани албашы керек" + +msgid "This field cannot be blank." +msgstr "Бул аймак бош калбашы керек" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s бул %(field_label)s менен мурдатан эле бар" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s %(date_field_label)s %(lookup_type)s үчүн уникал болуусу " +"керек." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "аймактын түрү: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” мааниси же True же False болуусу керек." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” мааниси же True же False же None болуусу керек." + +msgid "Boolean (Either True or False)" +msgstr "Булен (Туура же Ката)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Сап (%(max_length)s чейин)" + +msgid "Comma-separated integers" +msgstr "үтүр менен бөлүнгөн сан" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” мааниси туура эмес форматта. Ал ЖЖЖЖ-АА-КК форматта болуусу " +"керек." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "%(value)sмааниси туура (ЖЖЖЖ-АА-КК) форматта бирок ал күн туура эмес." + +msgid "Date (without time)" +msgstr "Күн (убакытсыз)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” мааниси туура эмес форматта. Ал ЖЖЖЖ-АА-КК СС:ММ[сс[.дддддд]]" +"[УЗ] форматта болуусу керек." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” мааниси туура форматта (ЖЖЖЖ-АА-КК СС:ММ[сс[.дддддд]][УЗ] ) " +"бирок ал күн/убакыт туура эмес." + +msgid "Date (with time)" +msgstr "Күн(убакыттуу)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” мааниси ондук сан болушу керек." + +msgid "Decimal number" +msgstr "ондук сан" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” мааниси туура эмес форматта. Ал [КК][[CC:]MM:]cc[.дддддд] " +"форматта болуусу керек." + +msgid "Duration" +msgstr "Мөөнөт" + +msgid "Email address" +msgstr "электрондук дарек" + +msgid "File path" +msgstr "файл жайгашуусу" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” мааниси калкыган чекиттүү болуусу керек." + +msgid "Floating point number" +msgstr "калкыган чекит саны" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” мааниси натуралдык сан болуусу керек." + +msgid "Integer" +msgstr "Натурал сан" + +msgid "Big (8 byte) integer" +msgstr "Чоң ( 8 байт) натурал сан" + +msgid "Small integer" +msgstr "кичине натурал сан" + +msgid "IPv4 address" +msgstr "IPv4 дареги" + +msgid "IP address" +msgstr "IP дареги" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” мааниси же None же True же False болуусу керек." + +msgid "Boolean (Either True, False or None)" +msgstr "Булен(Туура же Жалган же Куру)" + +msgid "Positive big integer" +msgstr "Оң чоң натуралдык сан." + +msgid "Positive integer" +msgstr "оң сан" + +msgid "Positive small integer" +msgstr "кичине оң сан" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "слаг ( %(max_length)s чейин)" + +msgid "Text" +msgstr "сап" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” мааниси туура эмес форматта. Ал СС:ММ[:сс[.ддддддд]] форматта " +"болуусу керек." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” мааниси туура форматта (СС:ММ[:cc[.дддддд]]) бирок ал убакыт " +"туура эмес." + +msgid "Time" +msgstr "Убакыт" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "жалаң экилик берилиш" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” туура эмес UUID." + +msgid "Universally unique identifier" +msgstr "универсал уникал көрсөтүүчү" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Сүрөт" + +msgid "A JSON object" +msgstr "JSON обектиси" + +msgid "Value must be valid JSON." +msgstr "Маани туура JSON болушу керек." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s нерсеси %(field)s аймагы %(value)r маани менен табылбады." + +msgid "Foreign Key (type determined by related field)" +msgstr "Бөтөн Ачкыч (байланышкан аймак менен аныкталат)" + +msgid "One-to-one relationship" +msgstr "Бирге-бир байланышы" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s байланышы" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s байланыштары" + +msgid "Many-to-many relationship" +msgstr "көпкө-көп байланышы" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Бул талаа керектүү." + +msgid "Enter a whole number." +msgstr "Толук сан киргиз." + +msgid "Enter a valid date." +msgstr "туура күн киргиз." + +msgid "Enter a valid time." +msgstr "Туура убакыт киргиз." + +msgid "Enter a valid date/time." +msgstr "Туура күн/убакыт киргиз." + +msgid "Enter a valid duration." +msgstr "Туура мөөнөт киргиз." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Күндөрдүн саны {min_days} жана {max_days} арасында болуусу керек." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Файл жиберилген жок. Формдун бекитүү түрүн текшер." + +msgid "No file was submitted." +msgstr "Файл жиберилген жок." + +msgid "The submitted file is empty." +msgstr "Жиберилген файл бош." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Бул файлдын аты эң көп %(max)dсимвол ала алат. (азыркысы %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Сураныч же файл жибериңиз же тандоону бош калтырыңыз. Экөөн тең эмес." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "Туура сүрөт жөнөтүңүз. Сиз жүктөгөн же сүрөт эмес же бузулган сүрөт." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Туура тандоону танда. %(value)s мүмкүн болгон тандоо эмес." + +msgid "Enter a list of values." +msgstr "Туура маанилер тизмесин киргиз." + +msgid "Enter a complete value." +msgstr "Толук маани киргиз." + +msgid "Enter a valid UUID." +msgstr "Туура UUID киргиз." + +msgid "Enter a valid JSON." +msgstr "Туура JSON киргиз." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(жашырылган аймак %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm берилиши жетишпей атат же жасалма болуп атат. Жетишпеген " +"талаалар: %(field_names)s. Эгер көйгөй чечилбей атса сиз баг билдирүү " +"жөнөтсөңүз болот." + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "Сураныч, эң көп %d форм жөнөтүңүз." + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "Сураныч, эң аз %dформ жөнөтүңүз." + +msgid "Order" +msgstr "Тартип" + +msgid "Delete" +msgstr "Өчүрүү" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s үчүн кайталанган маанилерди оңдоңуз." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"%(field)s үчүн кайталанган маанилерди оңдоңуз алар уникал болуусу керек." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s %(date_field)s да %(lookup)s үчүн уникал болусу керек. " +"Берилиштерди оңдоңуз." + +msgid "Please correct the duplicate values below." +msgstr "Төмөндө кайталанган маанилерди оңдоңуз." + +msgid "The inline value did not match the parent instance." +msgstr "Катардагы маани энелик нерсеге туура келбей жатат." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Туура тандоо кылыңыз. Ал тандоо мүмкүнчүлүктөн сырткары." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr " “%(pk)s”туура эмес маани." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)sкүнү %(current_timezone)sубактысы боюнча чечмелене албай атат. " +"Ал экианжы же жок болушу мүмкүн." + +msgid "Clear" +msgstr "Тазалоо" + +msgid "Currently" +msgstr "Азыркы" + +msgid "Change" +msgstr "өзгөртүү" + +msgid "Unknown" +msgstr "Белгисиз" + +msgid "Yes" +msgstr "Ооба" + +msgid "No" +msgstr "Жок" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ооба, жок, балким" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)dбит" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s мегабайт" + +#, python-format +msgid "%s GB" +msgstr "%s гигабайт" + +#, python-format +msgid "%s TB" +msgstr "%s терабайт" + +#, python-format +msgid "%s PB" +msgstr "%s пикабайт" + +msgid "p.m." +msgstr "түштөн кийин" + +msgid "a.m." +msgstr "түшкө чейин" + +msgid "PM" +msgstr "Түштөн кийин" + +msgid "AM" +msgstr "Түшкө чейин" + +msgid "midnight" +msgstr "Түнүчү" + +msgid "noon" +msgstr "ай" + +msgid "Monday" +msgstr "Дүйшөмбү" + +msgid "Tuesday" +msgstr "Шейшемби" + +msgid "Wednesday" +msgstr "Шаршемби" + +msgid "Thursday" +msgstr "Бейшемби" + +msgid "Friday" +msgstr "Жума" + +msgid "Saturday" +msgstr "Ишемби" + +msgid "Sunday" +msgstr "Жекшемби" + +msgid "Mon" +msgstr "Дүйш" + +msgid "Tue" +msgstr "Шей" + +msgid "Wed" +msgstr "Шар" + +msgid "Thu" +msgstr "Бей" + +msgid "Fri" +msgstr "Жума" + +msgid "Sat" +msgstr "Ише" + +msgid "Sun" +msgstr "Жек" + +msgid "January" +msgstr "Январь" + +msgid "February" +msgstr "Февраль" + +msgid "March" +msgstr "Март" + +msgid "April" +msgstr "Апрель" + +msgid "May" +msgstr "Май" + +msgid "June" +msgstr "Июнь" + +msgid "July" +msgstr "Июль" + +msgid "August" +msgstr "Август" + +msgid "September" +msgstr "Сентябрь" + +msgid "October" +msgstr "Октябрь" + +msgid "November" +msgstr "Ноябрь" + +msgid "December" +msgstr "Декабрь" + +msgid "jan" +msgstr "янв" + +msgid "feb" +msgstr "фев" + +msgid "mar" +msgstr "мар" + +msgid "apr" +msgstr "апр" + +msgid "may" +msgstr "май" + +msgid "jun" +msgstr "июн" + +msgid "jul" +msgstr "июл" + +msgid "aug" +msgstr "авг" + +msgid "sep" +msgstr "сен" + +msgid "oct" +msgstr "окт" + +msgid "nov" +msgstr "ноя" + +msgid "dec" +msgstr "дек" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Янв." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Фев." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Март" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Апрель" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Май" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Июнь" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Июль" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Сен." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ноя." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дек." + +msgctxt "alt. month" +msgid "January" +msgstr "Январь" + +msgctxt "alt. month" +msgid "February" +msgstr "Февраль" + +msgctxt "alt. month" +msgid "March" +msgstr "Март" + +msgctxt "alt. month" +msgid "April" +msgstr "Апрель" + +msgctxt "alt. month" +msgid "May" +msgstr "Май" + +msgctxt "alt. month" +msgid "June" +msgstr "Июнь" + +msgctxt "alt. month" +msgid "July" +msgstr "Июль" + +msgctxt "alt. month" +msgid "August" +msgstr "Август" + +msgctxt "alt. month" +msgid "September" +msgstr "Сентябрь" + +msgctxt "alt. month" +msgid "October" +msgstr "Октябрь" + +msgctxt "alt. month" +msgid "November" +msgstr "Ноябрь" + +msgctxt "alt. month" +msgid "December" +msgstr "Декабрь" + +msgid "This is not a valid IPv6 address." +msgstr "Бул туура эмес IPv6 дареги" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "же" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d жыл" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d ай" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d апта" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d күн" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d саат" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d мүнөт" + +msgid "Forbidden" +msgstr "Тыйылган" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF текшерүү кыйрады. Суроо четке кагылды." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Браузер тараптан \"Referer header\" HTTPS сайтына жиберилбей калгандыгы үчүн " +"бул билдирүүнү көрүп турасыз. Бул хэдэр сиздин браузер үчүнчү жактан " +"чабуулга учурабаганын текшерүүгө коопсуздук үчүн керек." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Эгер сиз броузерден “Referer” хэдерин өчүрүп салсаңыз, аны күйгүзүп коюңуз. " +"Жок дегенде ушул сайт үчүн же жок дегенде HTTPS байланышуу үчүн. Же болбосо " +"“same-origin” суроолору үчүн." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Эгер сиз тегин же “Referrer-" +"Policy: no-referrer” хэдерин колдонуп жатсаңыз, аларды өчүрүп салыңыз. CSRF " +"коргоосу “Referer” хэдерин талап кылат. Эгер сиз коопсуздук жөнүндө " +"кабатырланып атсаңыз үчүнчү жактар үчүн шилтемесин " +"колдонуңуз." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Сиз бул билдирүүнү бул сайт форм жиберүүдө CSRF кукини талап кылгандыгы үчүн " +"көрүп жатасыз. Бул куки коопсуздуктан улам сиздин сайтыңыз үчүнчү жактан " +"чабуулга кабылбаганын текшерүү үчүн талап кылынат. " + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Эгер сиз броузерде кукиледи өчүрүп койсоңуз, аларды кайра күйгүзүп коюңуз. " +"Жок дегенде ушул сайтка же “same-origin” суроолоруна." + +msgid "More information is available with DEBUG=True." +msgstr "Сиз бул маалыматты DEBUG=True болгону үчүн көрүп жатасыз." + +msgid "No year specified" +msgstr "Жыл көрсөтүлгөн эмес" + +msgid "Date out of range" +msgstr "Күн чектен сырткары" + +msgid "No month specified" +msgstr "Ай көрсөтүлгөн эмес" + +msgid "No day specified" +msgstr "Апта күнү көрсөтүлгөн эмес" + +msgid "No week specified" +msgstr "Апта көрсөтүлгө эмес" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s жок" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s future си тейленбейт. Себеби %(class_name)s." +"allow_future си False маани алган." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Туура эмес күн сабы “%(datestr)s” берилген формат болсо “%(format)s”." + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "суроого эч бир %(verbose_name)s табылбады" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Барак акыркы эмес. Же натуралдык санга өткөрүлө албай атат." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Туура эмес (%(page_number)s) барак: %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Бош тизме жана “%(class_name)s.allow_empty” = False болуп калган." + +msgid "Directory indexes are not allowed here." +msgstr "Папка индекстери бул жерде иштей албайт." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” жашабайт" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s индексттери" + +msgid "The install worked successfully! Congratulations!" +msgstr "Орнотуу ийгиликтүү аяктады! Куттуу болсун!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Жанго %(version)s үчүн чыгарылыш " +"эскертмелерин кара." + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Сиз бул бетти сиздин тууралоо файлыңызда DEBUG=True жана эчбир урл тууралабагандыгыңыз үчүн көрүп " +"жататсыз." + +msgid "Django Documentation" +msgstr "Жанго Түшүндүрмөсү" + +msgid "Topics, references, & how-to’s" +msgstr "Темалар, Сурамжылар, & кантип.. тер" + +msgid "Tutorial: A Polling App" +msgstr "Колдонмо:" + +msgid "Get started with Django" +msgstr "Жангону башта" + +msgid "Django Community" +msgstr "Жанго жамааты" + +msgid "Connect, get help, or contribute" +msgstr "Туташ, жардам ал, же салым кош" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ky/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ky/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ky/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..01e9866e100a7b689cd2dac7489f4d221a3df7f6 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFvuoyL7b^1pG)k1w}a>JtVICDE3B z#V|F|hC_R<9mELlw87YwMbp;|-B$O8C;ycsx_dIVRKv9WcIvYSbQGt|O$&FrzM=T< zW%(UE-`VE+!m;o3EcpEJ8OMAq$rp1?y!0)3A)2CXnDE?I4aX97sl`URqrH_)e`Xra zVy@4=5jj4-UAYS{1kWj=yzo9oNtt<47FKDrDGM)-iZaOjJgAbR_2ue=SFFnD<#iBV z1x=TS*1;yureU^OPLnJQl4yFhoi4LH4a$PQ-rmr!(hOBe^cvrZ;zd&c0A%~2x)cfi L(f|wqNt6EomUzSJ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ky/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ky/formats.py new file mode 100644 index 0000000..25a0928 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ky/formats.py @@ -0,0 +1,32 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j E Y ж." +TIME_FORMAT = "G:i" +DATETIME_FORMAT = "j E Y ж. G:i" +YEAR_MONTH_FORMAT = "F Y ж." +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Дүйшөмбү, Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' + "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' + "%d.%m.%y %H:%M", # '25.10.06 14:30' + "%d.%m.%y", # '25.10.06' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..2cf2c8bd2b79469b1cb6a5b17960994485588e50 GIT binary patch literal 8008 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po new file mode 100644 index 0000000..b0d4755 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/lb/LC_MESSAGES/django.po @@ -0,0 +1,1213 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# sim0n , 2011,2013 +# sim0n , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Luxembourgish (http://www.transifex.com/django/django/" +"language/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabesch" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "" + +msgid "Bulgarian" +msgstr "Bulgaresch" + +msgid "Belarusian" +msgstr "Wäissrussesch" + +msgid "Bengali" +msgstr "Bengalesch" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "Bosnesch" + +msgid "Catalan" +msgstr "Katalanesch" + +msgid "Czech" +msgstr "Tschechesch" + +msgid "Welsh" +msgstr "Walisesch" + +msgid "Danish" +msgstr "Dänesch" + +msgid "German" +msgstr "Däitsch" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Griichesch" + +msgid "English" +msgstr "Englesch" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "Britesch Englesch" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "Spuenesch" + +msgid "Argentinian Spanish" +msgstr "Argentinesch Spuenesch" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Mexikanesch Spuenesch" + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "Estonesch" + +msgid "Basque" +msgstr "Baskesch" + +msgid "Persian" +msgstr "Persesch" + +msgid "Finnish" +msgstr "Finnesch" + +msgid "French" +msgstr "Franséisch" + +msgid "Frisian" +msgstr "Frisesch" + +msgid "Irish" +msgstr "Iresch" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Galesch" + +msgid "Hebrew" +msgstr "Hebräesch" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroatesch" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Ungaresch" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "Indonesesch" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Islännesch" + +msgid "Italian" +msgstr "Italienesch" + +msgid "Japanese" +msgstr "Japanesch" + +msgid "Georgian" +msgstr "Georgesch" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kanadesch" + +msgid "Korean" +msgstr "Koreanesch" + +msgid "Luxembourgish" +msgstr "Lëtzebuergesch" + +msgid "Lithuanian" +msgstr "Lithuanesesch" + +msgid "Latvian" +msgstr "Lättesch" + +msgid "Macedonian" +msgstr "Macedonesch" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolesch" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "Hollännesch" + +msgid "Norwegian Nynorsk" +msgstr "Norwegesch Nynorsk" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polnesch" + +msgid "Portuguese" +msgstr "Portugisesch" + +msgid "Brazilian Portuguese" +msgstr "Brasilianesch Portugisesch" + +msgid "Romanian" +msgstr "Rumänesch" + +msgid "Russian" +msgstr "Russesch" + +msgid "Slovak" +msgstr "Slowakesch" + +msgid "Slovenian" +msgstr "Slowenesch" + +msgid "Albanian" +msgstr "Albanesch" + +msgid "Serbian" +msgstr "Serbesch" + +msgid "Serbian Latin" +msgstr "Serbesch Latäinesch" + +msgid "Swedish" +msgstr "Schwedesch" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkish" +msgstr "Tierkesch" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "Ukrainesch" + +msgid "Urdu" +msgstr "" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamesesch" + +msgid "Simplified Chinese" +msgstr "Einfach d'Chinesesch" + +msgid "Traditional Chinese" +msgstr "Traditionell d'Chinesesch" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Gëff en validen Wärt an." + +msgid "Enter a valid URL." +msgstr "Gëff eng valid URL an." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "Gëff eng valid e-mail Adress an." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Gëff eng valid IPv4 Adress an." + +msgid "Enter a valid IPv6 address." +msgstr "Gëff eng valid IPv6 Adress an." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Gëff eng valid IPv4 oder IPv6 Adress an." + +msgid "Enter only digits separated by commas." +msgstr "" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "an" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "" + +msgid "This field cannot be blank." +msgstr "" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Datum (ouni Zäit)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Datum (mat Zäit)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Dezimalzuel" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "E-mail Adress" + +msgid "File path" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Kommazuel" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Zuel" + +msgid "Big (8 byte) integer" +msgstr "Grouss (8 byte) Zuel" + +msgid "IPv4 address" +msgstr "IPv4 Adress" + +msgid "IP address" +msgstr "IP Adress" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "" + +msgid "Positive integer" +msgstr "Positiv Zuel" + +msgid "Positive small integer" +msgstr "Kleng positiv Zuel" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "Kleng Zuel" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Zäit" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Rei Binär Daten" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Fichier" + +msgid "Image" +msgstr "Bild" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "" + +msgid "Enter a whole number." +msgstr "" + +msgid "Enter a valid date." +msgstr "" + +msgid "Enter a valid time." +msgstr "" + +msgid "Enter a valid date/time." +msgstr "" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +msgid "No file was submitted." +msgstr "Et ass keng Datei geschéckt ginn." + +msgid "The submitted file is empty." +msgstr "" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "Gëff eng Lescht vun Wäerter an." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Sortéier" + +msgid "Delete" +msgstr "Läsch" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Maach eidel" + +msgid "Currently" +msgstr "Momentan" + +msgid "Change" +msgstr "Änner" + +msgid "Unknown" +msgstr "Onbekannt" + +msgid "Yes" +msgstr "Jo" + +msgid "No" +msgstr "Nee" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "jo,nee,vläit" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "" + +msgid "noon" +msgstr "" + +msgid "Monday" +msgstr "Méindeg" + +msgid "Tuesday" +msgstr "Dënschdeg" + +msgid "Wednesday" +msgstr "Mëttwoch" + +msgid "Thursday" +msgstr "Donneschdes" + +msgid "Friday" +msgstr "Freides" + +msgid "Saturday" +msgstr "Samschdes" + +msgid "Sunday" +msgstr "Sonndes" + +msgid "Mon" +msgstr "Mei" + +msgid "Tue" +msgstr "Dën" + +msgid "Wed" +msgstr "Mett" + +msgid "Thu" +msgstr "Don" + +msgid "Fri" +msgstr "Fre" + +msgid "Sat" +msgstr "Sam" + +msgid "Sun" +msgstr "Son" + +msgid "January" +msgstr "Januar" + +msgid "February" +msgstr "Februar" + +msgid "March" +msgstr "März" + +msgid "April" +msgstr "Abrell" + +msgid "May" +msgstr "" + +msgid "June" +msgstr "Juni" + +msgid "July" +msgstr "Juli" + +msgid "August" +msgstr "August" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "Oktober" + +msgid "November" +msgstr "November" + +msgid "December" +msgstr "Dezember" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mär" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "März" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abrell" + +msgctxt "abbrev. month" +msgid "May" +msgstr "" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Juni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Juli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +msgctxt "alt. month" +msgid "March" +msgstr "März" + +msgctxt "alt. month" +msgid "April" +msgstr "Abrell" + +msgctxt "alt. month" +msgid "May" +msgstr "" + +msgctxt "alt. month" +msgid "June" +msgstr "Juni" + +msgctxt "alt. month" +msgid "July" +msgstr "Juli" + +msgctxt "alt. month" +msgid "August" +msgstr "August" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "December" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "oder" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d Joer" +msgstr[1] "%d Joren" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d Mount" +msgstr[1] "%d Meint" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d Woch" +msgstr[1] "%d Wochen" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d Dag" +msgstr[1] "%d Deeg" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d Stonn" +msgstr[1] "%d Stonnen" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d Minutt" +msgstr[1] "%d Minutten" + +msgid "0 minutes" +msgstr "0 Minutten" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..ee14fecb9b7a91b3cb1a49177599227d3261f3a9 GIT binary patch literal 21421 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, 2011 +# Kostas , 2011 +# lauris , 2011 +# Mariusz Felisiak , 2021 +# Matas Dailyda , 2015-2019 +# naktinis , 2012 +# Nikolajus Krauklis , 2013 +# Povilas Balzaravičius , 2011-2012 +# Simonas Kazlauskas , 2012-2014 +# Vytautas Astrauskas , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-24 16:28+0000\n" +"Last-Translator: Mariusz Felisiak \n" +"Language-Team: Lithuanian (http://www.transifex.com/django/django/language/" +"lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < " +"11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? " +"1 : n % 1 != 0 ? 2: 3);\n" + +msgid "Afrikaans" +msgstr "Afrikiečių" + +msgid "Arabic" +msgstr "Arabų" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Austrų" + +msgid "Azerbaijani" +msgstr "Azerbaidžaniečių" + +msgid "Bulgarian" +msgstr "Bulgarų" + +msgid "Belarusian" +msgstr "Gudų" + +msgid "Bengali" +msgstr "Bengalų" + +msgid "Breton" +msgstr "Bretonų" + +msgid "Bosnian" +msgstr "Bosnių" + +msgid "Catalan" +msgstr "Katalonų" + +msgid "Czech" +msgstr "Čekų" + +msgid "Welsh" +msgstr "Velso" + +msgid "Danish" +msgstr "Danų" + +msgid "German" +msgstr "Vokiečių" + +msgid "Lower Sorbian" +msgstr "Žemutinė Sorbų" + +msgid "Greek" +msgstr "Graikų" + +msgid "English" +msgstr "Anglų" + +msgid "Australian English" +msgstr "Australų Anlgų" + +msgid "British English" +msgstr "Britų Anglų" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Ispanų" + +msgid "Argentinian Spanish" +msgstr "Argentiniečių Ispanų" + +msgid "Colombian Spanish" +msgstr "Kolumbų Ispanų" + +msgid "Mexican Spanish" +msgstr "Meksikiečių Ispanų" + +msgid "Nicaraguan Spanish" +msgstr "Nikaragvos Ispanijos" + +msgid "Venezuelan Spanish" +msgstr "Venesuelos Ispanų" + +msgid "Estonian" +msgstr "Estų" + +msgid "Basque" +msgstr "Baskų" + +msgid "Persian" +msgstr "Persų" + +msgid "Finnish" +msgstr "Suomių" + +msgid "French" +msgstr "Prancūzų" + +msgid "Frisian" +msgstr "Fryzų" + +msgid "Irish" +msgstr "Airių" + +msgid "Scottish Gaelic" +msgstr "Škotų Gėlų" + +msgid "Galician" +msgstr "Galų" + +msgid "Hebrew" +msgstr "Hebrajų" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroatų" + +msgid "Upper Sorbian" +msgstr "Aukštutinė Sorbų" + +msgid "Hungarian" +msgstr "Vengrų" + +msgid "Armenian" +msgstr "Armėnų" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indoneziečių" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandų" + +msgid "Italian" +msgstr "Italų" + +msgid "Japanese" +msgstr "Japonų" + +msgid "Georgian" +msgstr "Gruzinų" + +msgid "Kabyle" +msgstr "Kabilų" + +msgid "Kazakh" +msgstr "Kazachų" + +msgid "Khmer" +msgstr "Khmerų" + +msgid "Kannada" +msgstr "Dravidų" + +msgid "Korean" +msgstr "Korėjiečių" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Liuksemburgų" + +msgid "Lithuanian" +msgstr "Lietuvių" + +msgid "Latvian" +msgstr "Latvių" + +msgid "Macedonian" +msgstr "Makedonų" + +msgid "Malayalam" +msgstr "Malajalių" + +msgid "Mongolian" +msgstr "Mongolų" + +msgid "Marathi" +msgstr "Marati" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Mjanmų" + +msgid "Norwegian Bokmål" +msgstr "Norvegų Bokmal" + +msgid "Nepali" +msgstr "Nepalų" + +msgid "Dutch" +msgstr "Olandų" + +msgid "Norwegian Nynorsk" +msgstr "Norvegų Nynorsk" + +msgid "Ossetic" +msgstr "Osetinų" + +msgid "Punjabi" +msgstr "Pandžabi" + +msgid "Polish" +msgstr "Lenkų" + +msgid "Portuguese" +msgstr "Protugalų" + +msgid "Brazilian Portuguese" +msgstr "Brazilijos Portugalų" + +msgid "Romanian" +msgstr "Rumunų" + +msgid "Russian" +msgstr "Rusų" + +msgid "Slovak" +msgstr "Slovakų" + +msgid "Slovenian" +msgstr "Slovėnų" + +msgid "Albanian" +msgstr "Albanų" + +msgid "Serbian" +msgstr "Serbų" + +msgid "Serbian Latin" +msgstr "Serbų Lotynų" + +msgid "Swedish" +msgstr "Švedų" + +msgid "Swahili" +msgstr "Svahili" + +msgid "Tamil" +msgstr "Tamilų" + +msgid "Telugu" +msgstr "Telugų" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tailando" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turkų" + +msgid "Tatar" +msgstr "Totorių" + +msgid "Udmurt" +msgstr "Udmurtų" + +msgid "Ukrainian" +msgstr "Ukrainiečių" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamiečių" + +msgid "Simplified Chinese" +msgstr "Supaprastinta kinų" + +msgid "Traditional Chinese" +msgstr "Tradicinė kinų" + +msgid "Messages" +msgstr "Žinutės" + +msgid "Site Maps" +msgstr "Tinklalapio struktūros" + +msgid "Static Files" +msgstr "Statiniai failai" + +msgid "Syndication" +msgstr "Sindikacija" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "To puslapio numeris nėra sveikasis skaičius." + +msgid "That page number is less than 1" +msgstr "To numerio puslapis yra mažesnis už 1" + +msgid "That page contains no results" +msgstr "Tas puslapis neturi jokių rezultatų" + +msgid "Enter a valid value." +msgstr "Įveskite tinkamą reikšmę." + +msgid "Enter a valid URL." +msgstr "Įveskite tinkamą URL adresą." + +msgid "Enter a valid integer." +msgstr "Įveskite tinkamą sveikąjį skaičių." + +msgid "Enter a valid email address." +msgstr "Įveskite teisingą el. pašto adresą." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Įveskite validų IPv4 adresą." + +msgid "Enter a valid IPv6 address." +msgstr "Įveskite validų IPv6 adresą." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Įveskite validų IPv4 arba IPv6 adresą." + +msgid "Enter only digits separated by commas." +msgstr "Įveskite skaitmenis atskirtus kableliais." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Įsitikinkite, kad reikšmę sudaro %(limit_value)s simbolių (dabar yra " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Įsitikinkite, kad reikšmė yra mažesnė arba lygi %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Įsitikinkite, kad reikšmė yra didesnė arba lygi %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Įsitikinkite, kad reikšmė sudaryta iš nemažiau kaip %(limit_value)d ženklo " +"(dabartinis ilgis %(show_value)d)." +msgstr[1] "" +"Įsitikinkite, kad reikšmė sudaryta iš nemažiau kaip %(limit_value)d ženklų " +"(dabartinis ilgis %(show_value)d)." +msgstr[2] "" +"Įsitikinkite, kad reikšmė sudaryta iš nemažiau kaip %(limit_value)d ženklų " +"(dabartinis ilgis %(show_value)d)." +msgstr[3] "" +"Įsitikinkite, kad reikšmė sudaryta iš nemažiau kaip %(limit_value)d ženklų " +"(dabartinis ilgis %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Įsitikinkite, kad reikšmė sudaryta iš nedaugiau kaip %(limit_value)d ženklo " +"(dabartinis ilgis %(show_value)d)." +msgstr[1] "" +"Įsitikinkite, kad reikšmė sudaryta iš nedaugiau kaip %(limit_value)d ženklų " +"(dabartinis ilgis %(show_value)d)." +msgstr[2] "" +"Įsitikinkite, kad reikšmė sudaryta iš nedaugiau kaip %(limit_value)d ženklų " +"(dabartinis ilgis %(show_value)d)." +msgstr[3] "" +"Įsitikinkite, kad reikšmė sudaryta iš nedaugiau kaip %(limit_value)d ženklų " +"(dabartinis ilgis %(show_value)d)." + +msgid "Enter a number." +msgstr "Įveskite skaičių." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmuo." +msgstr[1] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenys." +msgstr[2] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenų." +msgstr[3] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenų." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmuo po kablelio." +msgstr[1] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenys po kablelio." +msgstr[2] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenų po kablelio." +msgstr[3] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenų po kablelio." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmuo prieš kablelį." +msgstr[1] "" +"Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenys prieš kablelį." +msgstr[2] "" +"Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenų prieš kablelį." +msgstr[3] "" +"Įsitikinkite, kad yra nedaugiau nei %(max)s skaitmenų prieš kablelį." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Nuliniai simboliai neleidžiami." + +msgid "and" +msgstr "ir" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s su šiais %(field_labels)s jau egzistuoja." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Reikšmės %(value)r rinktis negalima." + +msgid "This field cannot be null." +msgstr "Šis laukas negali būti null." + +msgid "This field cannot be blank." +msgstr "Lauką privaloma užpildyti." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s su šiuo %(field_label)s jau egzistuoja." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s privalo būti unikalus %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Lauko tipas: %(field_type)s " + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Loginė reikšmė (Tiesa arba Netiesa)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Eilutė (ilgis iki %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Kableliais atskirti sveikieji skaičiai" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Data (be laiko)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Data (su laiku)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Dešimtainis skaičius" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Trukmė" + +msgid "Email address" +msgstr "El. pašto adresas" + +msgid "File path" +msgstr "Kelias iki failo" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Realus skaičius" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Sveikas skaičius" + +msgid "Big (8 byte) integer" +msgstr "Didelis (8 baitų) sveikas skaičius" + +msgid "Small integer" +msgstr "Nedidelis sveikasis skaičius" + +msgid "IPv4 address" +msgstr "IPv4 adresas" + +msgid "IP address" +msgstr "IP adresas" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Loginė reikšmė (Tiesa, Netiesa arba Nieko)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Teigiamas sveikasis skaičius" + +msgid "Positive small integer" +msgstr "Nedidelis teigiamas sveikasis skaičius" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Unikalus adresas (iki %(max_length)s ženklų)" + +msgid "Text" +msgstr "Tekstas" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Laikas" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Neapdorota informacija" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "Universaliai unikalus identifikatorius" + +msgid "File" +msgstr "Failas" + +msgid "Image" +msgstr "Paveiksliukas" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s objektas su %(field)s %(value)r neegzistuoja." + +msgid "Foreign Key (type determined by related field)" +msgstr "Išorinis raktas (tipas nustatomas susijusiame lauke)" + +msgid "One-to-one relationship" +msgstr "Sąryšis vienas su vienu" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s sąryšis" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s sąryšiai" + +msgid "Many-to-many relationship" +msgstr "Sąryšis daug su daug" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Šis laukas yra privalomas." + +msgid "Enter a whole number." +msgstr "Įveskite pilną skaičių." + +msgid "Enter a valid date." +msgstr "Įveskite tinkamą datą." + +msgid "Enter a valid time." +msgstr "Įveskite tinkamą laiką." + +msgid "Enter a valid date/time." +msgstr "Įveskite tinkamą datą/laiką." + +msgid "Enter a valid duration." +msgstr "Įveskite tinkamą trukmę." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Dienų skaičius turi būti tarp {min_days} ir {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nebuvo nurodytas failas. Patikrinkite formos koduotę." + +msgid "No file was submitted." +msgstr "Failas nebuvo nurodytas." + +msgid "The submitted file is empty." +msgstr "Nurodytas failas yra tuščias." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Įsitikinkite, kad failo pavadinimas sudarytas iš nedaugiau kaip %(max)d " +"ženklo (dabartinis ilgis %(length)d)." +msgstr[1] "" +"Įsitikinkite, kad failo pavadinimas sudarytas iš nedaugiau kaip %(max)d " +"ženklų (dabartinis ilgis %(length)d)." +msgstr[2] "" +"Įsitikinkite, kad failo pavadinimas sudarytas iš nedaugiau kaip %(max)d " +"ženklų (dabartinis ilgis %(length)d)." +msgstr[3] "" +"Įsitikinkite, kad failo pavadinimas sudarytas iš nedaugiau kaip %(max)d " +"ženklų (dabartinis ilgis %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Nurodykite failą arba pažymėkite išvalyti. Abu pasirinkimai negalimi." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Atsiųskite tinkamą paveiksliuką. Failas, kurį siuntėte nebuvo paveiksliukas, " +"arba buvo sugadintas." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Nurodykite tinkamą reikšmę. %(value)s nėra galimas pasirinkimas." + +msgid "Enter a list of values." +msgstr "Įveskite reikšmių sarašą." + +msgid "Enter a complete value." +msgstr "Įveskite pilną reikšmę." + +msgid "Enter a valid UUID." +msgstr "Įveskite tinkamą UUID." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Paslėptas laukelis %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +msgid "Order" +msgstr "Nurodyti" + +msgid "Delete" +msgstr "Ištrinti" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Pataisykite pasikartojančius duomenis laukui %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Pataisykite pasikartojančius duomenis laukui %(field)s. Duomenys privalo " +"būti unikalūs." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Pataisykite pasikartojančius duomenis laukui %(field_name)s. Duomenys " +"privalo būti unikalūs %(lookup)s peržiūroms per %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Pataisykite žemiau esančias pasikartojančias reikšmes." + +msgid "The inline value did not match the parent instance." +msgstr "Reikšmė nesutapo su pirminiu objektu." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Pasirinkite tinkamą reikšmę. Parinkta reikšmė nėra galima." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Išvalyti" + +msgid "Currently" +msgstr "Šiuo metu" + +msgid "Change" +msgstr "Pakeisti" + +msgid "Unknown" +msgstr "Nežinomas" + +msgid "Yes" +msgstr "Taip" + +msgid "No" +msgstr "Ne" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "taip,ne,galbūt" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d baitas" +msgstr[1] "%(size)d baitai" +msgstr[2] "%(size)d baitai" +msgstr[3] "%(size)d baitai" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "vidurnaktis" + +msgid "noon" +msgstr "vidurdienis" + +msgid "Monday" +msgstr "Pirmadienis" + +msgid "Tuesday" +msgstr "Antradienis" + +msgid "Wednesday" +msgstr "Trečiadienis" + +msgid "Thursday" +msgstr "Ketvirtadienis" + +msgid "Friday" +msgstr "Penktadienis" + +msgid "Saturday" +msgstr "Šeštadienis" + +msgid "Sunday" +msgstr "Sekmadienis" + +msgid "Mon" +msgstr "Pr" + +msgid "Tue" +msgstr "A" + +msgid "Wed" +msgstr "T" + +msgid "Thu" +msgstr "K" + +msgid "Fri" +msgstr "P" + +msgid "Sat" +msgstr "Š" + +msgid "Sun" +msgstr "S" + +msgid "January" +msgstr "sausis" + +msgid "February" +msgstr "vasaris" + +msgid "March" +msgstr "kovas" + +msgid "April" +msgstr "balandis" + +msgid "May" +msgstr "gegužė" + +msgid "June" +msgstr "birželis" + +msgid "July" +msgstr "liepa" + +msgid "August" +msgstr "rugpjūtis" + +msgid "September" +msgstr "rugsėjis" + +msgid "October" +msgstr "spalis" + +msgid "November" +msgstr "lapkritis" + +msgid "December" +msgstr "gruodis" + +msgid "jan" +msgstr "sau" + +msgid "feb" +msgstr "vas" + +msgid "mar" +msgstr "kov" + +msgid "apr" +msgstr "bal" + +msgid "may" +msgstr "geg" + +msgid "jun" +msgstr "bir" + +msgid "jul" +msgstr "lie" + +msgid "aug" +msgstr "rugp" + +msgid "sep" +msgstr "rugs" + +msgid "oct" +msgstr "spa" + +msgid "nov" +msgstr "lap" + +msgid "dec" +msgstr "grd" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "saus." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "vas." + +msgctxt "abbrev. month" +msgid "March" +msgstr "kov." + +msgctxt "abbrev. month" +msgid "April" +msgstr "bal." + +msgctxt "abbrev. month" +msgid "May" +msgstr "geg." + +msgctxt "abbrev. month" +msgid "June" +msgstr "birž." + +msgctxt "abbrev. month" +msgid "July" +msgstr "liep." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "rugpj." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "rugs." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "spal." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "lapkr." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "gruod." + +msgctxt "alt. month" +msgid "January" +msgstr "sausio" + +msgctxt "alt. month" +msgid "February" +msgstr "vasario" + +msgctxt "alt. month" +msgid "March" +msgstr "kovo" + +msgctxt "alt. month" +msgid "April" +msgstr "balandžio" + +msgctxt "alt. month" +msgid "May" +msgstr "gegužės" + +msgctxt "alt. month" +msgid "June" +msgstr "birželio" + +msgctxt "alt. month" +msgid "July" +msgstr "liepos" + +msgctxt "alt. month" +msgid "August" +msgstr "rugpjūčio" + +msgctxt "alt. month" +msgid "September" +msgstr "rugsėjo" + +msgctxt "alt. month" +msgid "October" +msgstr "spalio" + +msgctxt "alt. month" +msgid "November" +msgstr "lapkričio" + +msgctxt "alt. month" +msgid "December" +msgstr "gruodžio" + +msgid "This is not a valid IPv6 address." +msgstr "Tai nėra teisingas IPv6 adresas." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "arba" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +msgid "Forbidden" +msgstr "Uždrausta" + +msgid "CSRF verification failed. Request aborted." +msgstr "Nepavyko CSRF patvirtinimas. Užklausa nutraukta." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Jūs matote šią žinutę nes šis puslapis reikalauja CSRF slapuko, kai " +"pateikiama forma. Slapukas reikalaujamas saugumo sumetimais, kad užtikrinti " +"jog jūsų naršyklė nėra užgrobiama trečiųjų asmenų." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Gauti daugiau informacijos galima su DEBUG=True nustatymu." + +msgid "No year specified" +msgstr "Nenurodyti metai" + +msgid "Date out of range" +msgstr "Data išeina iš ribų" + +msgid "No month specified" +msgstr "Nenurodytas mėnuo" + +msgid "No day specified" +msgstr "Nenurodyta diena" + +msgid "No week specified" +msgstr "Nenurodyta savaitė" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nėra %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Ateities %(verbose_name_plural)s nėra prieinami, nes %(class_name)s." +"allow_future yra False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Atitinkantis užklausą %(verbose_name)s nerastas" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Neegzistuojantis puslapis (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Aplankų indeksai čia neleidžiami." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s indeksas" + +msgid "The install worked successfully! Congratulations!" +msgstr "Diegimas pavyko! Sveikiname!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Žiūrėti Django %(version)s išleidimo " +"pastabas" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Jūs matote šią žinutę dėl to kad Django nustatymų faile įvesta DEBUG = True ir Jūs nenustatėte jokių URL'ų." + +msgid "Django Documentation" +msgstr "Django dokumentacija" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "Pamoka: Apklausos aplikacija" + +msgid "Get started with Django" +msgstr "Pradėti su Django" + +msgid "Django Community" +msgstr "Django Bendrija" + +msgid "Connect, get help, or contribute" +msgstr "Prisijunk, gauk pagalbą arba prisidėk" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lt/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/lt/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/lt/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..340d8a8eb713959f1c5368d84d2ef4828edb5b0e GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF9$wh6p`{#qPjBKph1P*@EL2K*bFs`Qra0sBZyi@lhwSCc(h?1F@iG^qLBcx2Sp(g1?TJ? zh7Ig16G5E_Ch8QPD69~D46>{!sNyMm^71SWhF#Pzy7Pq?UB5w@f~!(2%!erp|3@cb zg`S0nx55i53v*f#=4ZOjhsa7UhvTaBmArW-#g{t1PHo76&Q!8wZ>AfnWPy$~SI7m*0I{<-$jQ zyN<`pc)J>h@zM{2ahQ%*@heP E0IDzaApigX literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lt/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/lt/formats.py new file mode 100644 index 0000000..a351b3c --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/lt/formats.py @@ -0,0 +1,45 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = r"Y \m. E j \d." +TIME_FORMAT = "H:i" +DATETIME_FORMAT = r"Y \m. E j \d., H:i" +YEAR_MONTH_FORMAT = r"Y \m. F" +MONTH_DAY_FORMAT = r"E j \d." +SHORT_DATE_FORMAT = "Y-m-d" +SHORT_DATETIME_FORMAT = "Y-m-d H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%Y-%m-%d", # '2006-10-25' + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' +] +TIME_INPUT_FORMATS = [ + "%H:%M:%S", # '14:30:59' + "%H:%M:%S.%f", # '14:30:59.000200' + "%H:%M", # '14:30' + "%H.%M.%S", # '14.30.59' + "%H.%M.%S.%f", # '14.30.59.000200' + "%H.%M", # '14.30' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' + "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' + "%d.%m.%y %H:%M", # '25.10.06 14:30' + "%d.%m.%y %H.%M.%S", # '25.10.06 14.30.59' + "%d.%m.%y %H.%M.%S.%f", # '25.10.06 14.30.59.000200' + "%d.%m.%y %H.%M", # '25.10.06 14.30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..ddbf8c3baa9432cec87cf67fc899409def60aec0 GIT binary patch literal 29213 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, 2011 +# Edgars Voroboks , 2023-2024 +# Edgars Voroboks , 2017,2022 +# Edgars Voroboks , 2017-2018 +# Jannis Leidel , 2011 +# krikulis , 2014 +# Māris Nartišs , 2016 +# Mariusz Felisiak , 2021 +# Mārtiņš Šulcs , 2018 +# Edgars Voroboks , 2018-2021 +# peterisb , 2016-2017 +# Pēteris Caune, 2023 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Edgars Voroboks , 2023-2024\n" +"Language-Team: Latvian (http://app.transifex.com/django/django/language/" +"lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +msgid "Afrikaans" +msgstr "afrikāņu" + +msgid "Arabic" +msgstr "arābu" + +msgid "Algerian Arabic" +msgstr "Alžīrijas arābu" + +msgid "Asturian" +msgstr "asturiešu" + +msgid "Azerbaijani" +msgstr "azerbaidžāņu" + +msgid "Bulgarian" +msgstr "bulgāru" + +msgid "Belarusian" +msgstr "baltkrievu" + +msgid "Bengali" +msgstr "bengāļu" + +msgid "Breton" +msgstr "bretoņu" + +msgid "Bosnian" +msgstr "bosniešu" + +msgid "Catalan" +msgstr "katalāņu" + +msgid "Central Kurdish (Sorani)" +msgstr "centrālā kurdu (sorani)" + +msgid "Czech" +msgstr "čehu" + +msgid "Welsh" +msgstr "velsiešu" + +msgid "Danish" +msgstr "dāņu" + +msgid "German" +msgstr "vācu" + +msgid "Lower Sorbian" +msgstr "apakšsorbu" + +msgid "Greek" +msgstr "grieķu" + +msgid "English" +msgstr "angļu" + +msgid "Australian English" +msgstr "Austrālijas angļu" + +msgid "British English" +msgstr "Lielbritānijas angļu" + +msgid "Esperanto" +msgstr "esperanto" + +msgid "Spanish" +msgstr "spāņu" + +msgid "Argentinian Spanish" +msgstr "Argentīnas spāņu" + +msgid "Colombian Spanish" +msgstr "Kolumbijas spāņu" + +msgid "Mexican Spanish" +msgstr "Meksikas spāņu" + +msgid "Nicaraguan Spanish" +msgstr "Nikaragvas spāņu" + +msgid "Venezuelan Spanish" +msgstr "Venecuēlas spāņu" + +msgid "Estonian" +msgstr "igauņu" + +msgid "Basque" +msgstr "basku" + +msgid "Persian" +msgstr "persiešu" + +msgid "Finnish" +msgstr "somu" + +msgid "French" +msgstr "franču" + +msgid "Frisian" +msgstr "frīzu" + +msgid "Irish" +msgstr "īru" + +msgid "Scottish Gaelic" +msgstr "skotu gēlu" + +msgid "Galician" +msgstr "galīciešu" + +msgid "Hebrew" +msgstr "ebreju" + +msgid "Hindi" +msgstr "hindu" + +msgid "Croatian" +msgstr "horvātu" + +msgid "Upper Sorbian" +msgstr "augšsorbu" + +msgid "Hungarian" +msgstr "ungāru" + +msgid "Armenian" +msgstr "armēņu" + +msgid "Interlingua" +msgstr "modernā latīņu" + +msgid "Indonesian" +msgstr "indonēziešu" + +msgid "Igbo" +msgstr "igbo" + +msgid "Ido" +msgstr "ido" + +msgid "Icelandic" +msgstr "islandiešu" + +msgid "Italian" +msgstr "itāļu" + +msgid "Japanese" +msgstr "japāņu" + +msgid "Georgian" +msgstr "gruzīnu" + +msgid "Kabyle" +msgstr "kabiliešu" + +msgid "Kazakh" +msgstr "kazahu" + +msgid "Khmer" +msgstr "khmeru" + +msgid "Kannada" +msgstr "kannādiešu" + +msgid "Korean" +msgstr "korejiešu" + +msgid "Kyrgyz" +msgstr "kirgīzu" + +msgid "Luxembourgish" +msgstr "luksemburgiešu" + +msgid "Lithuanian" +msgstr "lietuviešu" + +msgid "Latvian" +msgstr "latviešu" + +msgid "Macedonian" +msgstr "maķedoniešu" + +msgid "Malayalam" +msgstr "malajalu" + +msgid "Mongolian" +msgstr "mongoļu" + +msgid "Marathi" +msgstr "maratiešu" + +msgid "Malay" +msgstr "malajiešu" + +msgid "Burmese" +msgstr "birmiešu" + +msgid "Norwegian Bokmål" +msgstr "norvēģu bokmål" + +msgid "Nepali" +msgstr "nepāliešu" + +msgid "Dutch" +msgstr "holandiešu" + +msgid "Norwegian Nynorsk" +msgstr "norvēģu nynorsk" + +msgid "Ossetic" +msgstr "osetiešu" + +msgid "Punjabi" +msgstr "pandžabu" + +msgid "Polish" +msgstr "poļu" + +msgid "Portuguese" +msgstr "portugāļu" + +msgid "Brazilian Portuguese" +msgstr "Brazīlijas portugāļu" + +msgid "Romanian" +msgstr "rumāņu" + +msgid "Russian" +msgstr "krievu" + +msgid "Slovak" +msgstr "slovāku" + +msgid "Slovenian" +msgstr "slovēņu" + +msgid "Albanian" +msgstr "albāņu" + +msgid "Serbian" +msgstr "serbu" + +msgid "Serbian Latin" +msgstr "serbu latīņu" + +msgid "Swedish" +msgstr "zviedru" + +msgid "Swahili" +msgstr "svahili" + +msgid "Tamil" +msgstr "tamilu" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "tadžiku" + +msgid "Thai" +msgstr "taizemiešu" + +msgid "Turkmen" +msgstr "turkmēņu" + +msgid "Turkish" +msgstr "turku" + +msgid "Tatar" +msgstr "tatāru" + +msgid "Udmurt" +msgstr "udmurtu" + +msgid "Uyghur" +msgstr "uiguru" + +msgid "Ukrainian" +msgstr "ukraiņu" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "Uzbeku" + +msgid "Vietnamese" +msgstr "vjetnamiešu" + +msgid "Simplified Chinese" +msgstr "vienkāršā ķīniešu" + +msgid "Traditional Chinese" +msgstr "tradicionālā ķīniešu" + +msgid "Messages" +msgstr "Ziņojumi" + +msgid "Site Maps" +msgstr "Lapas kartes" + +msgid "Static Files" +msgstr "Statiski faili" + +msgid "Syndication" +msgstr "Sindikācija" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Lapas numurs nav cipars" + +msgid "That page number is less than 1" +msgstr "Lapas numurs ir mazāks par 1" + +msgid "That page contains no results" +msgstr "Lapa nesatur rezultātu" + +msgid "Enter a valid value." +msgstr "Ievadiet korektu vērtību." + +msgid "Enter a valid domain name." +msgstr "Ievadiet derīgu domēna vārdu." + +msgid "Enter a valid URL." +msgstr "Ievadiet korektu URL adresi." + +msgid "Enter a valid integer." +msgstr "Ievadiet veselu skaitli." + +msgid "Enter a valid email address." +msgstr "Ievadiet korektu e-pasta adresi" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Ievadiet korektu \"identifikatora\" vērtību, kas satur tikai burtus, " +"ciparus, apakšsvītras vai defises." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Ievadiet korektu \"identifikatora\" vērtību, kas satur tikai Unikoda burtus, " +"ciparus, apakšsvītras vai defises." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Ievadiet derīgu %(protocol)s adresi." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 vai IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Ievadiet tikai numurus, atdalītus ar komatiem." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Nodrošiniet, ka vērtība ir %(limit_value)s (tā satur %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Šai vērtībai jabūt mazākai vai vienādai ar %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Vērtībai jābūt lielākai vai vienādai ar %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Vērtībai jābūt reizinājumam no %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Pārliecinieties, ka šī vērtība ir soļa lieluma %(limit_value)s reizinājums, " +"sākot no %(offset)s, piem. %(offset)s, %(valid_value1)s, %(valid_value2)s, " +"un tā tālāk." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Vērtībai jābūt vismaz %(limit_value)d zīmēm (tai ir %(show_value)d)." +msgstr[1] "" +"Vērtībai jābūt vismaz %(limit_value)d zīmei (tai ir %(show_value)d)." +msgstr[2] "" +"Vērtībai jābūt vismaz %(limit_value)d zīmēm (tai ir %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Vērtībai jābūt ne vairāk kā %(limit_value)d zīmēm (tai ir %(show_value)d)." +msgstr[1] "" +"Vērtībai jābūt ne vairāk kā %(limit_value)d zīmei (tai ir %(show_value)d)." +msgstr[2] "" +"Vērtībai jābūt ne vairāk kā %(limit_value)d zīmēm (tai ir %(show_value)d)." + +msgid "Enter a number." +msgstr "Ievadiet skaitli." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Pārliecinieties, ka kopā nav vairāk par %(max)s ciparu." +msgstr[1] "Pārliecinieties, ka kopā nav vairāk par %(max)s cipariem." +msgstr[2] "Pārliecinieties, ka kopā nav vairāk par %(max)s cipariem." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Pārliecinieties, ka aiz decimālās zīmes nav vairāk par %(max)s ciparu." +msgstr[1] "" +"Pārliecinieties, ka aiz decimālās zīmes nav vairāk par %(max)s cipariem." +msgstr[2] "" +"Pārliecinieties, ka aiz decimālās zīmes nav vairāk par %(max)s cipariem." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Pārliecinieties, ka pirms decimālās zīmes nav vairāk par %(max)s ciparu." +msgstr[1] "" +"Pārliecinieties, ka pirms decimālās zīmes nav vairāk par %(max)s cipariem." +msgstr[2] "" +"Pārliecinieties, ka pirms decimālās zīmes nav vairāk par %(max)s cipariem." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Faila paplašinājums “%(extension)s” nav atļauts. Atļautie paplašinājumi ir: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Nulles rakstzīmes nav atļautas." + +msgid "and" +msgstr "un" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s ar šādu lauka %(field_labels)s vērtību jau eksistē." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Ierobežojums “%(name)s” ir pārkāpts." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Vērtība %(value)r ir nederīga izvēle." + +msgid "This field cannot be null." +msgstr "Šis lauks nevar būt tukšs, null." + +msgid "This field cannot be blank." +msgstr "Šis lauks nevar būt tukšs" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s ar šādu lauka %(field_label)s vērtību jau eksistē." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "%(field_label)s jābūt unikālam %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Lauks ar tipu: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” vērtībai ir jābūt vai nu True, vai False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” vērtībai ir jābūt True, False vai None." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (vai nu True, vai False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Simbolu virkne (līdz pat %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Simbolu virkne (neierobežota)" + +msgid "Comma-separated integers" +msgstr "Ar komatu atdalīti veselie skaitļi" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” vērtība ir nepareizā formātā. Tai ir jābūt YYYY-MM-DD formātā." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” vērtība ir pareizā formātā (YYYY-MM-DD), bet tas nav derīgs " +"datums." + +msgid "Date (without time)" +msgstr "Datums (bez laika)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” vērtība ir nepareizā formātā. Tai ir jābūt YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] formātā." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” vērtība ir pareizā formātā (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]), " +"bet tas nav derīgs datums/laiks." + +msgid "Date (with time)" +msgstr "Datums (ar laiku)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” vērtībai ir jābūt decimālam skaitlim." + +msgid "Decimal number" +msgstr "Decimāls skaitlis" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” vērtība ir nepareizā formātā. Tai ir jābūt [DD] [[HH:]MM:]ss[." +"uuuuuu] formātā." + +msgid "Duration" +msgstr "Ilgums" + +msgid "Email address" +msgstr "E-pasta adrese" + +msgid "File path" +msgstr "Faila ceļš" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” vērtībai ir jābūt daļskaitlim." + +msgid "Floating point number" +msgstr "Peldošā komata skaitlis" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” vērtībai ir jābūt veselam skaitlim." + +msgid "Integer" +msgstr "Vesels skaitlis" + +msgid "Big (8 byte) integer" +msgstr "Liels (8 baitu) vesels skaitlis" + +msgid "Small integer" +msgstr "Mazs vesels skaitlis" + +msgid "IPv4 address" +msgstr "IPv4 adrese" + +msgid "IP address" +msgstr "IP adrese" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” vērtībai ir jābūt None, True vai False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (vai nu True, False, vai None)" + +msgid "Positive big integer" +msgstr "Liels pozitīvs vesels skaitlis" + +msgid "Positive integer" +msgstr "Naturāls skaitlis" + +msgid "Positive small integer" +msgstr "Mazs pozitīvs vesels skaitlis" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Identifikators (līdz %(max_length)s)" + +msgid "Text" +msgstr "Teksts" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” vērtība ir nepareizā formātā. Tai ir jābūt HH:MM[:ss[.uuuuuu]] " +"formātā." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” vērtība ir pareizā formātā (HH:MM[:ss[.uuuuuu]]), bet tas nav " +"derīgs laiks." + +msgid "Time" +msgstr "Laiks" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Bināri dati" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” nav derīgs UUID." + +msgid "Universally unique identifier" +msgstr "Universāli unikāls identifikators" + +msgid "File" +msgstr "Fails" + +msgid "Image" +msgstr "Attēls" + +msgid "A JSON object" +msgstr "JSON objekts" + +msgid "Value must be valid JSON." +msgstr "Vērtībai ir jābūt derīgam JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s instance ar %(field)s %(value)r neeksistē." + +msgid "Foreign Key (type determined by related field)" +msgstr "Ārējā atslēga (tipu nosaka lauks uz kuru attiecas)" + +msgid "One-to-one relationship" +msgstr "Attiecība viens pret vienu" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s attiecība" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s attiecības" + +msgid "Many-to-many relationship" +msgstr "Attiecība daudzi pret daudziem" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Šis lauks ir obligāts." + +msgid "Enter a whole number." +msgstr "Ievadiet veselu skaitli." + +msgid "Enter a valid date." +msgstr "Ievadiet korektu datumu." + +msgid "Enter a valid time." +msgstr "Ievadiet korektu laiku." + +msgid "Enter a valid date/time." +msgstr "Ievadiet korektu datumu/laiku." + +msgid "Enter a valid duration." +msgstr "Ievadiet korektu ilgumu." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Dienu skaitam jābūt no {min_days} līdz {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nav nosūtīts fails. Pārbaudiet formas kodējuma tipu." + +msgid "No file was submitted." +msgstr "Netika nosūtīts fails." + +msgid "The submitted file is empty." +msgstr "Jūsu nosūtītais fails ir tukšs." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Faila nosaukuma garumam jābūt ne vairāk kā %(max)d zīmēm (tas ir %(length)d)." +msgstr[1] "" +"Faila nosaukuma garumam jābūt ne vairāk kā %(max)d zīmei (tas ir %(length)d)." +msgstr[2] "" +"Faila nosaukuma garumam jābūt ne vairāk kā %(max)d zīmēm (tas ir %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Vai nu iesniedziet failu, vai atzīmējiet tukšo izvēles rūtiņu, bet ne abus." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Augšupielādējiet korektu attēlu. Fails, ko augšupielādējāt, vai nu nav " +"attēls, vai arī ir bojāts." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Izvēlieties korektu izvēli. %(value)s nav pieejamo izvēļu sarakstā." + +msgid "Enter a list of values." +msgstr "Ievadiet sarakstu ar vērtībām." + +msgid "Enter a complete value." +msgstr "Ievadiet pilnu vērtību." + +msgid "Enter a valid UUID." +msgstr "Ievadiet derīgu UUID." + +msgid "Enter a valid JSON." +msgstr "Ievadiet korektu JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Slēpts lauks %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm trūkst datu vai tie ir mainīti. Trūkstošie lauki: " +"%(field_names)s. Paziņojiet par kļūdu, ja problēma atkārtojas." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Lūdzu iesniedziet ne vairāk par %(num)d formām." +msgstr[1] "Lūdzu iesniedziet ne vairāk par %(num)d formu." +msgstr[2] "Lūdzu iesniedziet ne vairāk par %(num)d formām." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Lūdzu iesniedziet vismaz %(num)d formas." +msgstr[1] "Lūdzu iesniedziet vismaz %(num)d formu." +msgstr[2] "Lūdzu iesniedziet vismaz %(num)d formas." + +msgid "Order" +msgstr "Kārtība" + +msgid "Delete" +msgstr "Dzēst" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Lūdzu izlabojiet dublicētos datus priekš %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Lūdzu izlabojiet dublicētos datus laukam %(field)s, kam jābūt unikālam." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Lūdzu izlabojiet dublicētos datus laukam %(field_name)s, kam jābūt unikālam " +"priekš %(lookup)s iekš %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Lūdzu izlabojiet dublicētās vērtības zemāk." + +msgid "The inline value did not match the parent instance." +msgstr "Iekļautā vērtība nesakrita ar vecāka instanci." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Izvēlieties pareizu izvēli. Jūsu izvēle neietilpst pieejamo sarakstā." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” nav derīga vērtība." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s vērtība nevar tikt attēlota %(current_timezone)s laika zonā; tā " +"var būt neskaidra vai neeksistē." + +msgid "Clear" +msgstr "Notīrīt" + +msgid "Currently" +msgstr "Pašlaik" + +msgid "Change" +msgstr "Mainīt" + +msgid "Unknown" +msgstr "Nezināms" + +msgid "Yes" +msgstr "Jā" + +msgid "No" +msgstr "Nē" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "jā,nē,varbūt" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d baits" +msgstr[1] "%(size)d baiti" +msgstr[2] "%(size)d baitu" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "pusnakts" + +msgid "noon" +msgstr "dienasvidus" + +msgid "Monday" +msgstr "pirmdiena" + +msgid "Tuesday" +msgstr "otrdiena" + +msgid "Wednesday" +msgstr "trešdiena" + +msgid "Thursday" +msgstr "ceturtdiena" + +msgid "Friday" +msgstr "piektdiena" + +msgid "Saturday" +msgstr "sestdiena" + +msgid "Sunday" +msgstr "svētdiena" + +msgid "Mon" +msgstr "pr" + +msgid "Tue" +msgstr "ot" + +msgid "Wed" +msgstr "tr" + +msgid "Thu" +msgstr "ce" + +msgid "Fri" +msgstr "pk" + +msgid "Sat" +msgstr "se" + +msgid "Sun" +msgstr "sv" + +msgid "January" +msgstr "janvāris" + +msgid "February" +msgstr "februāris" + +msgid "March" +msgstr "marts" + +msgid "April" +msgstr "aprīlis" + +msgid "May" +msgstr "maijs" + +msgid "June" +msgstr "jūnijs" + +msgid "July" +msgstr "jūlijs" + +msgid "August" +msgstr "augusts" + +msgid "September" +msgstr "septembris" + +msgid "October" +msgstr "oktobris" + +msgid "November" +msgstr "novembris" + +msgid "December" +msgstr "decembris" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "jūn" + +msgid "jul" +msgstr "jūl" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "marts" + +msgctxt "abbrev. month" +msgid "April" +msgstr "aprīlis" + +msgctxt "abbrev. month" +msgid "May" +msgstr "maijs" + +msgctxt "abbrev. month" +msgid "June" +msgstr "jūnijs" + +msgctxt "abbrev. month" +msgid "July" +msgstr "jūlijs" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dec." + +msgctxt "alt. month" +msgid "January" +msgstr "janvāris" + +msgctxt "alt. month" +msgid "February" +msgstr "februāris" + +msgctxt "alt. month" +msgid "March" +msgstr "marts" + +msgctxt "alt. month" +msgid "April" +msgstr "aprīlis" + +msgctxt "alt. month" +msgid "May" +msgstr "maijs" + +msgctxt "alt. month" +msgid "June" +msgstr "jūnijs" + +msgctxt "alt. month" +msgid "July" +msgstr "jūlijs" + +msgctxt "alt. month" +msgid "August" +msgstr "augusts" + +msgctxt "alt. month" +msgid "September" +msgstr "septembris" + +msgctxt "alt. month" +msgid "October" +msgstr "oktobris" + +msgctxt "alt. month" +msgid "November" +msgstr "novembris" + +msgctxt "alt. month" +msgid "December" +msgstr "decembris" + +msgid "This is not a valid IPv6 address." +msgstr "Šī nav derīga IPv6 adrese." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "vai" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d gadi" +msgstr[1] "%(num)d gads" +msgstr[2] "%(num)d gadi" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mēneši" +msgstr[1] "%(num)d mēnesis" +msgstr[2] "%(num)d mēneši" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d nedēļas" +msgstr[1] "%(num)d nedēļa" +msgstr[2] "%(num)d nedēļas" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dienas" +msgstr[1] "%(num)d diena" +msgstr[2] "%(num)d dienas" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d stundas" +msgstr[1] "%(num)d stunda" +msgstr[2] "%(num)d stubdas" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minūtes" +msgstr[1] "%(num)d minūte" +msgstr[2] "%(num)d minūtes" + +msgid "Forbidden" +msgstr "Aizliegts" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF pārbaude neizdevās. Pieprasījums pārtrauks." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Jūs redzat šo paziņojumu, jo jūsu pārlūkprogrammai ir jānosūta “Referer " +"header” šai HTTPS vietnei, taču tā netika nosūtīta. Šī galvene ir " +"nepieciešama drošības apsvērumu dēļ, lai pārliecinātos, ka jūsu " +"pārlūkprogrammas komunikācijas datus nepārtver trešās puses." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ja esat konfigurējis savu pārlūkprogrammu, lai atspējotu “Referer” headerus, " +"lūdzu, atkārtoti iespējojiet tos vismaz šai vietnei, HTTPS savienojumiem vai " +"“same-origin” pieprasījumiem." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Ja jūs izmantojat tagu vai " +"iekļaujat “Referrer-Policy: no-referrer” headeri, lūdzu noņemiet tos. CSRF " +"aizsardzībai ir nepieciešams, lai “Referer” headerī tiktu veikta strikta " +"pārvirzītāja pārbaude. Ja jūs domājat par privātumu, tad izmantojiet tādas " +"alternatīvas kā priekš saitēm uz trešo pušu vietnēm." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Jūs redzat šo ziņojumu, jo, iesniedzot veidlapas, šai vietnei ir " +"nepieciešams CSRF sīkfails. Šis sīkfails ir vajadzīgs drošības apsvērumu " +"dēļ, lai pārliecinātos, ka trešās personas nepārņems kontroli pār jūsu " +"pārlūkprogrammu." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ja esat konfigurējis pārlūkprogrammu, lai atspējotu sīkdatnes, lūdzu, " +"atkārtoti iespējojiet tās vismaz šai vietnei vai “same-origin” " +"pieprasījumiem." + +msgid "More information is available with DEBUG=True." +msgstr "Vairāk informācijas ir pieejams ar DEBUG=True" + +msgid "No year specified" +msgstr "Nav norādīts gads" + +msgid "Date out of range" +msgstr "Datums ir ārpus diapazona" + +msgid "No month specified" +msgstr "Nav norādīts mēnesis" + +msgid "No day specified" +msgstr "Nav norādīta diena" + +msgid "No week specified" +msgstr "Nav norādīta nedēļa" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s nav pieejami" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Nākotne %(verbose_name_plural)s nav pieejama, jo %(class_name)s.allow_future " +"ir False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Nepareiza datuma rinda “%(datestr)s” norādītajā formātā “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Neviens %(verbose_name)s netika atrasts" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Lapa nav “pēdējā”, kā arī tā nevar tikt konvertēta par ciparu." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Nepareiza lapa (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tukšs saraksts un \"%(class_name)s.allow_empty\" ir False." + +msgid "Directory indexes are not allowed here." +msgstr "Direktoriju indeksi nav atļauti." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" neeksistē" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s saturs" + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalācija veiksmīga! Apsveicam!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Apskatīt laidiena piezīmes Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Jūs redziet šo lapu, jo DEBUG=True ir iestatījumu failā un Jūs neesiet " +"konfigurējis nevienu saiti." + +msgid "Django Documentation" +msgstr "Django Dokumentācija" + +msgid "Topics, references, & how-to’s" +msgstr "Tēmas, atsauces, & how-to" + +msgid "Tutorial: A Polling App" +msgstr "Apmācība: Balsošanas aplikācija" + +msgid "Get started with Django" +msgstr "Sāciet ar Django" + +msgid "Django Community" +msgstr "Django Komūna" + +msgid "Connect, get help, or contribute" +msgstr "Sazinieties, saņemiet palīdzību vai sniedziet ieguldījumu" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lv/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/lv/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/lv/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f9f017f757da0275f580b7e7c1dabafc1c1b8c6d GIT binary patch literal 193 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 DWi!LY literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po new file mode 100644 index 0000000..ecd62ce --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po @@ -0,0 +1,1273 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Bojan Drangovski , 2021 +# Claude Paroz , 2020 +# dekomote , 2015 +# Jannis Leidel , 2011 +# Vasil Vangelovski , 2016-2017 +# Vasil Vangelovski , 2013-2015 +# Vasil Vangelovski , 2011-2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-01-15 09:00+0100\n" +"PO-Revision-Date: 2021-05-12 22:47+0000\n" +"Last-Translator: Bojan Drangovski \n" +"Language-Team: Macedonian (http://www.transifex.com/django/django/language/" +"mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +msgid "Afrikaans" +msgstr "Африканс" + +msgid "Arabic" +msgstr "Арапски" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Астуриски" + +msgid "Azerbaijani" +msgstr "Азербејџански" + +msgid "Bulgarian" +msgstr "Бугарски" + +msgid "Belarusian" +msgstr "Белоруски" + +msgid "Bengali" +msgstr "Бенгалски" + +msgid "Breton" +msgstr "Бретонски" + +msgid "Bosnian" +msgstr "Босански" + +msgid "Catalan" +msgstr "Каталански" + +msgid "Czech" +msgstr "Чешки" + +msgid "Welsh" +msgstr "Велшки" + +msgid "Danish" +msgstr "Дански" + +msgid "German" +msgstr "Германски" + +msgid "Lower Sorbian" +msgstr "Долно Лужичко-Српски" + +msgid "Greek" +msgstr "Грчки" + +msgid "English" +msgstr "Англиски" + +msgid "Australian English" +msgstr "Австралиски англиски" + +msgid "British English" +msgstr "Британски англиски" + +msgid "Esperanto" +msgstr "Есперанто" + +msgid "Spanish" +msgstr "Шпански" + +msgid "Argentinian Spanish" +msgstr "Аргентински шпански" + +msgid "Colombian Spanish" +msgstr "Колумбиски Шпански" + +msgid "Mexican Spanish" +msgstr "Мексикански шпански" + +msgid "Nicaraguan Spanish" +msgstr "Никарагва шпански" + +msgid "Venezuelan Spanish" +msgstr "Венецуела шпански" + +msgid "Estonian" +msgstr "Естонски" + +msgid "Basque" +msgstr "Баскиски" + +msgid "Persian" +msgstr "Персиски" + +msgid "Finnish" +msgstr "Фински" + +msgid "French" +msgstr "Француски" + +msgid "Frisian" +msgstr "Фризиски" + +msgid "Irish" +msgstr "Ирски" + +msgid "Scottish Gaelic" +msgstr "Шкотски Галски" + +msgid "Galician" +msgstr "Галски" + +msgid "Hebrew" +msgstr "Еврејски" + +msgid "Hindi" +msgstr "Хинди" + +msgid "Croatian" +msgstr "Хрватски" + +msgid "Upper Sorbian" +msgstr "Горно Лужичко-Српски" + +msgid "Hungarian" +msgstr "Унгарски" + +msgid "Armenian" +msgstr "Ерменски" + +msgid "Interlingua" +msgstr "Интерлингва" + +msgid "Indonesian" +msgstr "Индонезиски" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Идо" + +msgid "Icelandic" +msgstr "Исландски" + +msgid "Italian" +msgstr "Италијански" + +msgid "Japanese" +msgstr "Јапонски" + +msgid "Georgian" +msgstr "Грузиски" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Казахстански" + +msgid "Khmer" +msgstr "Кмер" + +msgid "Kannada" +msgstr "Канада" + +msgid "Korean" +msgstr "Корејски" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Луксембуршки" + +msgid "Lithuanian" +msgstr "Литвански" + +msgid "Latvian" +msgstr "Латвиски" + +msgid "Macedonian" +msgstr "Македонски" + +msgid "Malayalam" +msgstr "Малајалам" + +msgid "Mongolian" +msgstr "Монголски" + +msgid "Marathi" +msgstr "Марати" + +msgid "Burmese" +msgstr "Бурмански" + +msgid "Norwegian Bokmål" +msgstr "Норвешки Бокмел" + +msgid "Nepali" +msgstr "Непалски" + +msgid "Dutch" +msgstr "Холандски" + +msgid "Norwegian Nynorsk" +msgstr "Нинорск норвешки" + +msgid "Ossetic" +msgstr "Осетски" + +msgid "Punjabi" +msgstr "Пунџаби" + +msgid "Polish" +msgstr "Полски" + +msgid "Portuguese" +msgstr "Португалкски" + +msgid "Brazilian Portuguese" +msgstr "Бразилско португалски" + +msgid "Romanian" +msgstr "Романски" + +msgid "Russian" +msgstr "Руски" + +msgid "Slovak" +msgstr "Словачки" + +msgid "Slovenian" +msgstr "Словенечки" + +msgid "Albanian" +msgstr "Албански" + +msgid "Serbian" +msgstr "Српски" + +msgid "Serbian Latin" +msgstr "Српски Латиница" + +msgid "Swedish" +msgstr "Шведски" + +msgid "Swahili" +msgstr "Свахили" + +msgid "Tamil" +msgstr "Тамил" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Тајландски" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Турски" + +msgid "Tatar" +msgstr "Татарски" + +msgid "Udmurt" +msgstr "Удмурт" + +msgid "Ukrainian" +msgstr "Украински" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Виетнамски" + +msgid "Simplified Chinese" +msgstr "Поедноставен кинески" + +msgid "Traditional Chinese" +msgstr "Традиционален кинески" + +msgid "Messages" +msgstr "Пораки" + +msgid "Site Maps" +msgstr "Сајт мапи" + +msgid "Static Files" +msgstr "Статички датотеки" + +msgid "Syndication" +msgstr "Синдикација" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "Тој број на страна не е цел број" + +msgid "That page number is less than 1" +msgstr "Тој број на страна е помал од 1" + +msgid "That page contains no results" +msgstr "Таа страна не содржи резултати" + +msgid "Enter a valid value." +msgstr "Внесете правилна вредност." + +msgid "Enter a valid URL." +msgstr "Внесете правилна веб адреса." + +msgid "Enter a valid integer." +msgstr "Внесете валиден цел број." + +msgid "Enter a valid email address." +msgstr "Внесете валидна email адреса." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Внесeте правилна IPv4 адреса." + +msgid "Enter a valid IPv6 address." +msgstr "Внесете валидна IPv6 адреса." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Внесете валидна IPv4 или IPv6 адреса." + +msgid "Enter only digits separated by commas." +msgstr "Внесете само цифри одделени со запирки." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Осигурајте се дека оваа вредност е %(limit_value)s (моментално е " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Осигурајте се дека оваа вредност е помала или еднаква со %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Осигурајте се дека оваа вредност е поголема или еднаква со %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Осигурајте се дека оваа вредност има најмалку %(limit_value)d карактер (има " +"%(show_value)d)." +msgstr[1] "" +"Осигурајте се дека оваа вредност има најмалку %(limit_value)d карактери (има " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Осигурајте се дека оваа вредност има најмногу %(limit_value)d карактер (има " +"%(show_value)d)." +msgstr[1] "" +"Осигурајте се дека оваа вредност има најмногу %(limit_value)d карактери (има " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Внесете број." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Осигурајте се дека вкупно нема повеќе од %(max)s цифра." +msgstr[1] "Осигурајте се дека вкупно нема повеќе од %(max)s цифри." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Осигурајте се дека нема повеќе од %(max)s децимално место." +msgstr[1] "Осигурајте се дека нема повеќе од %(max)s децимални места." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Осигурајте се дека нема повеќе одs %(max)s цифра пред децималната запирка." +msgstr[1] "" +"Осигурајте се дека нема повеќе од %(max)s цифри пред децималната запирка." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Null карактери не се дозволени." + +msgid "and" +msgstr "и" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s со ова %(field_labels)s веќе постојат." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Вредноста %(value)r не е валиден избор." + +msgid "This field cannot be null." +msgstr "Оваа вредност неможе да биде null." + +msgid "This field cannot be blank." +msgstr "Ова поле не може да биде празно" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s со %(field_label)s веќе постои." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s мора да биде уникатно за %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Поле од тип: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Вредноста '%(value)s' мора да биде точно или неточно." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Логичка (или точно или неточно)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Нишка од знаци (текст) (до %(max_length)s карактери)" + +msgid "Comma-separated integers" +msgstr "Целобројни вредности одделени со запирка" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Датум (без време)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Датум (со време)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Децимален број" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Траење" + +msgid "Email address" +msgstr "Адреса за е-пошта (email)" + +msgid "File path" +msgstr "Патека на датотека" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Децимален број подвижна запирка" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Цел број" + +msgid "Big (8 byte) integer" +msgstr "Голем (8 бајти) цел број" + +msgid "Small integer" +msgstr "Мал цел број" + +msgid "IPv4 address" +msgstr "IPv4 адреса" + +msgid "IP address" +msgstr "IP адреса" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Логичка вредност (точно,неточно или ништо)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Позитивен цел број" + +msgid "Positive small integer" +msgstr "Позитивен мал цел број" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Скратено име (до %(max_length)s знаци)" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Време" + +msgid "URL" +msgstr "URL (веб адреса)" + +msgid "Raw binary data" +msgstr "Сурови бинарни податоци" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Датотека" + +msgid "Image" +msgstr "Слика" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s инстанца со %(field)s %(value)r не постои." + +msgid "Foreign Key (type determined by related field)" +msgstr "Надворешен клуч (типот е одреден според поврзаното поле)" + +msgid "One-to-one relationship" +msgstr "Еден-према-еден релација" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s релација" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s релации" + +msgid "Many-to-many relationship" +msgstr "Повеќе-према-повеќе релација" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Ова поле е задолжително." + +msgid "Enter a whole number." +msgstr "Внесете цел број." + +msgid "Enter a valid date." +msgstr "Внесете правилен датум." + +msgid "Enter a valid time." +msgstr "Внесете правилно време." + +msgid "Enter a valid date/time." +msgstr "Внесете правилен датум со време." + +msgid "Enter a valid duration." +msgstr "Внесете валидно времетрање." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Не беше пратена датотека. Проверете го типот на енкодирање на формата." + +msgid "No file was submitted." +msgstr "Не беше пратена датотека." + +msgid "The submitted file is empty." +msgstr "Пратената датотека е празна." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Осигурајте се дека ова име на датотека има најмногу %(max)d карактер (има " +"%(length)d)." +msgstr[1] "" +"Осигурајте се дека ова име на датотека има најмногу %(max)d карактери (има " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Или прикачете датотека или штиклирајте го полето за чистење, не двете од " +"еднаш." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Качете валидна слика. Датотеката која ја качивте или не беше слика или беше " +"расипана датотеката." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Внесете валиден избор. %(value)s не е еден од можните избори." + +msgid "Enter a list of values." +msgstr "Внесете листа на вредности." + +msgid "Enter a complete value." +msgstr "Внесете целосна вредност." + +msgid "Enter a valid UUID." +msgstr "Внесете валиден UUID (единствен идентификатор)." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Скриено поле %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Редослед" + +msgid "Delete" +msgstr "Избриши" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ве молам поправете ја дуплираната вредност за %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Ве молам поправете ја дуплираната вредност за %(field)s, која мора да биде " +"уникатна." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Ве молам поправете ја дуплираната вредност за %(field_name)s која мора да " +"биде уникатна за %(lookup)s во %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Ве молам поправете ги дуплираните вредности подолу." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Изберете правилно. Тоа не е еден од можните избори." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Исчисти" + +msgid "Currently" +msgstr "Моментално" + +msgid "Change" +msgstr "Измени" + +msgid "Unknown" +msgstr "Непознато" + +msgid "Yes" +msgstr "Да" + +msgid "No" +msgstr "Не" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "да,не,можеби" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d бајт" +msgstr[1] "%(size)d бајти" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "попладне" + +msgid "a.m." +msgstr "наутро" + +msgid "PM" +msgstr "попладне" + +msgid "AM" +msgstr "наутро" + +msgid "midnight" +msgstr "полноќ" + +msgid "noon" +msgstr "пладне" + +msgid "Monday" +msgstr "Понеделник" + +msgid "Tuesday" +msgstr "Вторник" + +msgid "Wednesday" +msgstr "Среда" + +msgid "Thursday" +msgstr "Четврток" + +msgid "Friday" +msgstr "Петок" + +msgid "Saturday" +msgstr "Сабота" + +msgid "Sunday" +msgstr "Недела" + +msgid "Mon" +msgstr "Пон" + +msgid "Tue" +msgstr "Вто" + +msgid "Wed" +msgstr "Сре" + +msgid "Thu" +msgstr "Чет" + +msgid "Fri" +msgstr "Пет" + +msgid "Sat" +msgstr "Саб" + +msgid "Sun" +msgstr "Нед" + +msgid "January" +msgstr "Јануари" + +msgid "February" +msgstr "Февруари" + +msgid "March" +msgstr "Март" + +msgid "April" +msgstr "Април" + +msgid "May" +msgstr "Мај" + +msgid "June" +msgstr "Јуни" + +msgid "July" +msgstr "Јули" + +msgid "August" +msgstr "август" + +msgid "September" +msgstr "Септември" + +msgid "October" +msgstr "Октомври" + +msgid "November" +msgstr "Ноември" + +msgid "December" +msgstr "Декември" + +msgid "jan" +msgstr "јан" + +msgid "feb" +msgstr "фев" + +msgid "mar" +msgstr "мар" + +msgid "apr" +msgstr "апр" + +msgid "may" +msgstr "мај" + +msgid "jun" +msgstr "јун" + +msgid "jul" +msgstr "јул" + +msgid "aug" +msgstr "авг" + +msgid "sep" +msgstr "сеп" + +msgid "oct" +msgstr "окт" + +msgid "nov" +msgstr "ное" + +msgid "dec" +msgstr "дек" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Јан." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Фев." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Март" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Април" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Мај" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Јуни" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Јули" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Септ." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ное." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дек." + +msgctxt "alt. month" +msgid "January" +msgstr "Јануари" + +msgctxt "alt. month" +msgid "February" +msgstr "Февруари" + +msgctxt "alt. month" +msgid "March" +msgstr "Март" + +msgctxt "alt. month" +msgid "April" +msgstr "Април" + +msgctxt "alt. month" +msgid "May" +msgstr "Мај" + +msgctxt "alt. month" +msgid "June" +msgstr "Јуни" + +msgctxt "alt. month" +msgid "July" +msgstr "Јули" + +msgctxt "alt. month" +msgid "August" +msgstr "Август" + +msgctxt "alt. month" +msgid "September" +msgstr "Септември" + +msgctxt "alt. month" +msgid "October" +msgstr "Октомври" + +msgctxt "alt. month" +msgid "November" +msgstr "Ноември" + +msgctxt "alt. month" +msgid "December" +msgstr "Декември" + +msgid "This is not a valid IPv6 address." +msgstr "Ова не е валидна IPv6 адреса." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "или" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d година" +msgstr[1] "%d години" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d месец" +msgstr[1] "%d месеци" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d недела" +msgstr[1] "%d недели" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d ден" +msgstr[1] "%d дена" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d час" +msgstr[1] "%d часови" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d минута" +msgstr[1] "%d минути" + +msgid "Forbidden" +msgstr "Забрането" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF верификацијата не успеа. Барањето е прекинато." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Ја гледате оваа порака бидејќи овој сајт бара CSRF колаче (cookie) за да се " +"поднесуваат форми. Ова колаче е потребно од безбедносни причини, за да се " +"осигураме дека вашиот веб прелистувач не е грабнат и контролиран од трети " +"страни." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Повеќе информации се достапни со DEBUG = True." + +msgid "No year specified" +msgstr "Не е дадена година" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Не е даден месец" + +msgid "No day specified" +msgstr "Не е даден ден" + +msgid "No week specified" +msgstr "Не е дадена недела" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Нема достапни %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Идни %(verbose_name_plural)s не се достапни бидејќи %(class_name)s." +"allow_future е False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Нема %(verbose_name)s што се совпаѓа со пребарувањето" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Невалидна страна (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Индекси на директориуми не се дозволени тука." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Индекс на %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mk/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/mk/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/mk/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1c74bfbbfaf5f84802421d857512bcaf336c375 GIT binary patch literal 193 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 F{{sVJievx) literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po new file mode 100644 index 0000000..7e1945d --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po @@ -0,0 +1,1274 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# c1007a0b890405f1fbddfacebc4c6ef7, 2013 +# Claude Paroz , 2020 +# Hrishikesh , 2019-2020 +# Jannis Leidel , 2011 +# Jaseem KM , 2019 +# Jeffy , 2012 +# Jibin Mathew , 2019 +# Mariusz Felisiak , 2021 +# Rag sagar , 2016 +# Rajeesh Nair , 2011-2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-24 16:29+0000\n" +"Last-Translator: Mariusz Felisiak \n" +"Language-Team: Malayalam (http://www.transifex.com/django/django/language/" +"ml/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "ആഫ്രിക്കാന്‍സ്" + +msgid "Arabic" +msgstr "അറബിൿ" + +msgid "Algerian Arabic" +msgstr "അൾഗേരിയൻ അറബിൿ" + +msgid "Asturian" +msgstr "ആസ്ടൂറിയൻ" + +msgid "Azerbaijani" +msgstr "അസര്‍ബൈജാനി" + +msgid "Bulgarian" +msgstr "ബള്‍ഗേറിയന്‍" + +msgid "Belarusian" +msgstr "ബെലറൂഷ്യന്‍" + +msgid "Bengali" +msgstr "ബംഗാളി" + +msgid "Breton" +msgstr "ബ്രെട്ടണ്‍" + +msgid "Bosnian" +msgstr "ബോസ്നിയന്‍" + +msgid "Catalan" +msgstr "കാറ്റലന്‍" + +msgid "Czech" +msgstr "ചെൿ" + +msgid "Welsh" +msgstr "വെല്‍ഷ്" + +msgid "Danish" +msgstr "ഡാനിഷ്" + +msgid "German" +msgstr "ജര്‍മന്‍" + +msgid "Lower Sorbian" +msgstr "ലോവർ സോർബിയൻ " + +msgid "Greek" +msgstr "ഗ്രീക്ക്" + +msgid "English" +msgstr "ഇംഗ്ലീഷ്" + +msgid "Australian English" +msgstr "ആസ്ട്രേലിയൻ ഇംഗ്ലീഷ്" + +msgid "British English" +msgstr "ബ്രിട്ടീഷ് ഇംഗ്ലീഷ്" + +msgid "Esperanto" +msgstr "എസ്പെരാന്റോ" + +msgid "Spanish" +msgstr "സ്പാനിഷ്" + +msgid "Argentinian Spanish" +msgstr "അര്‍ജന്റീനിയന്‍ സ്പാനിഷ്" + +msgid "Colombian Spanish" +msgstr "കൊളംബിയൻ സ്പാനിഷ്" + +msgid "Mexican Spanish" +msgstr "മെക്സിക്കന്‍ സ്പാനിഷ്" + +msgid "Nicaraguan Spanish" +msgstr "നിക്കരാഗ്വന്‍ സ്പാനിഷ്" + +msgid "Venezuelan Spanish" +msgstr "വെനിസ്വലന്‍ സ്പാനിഷ്" + +msgid "Estonian" +msgstr "എസ്ടോണിയന്‍ സ്പാനിഷ്" + +msgid "Basque" +msgstr "ബാസ്ക്യു" + +msgid "Persian" +msgstr "പേര്‍ഷ്യന്‍" + +msgid "Finnish" +msgstr "ഫിന്നിഷ്" + +msgid "French" +msgstr "ഫ്രെഞ്ച്" + +msgid "Frisian" +msgstr "ഫ്രിസിയന്‍" + +msgid "Irish" +msgstr "ഐറിഷ്" + +msgid "Scottish Gaelic" +msgstr "സ്കോട്ടിഷ് ഗൈലിൿ" + +msgid "Galician" +msgstr "ഗലിഷ്യന്‍" + +msgid "Hebrew" +msgstr "ഹീബ്രു" + +msgid "Hindi" +msgstr "ഹിന്ദി" + +msgid "Croatian" +msgstr "ക്രൊയേഷ്യന്‍" + +msgid "Upper Sorbian" +msgstr "അപ്പർ സോർബിയൻ " + +msgid "Hungarian" +msgstr "ഹംഗേറിയന്‍" + +msgid "Armenian" +msgstr "അർമേനിയൻ" + +msgid "Interlingua" +msgstr "ഇന്റര്‍ലിംഗ്വാ" + +msgid "Indonesian" +msgstr "ഇന്തൊനേഷ്യന്‍" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "ഈടോ" + +msgid "Icelandic" +msgstr "ഐസ്ലാന്‍ഡിൿ" + +msgid "Italian" +msgstr "ഇറ്റാലിയന്‍" + +msgid "Japanese" +msgstr "ജാപ്പനീസ്" + +msgid "Georgian" +msgstr "ജോര്‍ജിയന്‍" + +msgid "Kabyle" +msgstr "കാബയെൽ " + +msgid "Kazakh" +msgstr "കസാഖ്" + +msgid "Khmer" +msgstr "ഖ്മേര്‍" + +msgid "Kannada" +msgstr "കന്നഡ" + +msgid "Korean" +msgstr "കൊറിയന്‍" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "ലക്സംബര്‍ഗിഷ് " + +msgid "Lithuanian" +msgstr "ലിത്വാനിയന്‍" + +msgid "Latvian" +msgstr "ലാറ്റ്വിയന്‍" + +msgid "Macedonian" +msgstr "മാസിഡോണിയന്‍" + +msgid "Malayalam" +msgstr "മലയാളം" + +msgid "Mongolian" +msgstr "മംഗോളിയന്‍" + +msgid "Marathi" +msgstr "മറാത്തി" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "ബര്‍മീസ്" + +msgid "Norwegian Bokmål" +msgstr "നോർവേജിയൻ ബുക്ക്മൊൾ" + +msgid "Nepali" +msgstr "നേപ്പാളി" + +msgid "Dutch" +msgstr "ഡച്ച്" + +msgid "Norwegian Nynorsk" +msgstr "നോര്‍വീജിയന്‍ നിനോഷ്ക്" + +msgid "Ossetic" +msgstr "ഒസ്സെറ്റിക്" + +msgid "Punjabi" +msgstr "പഞ്ചാബി" + +msgid "Polish" +msgstr "പോളിഷ്" + +msgid "Portuguese" +msgstr "പോര്‍ചുഗീസ്" + +msgid "Brazilian Portuguese" +msgstr "ബ്രസീലിയന്‍ പോര്‍ച്ചുഗീസ്" + +msgid "Romanian" +msgstr "റൊമാനിയന്‍" + +msgid "Russian" +msgstr "റഷ്യന്‍" + +msgid "Slovak" +msgstr "സ്ലൊവാൿ" + +msgid "Slovenian" +msgstr "സ്ളൊവേനിയന്‍" + +msgid "Albanian" +msgstr "അല്‍ബേനിയന്‍" + +msgid "Serbian" +msgstr "സെര്‍ബിയന്‍" + +msgid "Serbian Latin" +msgstr "സെര്‍ബിയന്‍ ലാറ്റിന്‍" + +msgid "Swedish" +msgstr "സ്വീഡിഷ്" + +msgid "Swahili" +msgstr "സ്വാഹിലി" + +msgid "Tamil" +msgstr "തമിഴ്" + +msgid "Telugu" +msgstr "തെലുങ്ക്" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "തായ്" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "ടര്‍ക്കിഷ്" + +msgid "Tatar" +msgstr "തൊതാര്‍" + +msgid "Udmurt" +msgstr "ഉദ്മര്‍ത്" + +msgid "Ukrainian" +msgstr "യുക്രേനിയന്‍" + +msgid "Urdu" +msgstr "ഉര്‍ദു" + +msgid "Uzbek" +msgstr "ഉസ്ബെൿ" + +msgid "Vietnamese" +msgstr "വിയറ്റ്നാമീസ്" + +msgid "Simplified Chinese" +msgstr "സിമ്പ്ലിഫൈഡ് ചൈനീസ്" + +msgid "Traditional Chinese" +msgstr "പരമ്പരാഗത ചൈനീസ്" + +msgid "Messages" +msgstr "സന്ദേശങ്ങൾ" + +msgid "Site Maps" +msgstr "സൈറ്റ് മാപ്പുകൾ" + +msgid "Static Files" +msgstr " സ്റ്റാറ്റിൿ ഫയലുകൾ" + +msgid "Syndication" +msgstr "വിതരണം " + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "ആ പേജ് നമ്പർ ഒരു ഇന്റിജറല്ല" + +msgid "That page number is less than 1" +msgstr "ആ പേജ് നമ്പർ 1 നെ കാൾ ചെറുതാണ് " + +msgid "That page contains no results" +msgstr "ആ പേജിൽ റിസൾട്ടുകൾ ഒന്നും ഇല്ല " + +msgid "Enter a valid value." +msgstr "ശരിയായ വാല്യു നൽകുക." + +msgid "Enter a valid URL." +msgstr "ശരിയായ URL നല്‍കുക" + +msgid "Enter a valid integer." +msgstr "ശരിയായ ഇന്റിജർ നൽകുക." + +msgid "Enter a valid email address." +msgstr "ശരിയായ ഇമെയില്‍ വിലാസം നല്‍കുക." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"അക്ഷരങ്ങള്‍, അക്കങ്ങള്‍, അണ്ടര്‍സ്കോര്‍, ഹൈഫന്‍ എന്നിവ മാത്രം അടങ്ങിയ ശരിയായ ഒരു 'സ്ലഗ്ഗ്' നൽകുക. " + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"യൂണികോഡ് അക്ഷരങ്ങൾ, അക്കങ്ങൾ, ഹൈഫണുകൾ, അണ്ടർസ്കോറുക‌‌ൾ എന്നിവമാത്രം അടങ്ങിയ ശെരിയായ ‌ഒരു " +"“സ്ലഗ്” എഴുതുക ." + +msgid "Enter a valid IPv4 address." +msgstr "ശരിയായ IPv4 വിലാസം നൽകുക." + +msgid "Enter a valid IPv6 address." +msgstr "ശരിയായ ഒരു IPv6 വിലാസം നൽകുക." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "ശരിയായ ഒരു IPv4 വിലാസമോ IPv6 വിലാസമോ നൽകുക." + +msgid "Enter only digits separated by commas." +msgstr "കോമകൾ ഉപയോഗിച്ച് വേർതിരിച്ച രീതിയിലുള്ള അക്കങ്ങൾ മാത്രം നൽകുക." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "ഇത് %(limit_value)s ആവണം. (ഇപ്പോള്‍ %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "ഇത് %(limit_value)s-ഓ അതില്‍ കുറവോ ആവണം" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "ഇത് %(limit_value)s-ഓ അതില്‍ കൂടുതലോ ആവണം" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"ഈ വാല്യൂയിൽ %(limit_value)d ക്യാരക്ടർ എങ്കിലും ഉണ്ടെന്നു ഉറപ്പു വരുത്തുക(ഇതിൽ " +"%(show_value)d ഉണ്ട് )" +msgstr[1] "" +"ഈ വാല്യൂയിൽ %(limit_value)dക്യാരക്ടേർസ് എങ്കിലും ഉണ്ടെന്നു ഉറപ്പു വരുത്തുക(ഇതിൽ " +"%(show_value)d ഉണ്ട് )" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"ഈ വാല്യൂയിൽ %(limit_value)d ക്യാരക്ടർ 1 ഇൽ കൂടുതൽ ഇല്ലെന്നു ഉറപ്പു വരുത്തുക(ഇതിൽ 2 " +"%(show_value)d ഉണ്ട് )" +msgstr[1] "" +"ഈ വാല്യൂയിൽ %(limit_value)d ക്യാരക്ടർസ് 1 ഇൽ കൂടുതൽ ഇല്ലെന്നു ഉറപ്പു വരുത്തുക(ഇതിൽ 2 " +"%(show_value)d ഉണ്ട് )" + +msgid "Enter a number." +msgstr "ഒരു സംഖ്യ നല്കുക." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "%(max)s ഡിജിറ്റിൽ കൂടുതൽ ഇല്ല എന്ന് ഉറപ്പു വരുത്തുക ." +msgstr[1] "%(max)sഡിജിറ്റ്സിൽ കൂടുതൽ ഇല്ല എന്ന് ഉറപ്പു വരുത്തുക. " + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "%(max)sകൂടുതൽ ഡെസിമൽ പോയന്റില്ല എന്ന് ഉറപ്പു വരുത്തുക. " +msgstr[1] "%(max)sകൂടുതൽ ഡെസിമൽ പോയിന്റുകളില്ല എന്ന് ഉറപ്പു വരുത്തുക. " + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "%(max)sഡിജിറ്റ് ഡെസിമൽ പോയിന്റിനു മുൻപ് ഇല്ല എന്ന് ഉറപ്പു വരുത്തുക." +msgstr[1] "%(max)sഡിജിറ്റ്സ് ഡെസിമൽ പോയിന്റിനു മുൻപ് ഇല്ല എന്ന് ഉറപ്പു വരുത്തുക. " + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"“%(extension)s” എന്ന ഫയൽ എക്സ്റ്റൻഷൻ അനുവദനീയമല്ല. അനുവദനീയമായ എക്സ്റ്റൻഷനുകൾ ഇവയാണ്: " +"%(allowed_extensions)s" + +msgid "Null characters are not allowed." +msgstr "Null ക്യാരക്ടറുകൾ അനുവദനീയമല്ല." + +msgid "and" +msgstr "പിന്നെ" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(field_labels)sഉള്ള %(model_name)sനിലവിലുണ്ട്." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r എന്ന വാല്യൂ ശെരിയായ ചോയ്സ് അല്ല. " + +msgid "This field cannot be null." +msgstr "ഈ കളം (ഫീല്‍ഡ്) ഒഴിച്ചിടരുത്." + +msgid "This field cannot be blank." +msgstr "ഈ കളം (ഫീല്‍ഡ്) ഒഴിച്ചിടരുത്." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(field_label)s-ഓടു കൂടിയ %(model_name)s നിലവിലുണ്ട്." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(date_field_label)s %(lookup_type)s-നു %(field_label)s ആവര്‍ത്തിക്കാന്‍ പാടില്ല." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "%(field_type)s എന്ന തരത്തിലുള്ള കളം (ഫീല്‍ഡ്)" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” മൂല്യം ഒന്നുകിൽ True, False എന്നിവയിലേതെങ്കിലുമേ ആവാൻ പാടുള്ളൂ." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" +"“%(value)s” മൂല്യം ഒന്നുകിൽ True, False അല്ലെങ്കിൽ None എന്നിവയിലേതെങ്കിലുമേ ആവാൻ " +"പാടുള്ളൂ." + +msgid "Boolean (Either True or False)" +msgstr "ശരിയോ തെറ്റോ (True അഥവാ False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "സ്ട്രിങ്ങ് (%(max_length)s വരെ നീളമുള്ളത്)" + +msgid "Comma-separated integers" +msgstr "കോമയിട്ട് വേര്‍തിരിച്ച സംഖ്യകള്‍" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "തീയതി (സമയം വേണ്ട)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "തീയതി (സമയത്തോടൊപ്പം)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "ദശാംശസംഖ്യ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "കാലയളവ്" + +msgid "Email address" +msgstr "ഇ-മെയില്‍ വിലാസം" + +msgid "File path" +msgstr "ഫയല്‍ സ്ഥാനം" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "ദശാംശസംഖ്യ" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "പൂര്‍ണ്ണസംഖ്യ" + +msgid "Big (8 byte) integer" +msgstr "8 ബൈറ്റ് പൂര്‍ണസംഖ്യ." + +msgid "Small integer" +msgstr "ഹ്രസ്വ പൂര്‍ണസംഖ്യ" + +msgid "IPv4 address" +msgstr "IPv4 വിലാസം" + +msgid "IP address" +msgstr "IP വിലാസം" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "ശരിയോ തെറ്റോ എന്നു മാത്രം (True, False, None എന്നിവയില്‍ ഏതെങ്കിലും ഒന്ന്)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "ധന പൂര്‍ണസംഖ്യ" + +msgid "Positive small integer" +msgstr "ധന ഹ്രസ്വ പൂര്‍ണസംഖ്യ" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "സ്ലഗ് (%(max_length)s വരെ)" + +msgid "Text" +msgstr "ടെക്സ്റ്റ്" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "സമയം" + +msgid "URL" +msgstr "URL(വെബ്-വിലാസം)" + +msgid "Raw binary data" +msgstr "റോ ബൈനറി ഡാറ്റ" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "എല്ലായിടത്തും യുണീക്കായ ഐഡന്റിഫൈയർ." + +msgid "File" +msgstr "ഫയല്‍" + +msgid "Image" +msgstr "ചിത്രം" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s%(value)r ഉള്ള%(model)s ഇൻസ്റ്റൻസ് നിലവിൽ ഇല്ല." + +msgid "Foreign Key (type determined by related field)" +msgstr "ഫോറിന്‍ കീ (ടൈപ്പ് ബന്ധപ്പെട്ട ഫീല്‍ഡില്‍ നിന്നും നിര്‍ണ്ണയിക്കുന്നതാണ്)" + +msgid "One-to-one relationship" +msgstr "വണ്‍-ടു-വണ്‍ ബന്ധം" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s റിലേഷൻഷിപ്‌." + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)sറിലേഷൻഷിപ്‌സ്. " + +msgid "Many-to-many relationship" +msgstr "മെനി-ടു-മെനി ബന്ധം" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "ഈ കള്ളി(ഫീല്‍ഡ്) നിര്‍ബന്ധമാണ്." + +msgid "Enter a whole number." +msgstr "ഒരു പൂര്‍ണസംഖ്യ നല്കുക." + +msgid "Enter a valid date." +msgstr "ശരിയായ തീയതി നല്കുക." + +msgid "Enter a valid time." +msgstr "ശരിയായ സമയം നല്കുക." + +msgid "Enter a valid date/time." +msgstr "ശരിയായ തീയതിയും സമയവും നല്കുക." + +msgid "Enter a valid duration." +msgstr "സാധുതയുള്ള കാലയളവ് നല്കുക." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "ദിവസങ്ങളുടെ എണ്ണം {min_days}, {max_days} എന്നിവയുടെ ഇടയിലായിരിക്കണം." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "ഫയലൊന്നും ലഭിച്ചിട്ടില്ല. ഫോമിലെ എന്‍-കോഡിംഗ് പരിശോധിക്കുക." + +msgid "No file was submitted." +msgstr "ഫയലൊന്നും ലഭിച്ചിട്ടില്ല." + +msgid "The submitted file is empty." +msgstr "ലഭിച്ച ഫയല്‍ ശൂന്യമാണ്." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"ഈ ഫയൽ നെയ്മിൽ%(max)dക്യാരക്ടറിൽ കൂടുതലില്ല എന്ന് ഉറപ്പു വരുത്തുക (അതിൽ %(length)dഉണ്ട്) . " +msgstr[1] "" +"ഈ ഫയൽ നെയ്മിൽ%(max)dക്യാരക്ടേഴ്‌സിൽ കൂടുതലില്ല എന്ന് ഉറപ്പു വരുത്തുക (അതിൽ %(length)dഉണ്ട്)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"ഒന്നുകില്‍ ഫയല്‍ സമര്‍പ്പിക്കണം, അല്ലെങ്കില്‍ ക്ളിയര്‍ എന്ന ചെക്ബോക്സ് ടിക് ചെയ്യണം. ദയവായി രണ്ടും " +"കൂടി ചെയ്യരുത്." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"ശരിയായ ചിത്രം അപ് ലോഡ് ചെയ്യുക. നിങ്ങള്‍ നല്കിയ ഫയല്‍ ഒന്നുകില്‍ ഒരു ചിത്രമല്ല, അല്ലെങ്കില്‍ " +"വികലമാണ്." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "യോഗ്യമായത് തെരഞ്ഞെടുക്കുക. %(value)s ലഭ്യമായവയില്‍ ഉള്‍പ്പെടുന്നില്ല." + +msgid "Enter a list of values." +msgstr "മൂല്യങ്ങളുടെ പട്ടിക(ലിസ്റ്റ്) നല്കുക." + +msgid "Enter a complete value." +msgstr "പൂർണ്ണമായ വാല്യൂ നല്കുക." + +msgid "Enter a valid UUID." +msgstr "സാധുവായ യു യു ഐ ഡി നല്കുക." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(ഹിഡൻ ഫീൽഡ് %(name)s)%(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "ക്രമം" + +msgid "Delete" +msgstr "ഡിലീറ്റ്" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s-നായി നല്കുന്ന വിവരം ആവര്‍ത്തിച്ചത് ദയവായി തിരുത്തുക." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "%(field)s-നായി നല്കുന്ന വിവരം ആവര്‍ത്തിക്കാന്‍ പാടില്ല. ദയവായി തിരുത്തുക." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(date_field)s ലെ %(lookup)s നു വേണ്ടി %(field_name)s നു നല്കുന്ന വിവരം ആവര്‍ത്തിക്കാന്‍ " +"പാടില്ല. ദയവായി തിരുത്തുക." + +msgid "Please correct the duplicate values below." +msgstr "താഴെ കൊടുത്തവയില്‍ ആവര്‍ത്തനം ഒഴിവാക്കുക." + +msgid "The inline value did not match the parent instance." +msgstr "ഇൻലൈൻ വാല്യൂ, പാരെന്റ് ഇൻസ്റ്റൻസുമായി ചേരുന്നില്ല." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "യോഗ്യമായത് തെരഞ്ഞെടുക്കുക. നിങ്ങള്‍ നല്കിയത് ലഭ്യമായവയില്‍ ഉള്‍പ്പെടുന്നില്ല." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "കാലിയാക്കുക" + +msgid "Currently" +msgstr "നിലവിലുള്ളത്" + +msgid "Change" +msgstr "മാറ്റുക" + +msgid "Unknown" +msgstr "അജ്ഞാതം" + +msgid "Yes" +msgstr "അതെ" + +msgid "No" +msgstr "അല്ല" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ഉണ്ട്,ഇല്ല,ഉണ്ടായേക്കാം" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d ബൈറ്റ്" +msgstr[1] "%(size)d ബൈറ്റുകള്‍" + +#, python-format +msgid "%s KB" +msgstr "%s കെ.ബി" + +#, python-format +msgid "%s MB" +msgstr "%s എം.ബി" + +#, python-format +msgid "%s GB" +msgstr "%s ജി.ബി" + +#, python-format +msgid "%s TB" +msgstr "%s ടി.ബി" + +#, python-format +msgid "%s PB" +msgstr "%s പി.ബി" + +msgid "p.m." +msgstr "പി. എം (ഉച്ചയ്ക്കു ശേഷം) " + +msgid "a.m." +msgstr "എ. എം (ഉച്ചയ്ക്കു മുമ്പ്)" + +msgid "PM" +msgstr "പി. എം (ഉച്ചയ്ക്കു ശേഷം) " + +msgid "AM" +msgstr "എ. എം (ഉച്ചയ്ക്കു മുമ്പ്)" + +msgid "midnight" +msgstr "അര്‍ധരാത്രി" + +msgid "noon" +msgstr "ഉച്ച" + +msgid "Monday" +msgstr "തിങ്കളാഴ്ച" + +msgid "Tuesday" +msgstr "ചൊവ്വാഴ്ച" + +msgid "Wednesday" +msgstr "ബുധനാഴ്ച" + +msgid "Thursday" +msgstr "വ്യാഴാഴ്ച" + +msgid "Friday" +msgstr "വെള്ളിയാഴ്ച" + +msgid "Saturday" +msgstr "ശനിയാഴ്ച" + +msgid "Sunday" +msgstr "ഞായറാഴ്ച" + +msgid "Mon" +msgstr "തിങ്കള്‍" + +msgid "Tue" +msgstr "ചൊവ്വ" + +msgid "Wed" +msgstr "ബുധന്‍" + +msgid "Thu" +msgstr "വ്യാഴം" + +msgid "Fri" +msgstr "വെള്ളി" + +msgid "Sat" +msgstr "ശനി" + +msgid "Sun" +msgstr "ഞായര്‍" + +msgid "January" +msgstr "ജനുവരി" + +msgid "February" +msgstr "ഫെബ്രുവരി" + +msgid "March" +msgstr "മാര്‍ച്ച്" + +msgid "April" +msgstr "ഏപ്രില്‍" + +msgid "May" +msgstr "മേയ്" + +msgid "June" +msgstr "ജൂണ്‍" + +msgid "July" +msgstr "ജൂലൈ" + +msgid "August" +msgstr "ആഗസ്ത്" + +msgid "September" +msgstr "സെപ്തംബര്‍" + +msgid "October" +msgstr "ഒക്ടോബര്‍" + +msgid "November" +msgstr "നവംബര്‍" + +msgid "December" +msgstr "ഡിസംബര്‍" + +msgid "jan" +msgstr "ജനു." + +msgid "feb" +msgstr "ഫെബ്രു." + +msgid "mar" +msgstr "മാര്‍ച്ച്" + +msgid "apr" +msgstr "ഏപ്രില്‍" + +msgid "may" +msgstr "മേയ്" + +msgid "jun" +msgstr "ജൂണ്‍" + +msgid "jul" +msgstr "ജൂലൈ" + +msgid "aug" +msgstr "ആഗസ്ത്" + +msgid "sep" +msgstr "സെപ്ടം." + +msgid "oct" +msgstr "ഒക്ടോ." + +msgid "nov" +msgstr "നവം." + +msgid "dec" +msgstr "ഡിസം." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "ജനു." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ഫെബ്രു." + +msgctxt "abbrev. month" +msgid "March" +msgstr "മാര്‍ച്ച്" + +msgctxt "abbrev. month" +msgid "April" +msgstr "ഏപ്രില്‍" + +msgctxt "abbrev. month" +msgid "May" +msgstr "മേയ്" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ജൂണ്‍" + +msgctxt "abbrev. month" +msgid "July" +msgstr "ജൂലൈ" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ആഗ." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "സെപ്തം." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "ഒക്ടോ." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "നവം." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ഡിസം." + +msgctxt "alt. month" +msgid "January" +msgstr "ജനുവരി" + +msgctxt "alt. month" +msgid "February" +msgstr "ഫെബ്രുവരി" + +msgctxt "alt. month" +msgid "March" +msgstr "മാര്‍ച്ച്" + +msgctxt "alt. month" +msgid "April" +msgstr "ഏപ്രില്‍" + +msgctxt "alt. month" +msgid "May" +msgstr "മേയ്" + +msgctxt "alt. month" +msgid "June" +msgstr "ജൂണ്‍" + +msgctxt "alt. month" +msgid "July" +msgstr "ജൂലൈ" + +msgctxt "alt. month" +msgid "August" +msgstr "ആഗസ്ത്" + +msgctxt "alt. month" +msgid "September" +msgstr "സെപ്തംബര്‍" + +msgctxt "alt. month" +msgid "October" +msgstr "ഒക്ടോബര്‍" + +msgctxt "alt. month" +msgid "November" +msgstr "നവംബര്‍" + +msgctxt "alt. month" +msgid "December" +msgstr "ഡിസംബര്‍" + +msgid "This is not a valid IPv6 address." +msgstr "ഇതു സാധുവായ IPv6 വിലാസമല്ല." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "അഥവാ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "വിലക്കപ്പെട്ടത്" + +msgid "CSRF verification failed. Request aborted." +msgstr "സി എസ് ആർ എഫ് പരിശോധന പരാജയപ്പെട്ടു. റിക്വെസ്റ്റ് റദ്ദാക്കി." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"ഫോം സമർപ്പിക്കുമ്പോൾ ഒരു CSRF കുക്കി ഈ സൈറ്റിൽ ആവശ്യമാണ് എന്നതിനാലാണ് നിങ്ങൾ ഈ സന്ദേശം " +"കാണുന്നത്. മറ്റുള്ളവരാരെങ്കിലും നിങ്ങളുടെ ബ്രൗസറിനെ നിയന്ത്രിക്കുന്നില്ല എന്ന് ഉറപ്പുവരുത്താനായി ഈ " +"കുക്കി ആവശ്യമാണ്. " + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Debug=True എന്നു കൊടുത്താൽ കൂടുതൽ കാര്യങ്ങൾ അറിയാൻ കഴിയും." + +msgid "No year specified" +msgstr "വര്‍ഷം പരാമര്‍ശിച്ചിട്ടില്ല" + +msgid "Date out of range" +msgstr "ഡാറ്റ പരിധിയുടെ പുറത്താണ്" + +msgid "No month specified" +msgstr "മാസം പരാമര്‍ശിച്ചിട്ടില്ല" + +msgid "No day specified" +msgstr "ദിവസം പരാമര്‍ശിച്ചിട്ടില്ല" + +msgid "No week specified" +msgstr "ആഴ്ച പരാമര്‍ശിച്ചിട്ടില്ല" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s ഒന്നും ലഭ്യമല്ല" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(class_name)s.allow_future ന് False എന്നു നല്കിയിട്ടുള്ളതിനാല്‍ Future " +"%(verbose_name_plural)s ഒന്നും ലഭ്യമല്ല." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "ചോദ്യത്തിനു ചേരുന്ന് %(verbose_name)s ഇല്ല" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "ഡയറക്ടറി സൂചികകള്‍ ഇവിടെ അനുവദനീയമല്ല." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s യുടെ സൂചിക" + +msgid "The install worked successfully! Congratulations!" +msgstr "ഇൻസ്ടാൾ ഭംഗിയായി നടന്നു! അഭിനന്ദനങ്ങൾ !" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "ജാംഗോ ഡോക്യുമെന്റേഷൻ" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "പരിശീലനം: ഒരു പോളിങ്ങ് ആപ്പ്" + +msgid "Get started with Django" +msgstr "ജാംഗോയുമായി പരിചയത്തിലാവുക" + +msgid "Django Community" +msgstr "ജാംഗോ കമ്യൂണിറ്റി" + +msgid "Connect, get help, or contribute" +msgstr "കൂട്ടുകൂടൂ, സഹായം തേടൂ, അല്ലെങ്കിൽ സഹകരിക്കൂ" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ml/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ml/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ml/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f32b94a4a7524975918138826124cbcea77c29f0 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF8RAQznbDlfcjiAcBTdS(T>_8aPtN>niy;1$Np&=Ea)nn`8bm+>0SHh7 zHV_F(L_rEQVH34r3$^rCnyNH1dI)NvMwTS*{(bBlZfOEINC_1}v zz!?QO;oQl6$3?W)56(N0*SN8#qZ@C{Xkd%6XqXE1mq@w>D>3mHkYWq+cZs%S&T zR@7s1R#vK@=gOk#tGZ@S4}$YuCW-EW^sK3F+J3d`$2U}KH&INh-0AxI#Q!17-{Hlp zOwkO--uJWMr{gv1yeG-miYngvmTZWoXzM1tu&26XiJDYlXPTpalTH7|)Ez_7ZvGN0 z{LOaeIlLZwP8O{)?^hJ(sVAl3I*FEf=FOul4^n>>tm9gId-v1J?(%5(5QO&u-sPc1 zu$-qtm@a2RoQ6Rh2}vx>(p3`V+2~=jrN1O8TF22Pz~^S4v7smmR43h}S&E?m4PF4+ CoXI`_ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ml/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ml/formats.py new file mode 100644 index 0000000..b1ca2ee --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ml/formats.py @@ -0,0 +1,43 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "N j, Y" +TIME_FORMAT = "P" +DATETIME_FORMAT = "N j, Y, P" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "F j" +SHORT_DATE_FORMAT = "m/d/Y" +SHORT_DATETIME_FORMAT = "m/d/Y P" +FIRST_DAY_OF_WEEK = 0 # Sunday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# Kept ISO formats as they are in first position +DATE_INPUT_FORMATS = [ + "%Y-%m-%d", # '2006-10-25' + "%m/%d/%Y", # '10/25/2006' + "%m/%d/%y", # '10/25/06' + # "%b %d %Y", # 'Oct 25 2006' + # "%b %d, %Y", # 'Oct 25, 2006' + # "%d %b %Y", # '25 Oct 2006' + # "%d %b, %Y", # '25 Oct, 2006' + # "%B %d %Y", # 'October 25 2006' + # "%B %d, %Y", # 'October 25, 2006' + # "%d %B %Y", # '25 October 2006' + # "%d %B, %Y", # '25 October, 2006' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%m/%d/%Y %H:%M:%S", # '10/25/2006 14:30:59' + "%m/%d/%Y %H:%M:%S.%f", # '10/25/2006 14:30:59.000200' + "%m/%d/%Y %H:%M", # '10/25/2006 14:30' + "%m/%d/%y %H:%M:%S", # '10/25/06 14:30:59' + "%m/%d/%y %H:%M:%S.%f", # '10/25/06 14:30:59.000200' + "%m/%d/%y %H:%M", # '10/25/06 14:30' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..c35a525c44e3157b5540837dbd84eba58d01520c GIT binary patch literal 33282 zcmd6v34mNxmG>VQ7TJV|3xe2C6a03Y0!BgM}@EP!6aGSsXPvGmxe-+#x{0{gA@W-IW`wh4+_y_Qf z;9o)2J1lhgHcYzl%S!6QM22+r{NOF_+dDX4Y*pwHjuaRVrRe*sj#KLRDE ze+1tQ9^UNQp9pIH=Yp4j3&6SHQBj1ndCc z2de%L!TrFWf$Hx!zI@*kSrhVyf?Ahz!PkM)eSQ|Gb{B!~1}_0M?k11hLACn=sQG;r z)VjUs%U|;O-+`jzW$*xS@3BE}5O^@C^0$E+_Z{GS_X>h0@CNeNw*Nbqju;mN3>nM-)vgGt-c=q~f|}2bp!&bv<6WTUwH8$U zhkX9ip!(V9^IJTA22{N-f}-c^pyc*@9)IS`{{X7}UMIPE?+4ya{xI+e@L^E>JO`@Y z7eVpmtDxu{1m6ID&zJuK6rH~U#mD~ynR@VwFK-?1pF)8i~qbiD@*!3Y%n*MX9UTR_d@5nujkP;_hp+rVdh z`R~B#UkQqy_k#z4*Mn+*2dI7ganRNQ6kU6r;riPLRJ(&b9u7+0j{?Q# zCXcNiPX$Fs8z}jnOL{>fqBLA`tu-l%5=Urqf$Qga9jI|7WNNn$DE=G-9uJNLj{wgC#rOH33wR}{akU5< zZv?3Jhkz*1KjiTv9`E*epT~8e6F^yc$|U>-ODycoO%jKCMc%fQ)_96kzONq#?+$O3Qx90z_4lsxAWiZ++2>t?onS94IbRF0_-PvhRfuif1;Q8R6z(wFB zG9BOpp!UfKl$YjnJUAMh>ho8Ch*YrJ=RXG?NB#v+^0)6yFUKB7dVH(LqrqnCy#w4E zoC88`a1kiJ&j+>6@ACJ1LCJj9{@^D-(eWgx`riVzE^ zneTGz*A0#$e>154upYb#{1$iv*l~$FU;Z7`{Ez0(NN@lYUvB~r1V0L%0zM3CJ-!RB z1z!NArZk#qybe#{X-aJtAd#}%Tdn|yW>;0hW-{kR5 zkLy5<`xvNtJAC<a3c5%a4gu=?d>!0Sn^kb8uxZ^0{AhX{{eUu`JaQ5*L{23yp90(Cf@`u z0Z#xR8rKEmmfTHWYpyWFO4*{2g zqWe0ZzZKMc?(_Jl$4#KIYz%#*r1F2Bg-viD7KM88xe-G+h9)G3N zFKa;Qzt4l`g0Fx&U(U@t|M417^nMZ){ZIP*7r{32Ujrq-uSXfHUNb0uodjw=Gr%{1 z7l9{&De!gR&7kJ7#^Zh92=bo--wdt?KMsBo)VR5#>u(h(zTD#Rqu@C54}s$MH$koQ zE1>vtY{|*pNucO^0Tg{d2i4DB2(9Qm2%NkZV}VD4?^+5U!QwJU*OLQ|-lsi&7Ce}C zWuO0{$Co_5>~Wu~T)UATj{((gtj9KAKEvZeQ1o9u)t7=~!WCXc6rhtd8#Q1h7ws=v!U z_JNwmRiMVb7Sy<_!BOBH;OXEq;055Xz>~oV|G=3BX2Bc55m$2-g13Tez~*Z>v%#(W zxdUu_KVyJj2d9FwmOK0NR#5rxfOEm4RyaM`2hJkD5tJPM4crU7fIn;zhe!r1h`|A{w3ge(&tskPjY`0`EB6ED&V&d zX*6Z0lU8%x4j!)?{Ini#C;dhlew#_n+($(Oe^UX!6G&gMD|C%V!5c|$CVf&Fet&gf zf5*_rH@NzaFO&QpK$*_D-;#bu(iy6s)==xjaU1-EbS+80+ek-~-mMJ3Cek#L_UvB1 zt;*xy|Kj4`;|w^GI;cXEou|Q{ktB!rlg{_;B{#n$%_6@Z)NdNsz2Fm;bGqqpUtdK> zkVcU|9F&|*;d&jomUJ5F52QOuJ4knv^qWte%19wr@1{)^y!q~DWnA-$8N{jcBm zNdHK>jPx$*>i0nhLD{2VB5AVEALHvC;&C43r;y%8>LK-!-od>$`ulGN&!+6VB>l#c zU*Rt8@BiU%iS#yK|Giw#wmZ(gz0_at@9#fP{?DY#effc4#$TV|>s&{^nRGfyXNG=D z9Rw46orrvv^bDzs^evKpzj9!I|HR*iNGJNTnZE6p$j|g;KLrO#r*QA1;2hHHN!OF~ z`-KCuRdxBlN%xT6P5rNc7lJdun@IXe2gbi~+|wEIRto;X7d{J4CtXarejg#B^6Z!A z?|!87Nso{YBJEGo?)3qp*>WDIo+E*&rc%^Lm%2E_Arjes+QEk1^O_^M-x75F=IMC0C)=@s!*IZ~B z-BircQ9jC~is@Xo(39@hD8t??aJMhlWuvFFg<>k(8HG#J#U2K>G3jh{(~?xC6gB6= zu3S_IYv{MOi?S(WnzbwTq}8OB;8Z3brMd>(yp7)7X;@(Jp)IqezUHp5D>VS=m21tz zWqNX@d`+f$t1q1`6{E^cmrdNxWs5!4yUJB>E{&qz$~|SOw+5nAbwp)!tB}4bg3OKq z8!(aMW+6O(vi{DtzwP#SuKiswIcS=Z?&^xNp)oLIR>s?AuA+QCm&Yv`8)9g+o!feB zFe#ih|H3(8uH%ZRvlvWj4<;?nr+ZVWY$2GG=}2YMsVo=WQJ#x%Qa;s@?hGdN=hK-W z&g8oh-n1%)^ZRK~=;2mhcPIre*XBsb>Z7)GlFgcgYM0C|O4QY$=;etF8kHAk)WeQPq z!`oxsP1TyCtwyDSQ93!Fx+-mi&CTVDP#YB>g#DU>haD*E}2?Bn3BunPyh+uPRaH4rCJJ6e=3izkuoVpFrz@#Y?d_~8+J#brLqbahai0d^3(N0~#o~qKYeTl%l5~#!ZUp9YOhFVny_6XUrd$9gREh zaF0l2WmvKV_grf$PRy^+kY&_LVH9PG>HZ9d!{V?|jQT?zruChUMY%Yuqqt@=$ngTOu(p_$~#;ZzA$;m2_aw+7(T((xq+*0m7UBk5Q#vGDVqlB_j z^qey&)ncxGTEjHYpb2-Yt;R@kjP$`j^t@58K3%zKQMhWwrlefCQ|{Gz+)sCfGv_Wj zHCDq7?=cVRoW7Gf!`_n_Q{U&pc^3>RS~zoReVL5*MrGqlo}9$9Y}Il)7~qaiAACx+JFXePK4;iR~S-HZUHcbByPr#4(yLbaDcafv-IS z{XJ1Ou|&J*d8a)#>~Luh=9niSo@p+d83?;{92LT<&C)R-f$B?%nnHhsfl$nGg{>vK zV|vt)FQxJW!E|{xnx%Y{HU!&w1kPjOZYHunxCBLJ#&Pe?@=CV3;E!+l8{Uj)4JUbf zqEgLF4R!CUEUMm-W2AAy{uFlo^mNwD+vyouNGw3Vj?>tXnV!pcnB5(46{Wkg;p}K2 zY!bDczpM_<0%ivwty^I3`t)3PI1h|EA))Sp2F zP(di=1>kbW){1i&^q3fIiC&LDQ=%1Od+<40d$vqy-?8KC(YG*LBD;LaM91i44W-DRc z!#|lOXZJ3n0Sm_x^mYhz%+^%A-v&NTneo z36=F9<*Qvu(RSrvR6gBVq&jq?Cp&wh&R)oB4c%06{#ibDY-g0$+T#RZ65~BBNp%je zMIj}XK{B$4(-KC@q*4OP(6El zQcR687ZWzfGbk+2haLIc(t=J4$W9kbUOMsr(^3uJ!F$8nT zHIC^Ll}IJAXf3%syPGh_T4Nfn&Yn}!h{3O#t{Dp!%$=|K%NbJqV)rQS?m#~KQaCCz z<$p-)5I2dP5?p4AaTsk|&U7vpMXVhw(p^e%?ewY65)%u=n|Zm|3u5AQQ8&wsU!G&9 zc_++W+uceZ{g4qhjcyVyatgh<&@2swvss`})8YO?t!a<3sS`;>g)o%=@P!4 zF7dqbA)cvR(BOj7GF&*ssas>Wf~K_1U%Fu1 zUZ)Xuct->;im5&h0IzFW!**ZARAZs4^Q9k%<+O&Epg@dxF!LFqvq5<@+(-N74rh%4Xt_2S)-LR_^aifq-CSWSB-;rA;wiB|*6?-aO#BJkqC=Sm$ne!y= ztWuTmYAx@VqE!j44%5?+I_ikMj?zm62j}KE57Fl#@p(ywqHx^zg+mGoeVCWkdZp|Y z#8QKKsim~fV(pr^1oLv}CrQ@461ozcpDHR5Bt+-T@5~h~5_x_qLdb&oQAT2ylKX{w z)!CCv6J(MGv1mI>>7-kGL1r`?wxSq(ZKgI%FAEgia$W9jKmA3wSLb7{8u1Q8PL?!N zN#jGB4nnJ73v*1($D#<^Q~iZtekQjh)ob8F$Mf-b!lqKcww=Xt7Wt@6p*fge!^=48 zJYT`T&QSI`{b8AL1UHqk7CDHzXcZSV?$h06G=jdRe3q@M<0)UtDxxc66}Mmn4@X={ z)U`+jI=CMR=9icqN?J>_G}S{K8H^Ox4dxHX{535UEJ$6E?&WVE(enkIiTPkb#4Jm| zvSI+g)B1yfD8+={DW-Uy!oGl_0uhWt;;yp_v@TUgetg6G<|LTfG67wnqY<7U5hf&< zgI%`u?0hj1!Kmcqrj~n_(@M8$LkWGRQ4B7B~xI>F{=V}X-ypM3H%ewL0j+NRq&A~)19;=&Nn?9A2Hl@K9 z#LMU%=3W*WYi`lr+xLXytvgDLO@1HMh9DO7us}Vfd_l{*fQUe_AlIMnM43CYALE|u zNk(dasRz+s~m?U_l0O^zBJsnkPO*?XEm`d$YNv)au7k#q03X zBI@3acF<}XPvwhoSWyKo%Np=HJC+z#m$#+pPd;B_bMv&p`k-eFtBPH?FyB=Q77ld7 zq+sDy9k_`XOaD~#5Dr@{gT12i)#68%PKmiV&c#tSx~e4SvGP#q;&fCrGcXFcTq-}Q zhZUGOs;5}&FSLyt*Olumw07C^0bDsf&uS&gFfPiDGm}aIg66_FYy$a!g>j>>J$ZJ8 zkGaUiXB6vcZdb0K!Skce@iiqHQQ_=yDd&Ot2M~!agLh(8kJkZe^w z#VACPGu&W`O zgOJXWR%gMFaL;z@%1Yh!)p&?kUqslhz6iH;NRb@V+V0Iwtu1n{SbbT2Lwtk!?r{R@ zi{?lDD$B4F%t?u-m?&@$rxR5w4=WR8m9S)@EcUyTMK-}|=Wce@yq{XKfO%E36^AEL z7P~fyBF)MfTP$^u>dyzMQg^`9#$a*O5ugNvD@qwsHt567z+(>j(p}kfcTX|M=I~;( zxg|l4C;qv7&@U+7|TtS$liiWr<1b#vJ4t z#9pl9P1w|c)@D0jaEw`U^M&04x#t+euVtg&cg>Vx29q@SCo`{h#GUj!oczQxm#REV zclPbB>o3;Rf?ZatSm?W|>5VkKy)w4;jhEeQS@V|69<=eV&R95AqpRs7!CYr)wan~l zxmZDwT(&KAHrN64EFRa=Ug%DDwM;H`7g`qN+QI|oUf41(TEYX4T()H@YuOf_eA4(+ zT24B(<>b@ClTL3t^{f+5;&;FW#A8~pqO%3uid?=e#8T#+kKUeea;n(dQyNHhkEQ9! zr%+QN*zTxhL6qui3oDViut}yNmSL*Dzm+#%ct*51T4qL}BXOJu%uMTGTwiuv^8xKM z+ox40Grskt1MqKn!UQ$;97=xQINs+-XD8qv^R5;);FzfkC z1L_X0C~u&}R^J5;YI=M+9&LMhM=NtN@2&F2qV=*>gAXnrTp2RTdU{)>tgh=igY>~w zjJTZfHV&@j?-qC=ov`y497E=?9Kx?<(#+7vsClJPv*e!GvSVu6Iv71ksU zx#a7aL+HZ48|m0vH=PPC$(J}=D)UOd;@D#Ax-o=3TM+m-@@sJ# z^siSUlRRf}5R_HwiD@K9Y&4V`Xa!u7ge8Y?A+>KjTHYjKgEzwzI3cavugfB0n-M)E ztWu*vk>;2fqb>_uoNVuaOQMvtvD)3v?>^1=TdS4htbhH|FQSMWQnK@RGRtcvG=taG z@IHPCukpK?_GTuuKRI|~`Kj`=Y!1DkS-x%X18j}WTxK%bP9BZr(h&JfzZc z7U#*})E07{Kb1ne*hrt-5d_#xGL3N;6`zyzSZDOGO?5Ql3Pkc+jT)R;(;+)mw=~w) z@@9sm?M7XSm}kmQaYsV(v^ovSYgn}vqI(VfZq*Xf=?a%sJ30x<>zMI2z3dtDy4g#p zX&4A*gYw#@fA#bE$EBzcM)t$CEd18N4@xrK9yo9G5rhfZN|adUOyw|s z9ouq4SialVa8uY+en2$qUU@U~yVLqW)duB9U?#epn|4m9C&+_zF{tI%L1 zieib&3S$WKswJ<%a+V)9CP?`*3us%#g19c!BWIMBbOXbn{u2wOHQ#_Tw1wWLL!m|$ zs=o6F6gYBj2y${O>$j2qV#?qnQiGg4Bh58<{oo4NwH+=(6~t@Ul|lJFQ!66S*btOI zj(EedI~*HTVI%xRI>RQX)NBQ|z~3Qv-1*3zhn>_|eO6=egObSveahYpc`S&XO* zj6b<%FWQ1`u(_xj3n1B8jtb-;aH68EQ+`leRtymJ59wySYqU)_nha_GIHqWGVM2&E zuzK}39u<%D*Uh2wMs9hHYzvy-jQGM7+wzREL)%E4-dx_suunsl&R`oLc>Zy2sL599 zJHvzt+eUIM3Cg#dWSAV6HwERp=!G+1R)|c5TT$#LJlddkCe_WsMi0$V*x5V2QW5^u zaHn>(;gEpaK(EgpGd|d(2u{!zX28bdID~c`F|ox{%XaA^$x!vUlmxG_71&YU(u!vI z`}SKe2M}ap;Z%m(t}8-Tb6a`)Hy#cB^oE%oYqD8~k1-XQs+meWlmEsMD~q9huf^Dm zP`HJ#WkANAy;8CJWS(6ca(cVBvs?DGVdW+4^zOcPoP5>w@A2L-(k}&BvHHaVJ2zO% z5)Wbz_>|W7w?>zRgT09XL90wKHh5sZNY|)Kz^kx`jPQy;V}(D3

f=ae6G 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 K6mg6^68sm(6ElPW literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po new file mode 100644 index 0000000..47479f8 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po @@ -0,0 +1,1345 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Ankhbayar , 2013 +# Bayarkhuu Bataa, 2014,2017-2018 +# Baskhuu Lodoikhuu , 2011 +# Jannis Leidel , 2011 +# jargalan , 2011 +# Tsolmon , 2011 +# Turmunkh Batkhuyag, 2023 +# Zorig, 2013-2014,2016,2018 +# Zorig, 2019 +# Анхбаяр Анхаа , 2013-2016,2018-2019 +# Баясгалан Цэвлээ , 2011,2015,2017 +# Ганзориг БП , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-25 06:49+0000\n" +"Last-Translator: Turmunkh Batkhuyag, 2023\n" +"Language-Team: Mongolian (http://app.transifex.com/django/django/language/" +"mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Африк" + +msgid "Arabic" +msgstr "Араб" + +msgid "Algerian Arabic" +msgstr "Алжир Араб" + +msgid "Asturian" +msgstr "Астури" + +msgid "Azerbaijani" +msgstr "Азербажан" + +msgid "Bulgarian" +msgstr "Болгар" + +msgid "Belarusian" +msgstr "Беларус" + +msgid "Bengali" +msgstr "Бенгал" + +msgid "Breton" +msgstr "Бэрэйтон " + +msgid "Bosnian" +msgstr "Босни" + +msgid "Catalan" +msgstr "Каталан" + +msgid "Central Kurdish (Sorani)" +msgstr "Төв Курд (Сорани)" + +msgid "Czech" +msgstr "Чех" + +msgid "Welsh" +msgstr "Уэльс" + +msgid "Danish" +msgstr "Дани" + +msgid "German" +msgstr "Герман" + +msgid "Lower Sorbian" +msgstr "Доод Сорбин" + +msgid "Greek" +msgstr "Грек" + +msgid "English" +msgstr "Англи" + +msgid "Australian English" +msgstr "Австрали Англи" + +msgid "British English" +msgstr "Британи Англи" + +msgid "Esperanto" +msgstr "Эсперанто" + +msgid "Spanish" +msgstr "Испани" + +msgid "Argentinian Spanish" +msgstr "Аргентинийн Испани" + +msgid "Colombian Spanish" +msgstr "Колумбийн Испаниар" + +msgid "Mexican Spanish" +msgstr "Мексикийн Испани" + +msgid "Nicaraguan Spanish" +msgstr "Никрагуан Испани" + +msgid "Venezuelan Spanish" +msgstr "Венесуэлийн Спани" + +msgid "Estonian" +msgstr "Эстони" + +msgid "Basque" +msgstr "Баск" + +msgid "Persian" +msgstr "Перс" + +msgid "Finnish" +msgstr "Финлянд" + +msgid "French" +msgstr "Франц" + +msgid "Frisian" +msgstr "Фриз" + +msgid "Irish" +msgstr "Ирланд" + +msgid "Scottish Gaelic" +msgstr "Шотландийн Гаелик" + +msgid "Galician" +msgstr "Галици" + +msgid "Hebrew" +msgstr "Еврэй" + +msgid "Hindi" +msgstr "Хинди" + +msgid "Croatian" +msgstr "Хорват" + +msgid "Upper Sorbian" +msgstr "Дээд Сорбин" + +msgid "Hungarian" +msgstr "Унгар" + +msgid "Armenian" +msgstr "Армен" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Индонези" + +msgid "Igbo" +msgstr "Игбо" + +msgid "Ido" +msgstr "Идо" + +msgid "Icelandic" +msgstr "Исланд" + +msgid "Italian" +msgstr "Итали" + +msgid "Japanese" +msgstr "Япон" + +msgid "Georgian" +msgstr "Гүрж" + +msgid "Kabyle" +msgstr "Кабилэ" + +msgid "Kazakh" +msgstr "Казак" + +msgid "Khmer" +msgstr "Кхмер" + +msgid "Kannada" +msgstr "Канад" + +msgid "Korean" +msgstr "Солонгос" + +msgid "Kyrgyz" +msgstr "Киргиз" + +msgid "Luxembourgish" +msgstr "Лүксенбүргиш" + +msgid "Lithuanian" +msgstr "Литва" + +msgid "Latvian" +msgstr "Латви" + +msgid "Macedonian" +msgstr "Македон" + +msgid "Malayalam" +msgstr "Малайз" + +msgid "Mongolian" +msgstr "Монгол" + +msgid "Marathi" +msgstr "маратхи" + +msgid "Malay" +msgstr "Малай" + +msgid "Burmese" +msgstr "Бирм" + +msgid "Norwegian Bokmål" +msgstr "Норвеги Бокмал" + +msgid "Nepali" +msgstr "Непал" + +msgid "Dutch" +msgstr "Голланд" + +msgid "Norwegian Nynorsk" +msgstr "Норвегийн нюнорск" + +msgid "Ossetic" +msgstr "Оссетик" + +msgid "Punjabi" +msgstr "Панжаби" + +msgid "Polish" +msgstr "Польш" + +msgid "Portuguese" +msgstr "Португал" + +msgid "Brazilian Portuguese" +msgstr "Бразилийн Португали" + +msgid "Romanian" +msgstr "Румын" + +msgid "Russian" +msgstr "Орос" + +msgid "Slovak" +msgstr "Словак" + +msgid "Slovenian" +msgstr "Словен" + +msgid "Albanian" +msgstr "Альбани" + +msgid "Serbian" +msgstr "Серби" + +msgid "Serbian Latin" +msgstr "Серби латин" + +msgid "Swedish" +msgstr "Щвед" + +msgid "Swahili" +msgstr "Савахил" + +msgid "Tamil" +msgstr "Тамил" + +msgid "Telugu" +msgstr "Тэлүгү" + +msgid "Tajik" +msgstr "Тажик" + +msgid "Thai" +msgstr "Тайланд" + +msgid "Turkmen" +msgstr "Турк хүн" + +msgid "Turkish" +msgstr "Турк" + +msgid "Tatar" +msgstr "Татар" + +msgid "Udmurt" +msgstr "Удмурт" + +msgid "Uyghur" +msgstr "Уйгур" + +msgid "Ukrainian" +msgstr "Украйн" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "Узбек" + +msgid "Vietnamese" +msgstr "Вьетнам" + +msgid "Simplified Chinese" +msgstr "Хятад (хялбаршуулсан) " + +msgid "Traditional Chinese" +msgstr "Хятад (уламжлалт)" + +msgid "Messages" +msgstr "Мэдээллүүд" + +msgid "Site Maps" +msgstr "Сайтын бүтэц" + +msgid "Static Files" +msgstr "Статик файлууд" + +msgid "Syndication" +msgstr "Нэгтгэл" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Хуудасны дугаар бүхэл тоо / Integer / биш байна" + +msgid "That page number is less than 1" +msgstr "Хуудасны дугаар 1-ээс байга байна" + +msgid "That page contains no results" +msgstr "Хуудас үр дүн агуулаагүй байна" + +msgid "Enter a valid value." +msgstr "Зөв утга оруулна уу." + +msgid "Enter a valid URL." +msgstr "Зөв, хүчинтэй хаяг (URL) оруулна уу." + +msgid "Enter a valid integer." +msgstr "Бүхэл тоо оруулна уу" + +msgid "Enter a valid email address." +msgstr "Зөв имэйл хаяг оруулна уу" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Үсэг, тоо, доогуур зураас эсвэл зурааснаас бүрдсэн хүчинтэй \"slug\" оруулна " +"уу." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Юникод үсэг, тоо, доогуур зураас, зурааснаас бүрдсэн хүчинтэй \"slug\" " +"оруулна уу." + +msgid "Enter a valid IPv4 address." +msgstr "Зөв IPv4 хаяг оруулна уу. " + +msgid "Enter a valid IPv6 address." +msgstr "Зөв IPv6 хаяг оруулна уу." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Зөв IPv4 эсвэл IPv6 хаяг оруулна уу." + +msgid "Enter only digits separated by commas." +msgstr "Зөвхөн таслалаар тусгаарлагдсан цифр оруулна уу." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Энэ утга хамгийн ихдээ %(limit_value)s байх ёстой. (одоо %(show_value)s " +"байна)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Энэ утга %(limit_value)s -с бага эсвэл тэнцүү байх ёстой." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Энэ утга %(limit_value)s -с их эсвэл тэнцүү байх нөхцлийг хангана уу." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Утга нь алхамын хэмжээнд %(limit_value)s-ээс олон байхыг " +"баталгаажуулна уу." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Энэ утга нь алхмын хэмжээнд %(limit_value)s, %(offset)s-с эхлэн %(offset)s, " +"%(valid_value1)s, %(valid_value2)s гэх мэт утга байхыг баталгаажуулна уу." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Хамгийн ихдээ %(limit_value)d тэмдэгт байх нөхцлийг хангана уу. " +"(%(show_value)d-ийн дагуу)" +msgstr[1] "" +"Хамгийн ихдээ %(limit_value)d тэмдэгт байх нөхцлийг хангана уу. " +"(%(show_value)d-ийн дагуу)" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[1] "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Тоон утга оруулна уу." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "%(max)s -ээс ихгүй утга оруулна уу " +msgstr[1] "%(max)s -ээс ихгүй утга оруулна уу " + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Энд %(max)s -аас олонгүй бутархайн орон байх ёстой. " +msgstr[1] "Энд %(max)s -аас олонгүй бутархайн орон байх ёстой. " + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Энд бутархайн таслалаас өмнө %(max)s-аас олонгүй цифр байх ёстой." +msgstr[1] "Энд бутархайн таслалаас өмнө %(max)s-аас олонгүй цифр байх ёстой." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Файлын өргөтгөл “%(extension)s” зөвшөөрөгдөөгүй байна. Боломжит өргөтгөлүүд: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Хоосон тэмдэгт зөвшөөрөгдөхгүй." + +msgid "and" +msgstr "ба" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(field_labels)s талбар бүхий %(model_name)s аль хэдийн орсон байна." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "“%(name)s” хязгаарлалтыг зөрчсөн." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r буруу сонголт байна." + +msgid "This field cannot be null." +msgstr "Энэ хэсгийг хоосон орхиж болохгүй." + +msgid "This field cannot be blank." +msgstr "Энэ хэсэг хоосон байж болохгүй." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(field_label)s-тэй %(model_name)s-ийг аль хэдийнэ оруулсан байна." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s талбарт давхардахгүй байх хэрэгтэй %(date_field_label)s " +"%(lookup_type)s оруулна." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Талбарийн төрөл нь : %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "\"“%(value)s” утга True эсвэл False байх ёстой.\"" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” утга True, False, эсвэл None байх ёстой." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Үнэн худлын аль нэг нь)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Бичвэр (%(max_length)s хүртэл)" + +msgid "String (unlimited)" +msgstr "Тэмдэг мөр (хязгааргүй)" + +msgid "Comma-separated integers" +msgstr "Таслалаар тусгаарлагдсан бүхэл тоо" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” утга нь буруу огнооны форматтай байна. Энэ нь YYYY-MM-DD " +"форматтай байх ёстой." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” утга зөв (YYYY-MM-DD) форматтай байна, гэхдээ буруу огноо байна." + +msgid "Date (without time)" +msgstr "Огноо (цаггүй)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” утга буруу форматтай байна. Энэ нь YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ] форматтай байх ёстой." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” утгын формат зөв байна (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) " +"гэхдээ буруу огноо/цаг байна." + +msgid "Date (with time)" +msgstr "Огноо (цагтай)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” утга нь бодит тоо байх ёстой." + +msgid "Decimal number" +msgstr "Аравтын бутархайт тоо" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” утга буруу форматтай байна. Энэ нь [DD] [[HH:]MM:]ss[.uuuuuu] " +"форматтай байх ёстой." + +msgid "Duration" +msgstr "Үргэлжлэх хугацаа" + +msgid "Email address" +msgstr "Имэйл хаяг" + +msgid "File path" +msgstr "Файлын зам " + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” бутархай тоон утга байх ёстой." + +msgid "Floating point number" +msgstr "Хөвөгч таслалтай тоо" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” утга нь бүхэл тоо байх ёстой." + +msgid "Integer" +msgstr "Бүхэл тоо" + +msgid "Big (8 byte) integer" +msgstr "Том (8 байт) бүхэл тоо" + +msgid "Small integer" +msgstr "Бага тоон утна" + +msgid "IPv4 address" +msgstr "IPv4 хаяг" + +msgid "IP address" +msgstr "IP хаяг" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "\"“%(value)s” утга нь None, True эсвэл False байх ёстой.\"" + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (Үнэн, худал, эсвэл юу ч биш)" + +msgid "Positive big integer" +msgstr "Эерэг том бүхэл тоо" + +msgid "Positive integer" +msgstr "Бүхэл тоох утга" + +msgid "Positive small integer" +msgstr "Бага бүхэл тоон утга" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Слаг (ихдээ %(max_length)s )" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” утга буруу форматтай байна. Энэ нь HH:MM[:ss[.uuuuuu]] форматтай " +"байх ёстой." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” утга зөв форматтай байна (HH:MM[:ss[.uuuuuu]]) гэхдээ буруу цаг " +"байна." + +msgid "Time" +msgstr "Цаг" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Бинари өгөгдөл" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” нь хүчинтэй UUID биш." + +msgid "Universally unique identifier" +msgstr "UUID" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Зураг" + +msgid "A JSON object" +msgstr "JSON объект " + +msgid "Value must be valid JSON." +msgstr "JSON утга байх боломжтой." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s %(value)r утгатай %(model)s байхгүй байна." + +msgid "Foreign Key (type determined by related field)" +msgstr "Гадаад түлхүүр (тодорхой төрлийн холбоос талбар)" + +msgid "One-to-one relationship" +msgstr "Нэг-нэг холбоос" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s холбоос" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s холбоосууд" + +msgid "Many-to-many relationship" +msgstr "Олон-олон холбоос" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Энэ талбарыг бөглөх шаардлагатай." + +msgid "Enter a whole number." +msgstr "Бүхэл тоон утга оруулна уу." + +msgid "Enter a valid date." +msgstr "Зөв огноо оруулна уу." + +msgid "Enter a valid time." +msgstr "Зөв цаг оруулна уу." + +msgid "Enter a valid date/time." +msgstr "Огноо/цаг-ыг зөв оруулна уу." + +msgid "Enter a valid duration." +msgstr "Үргэлжилэх хугацааг зөв оруулна уу." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Өдөрийн утга {min_days} ээс {max_days} ийн хооронд байх ёстой." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Файл оруулаагүй байна. Маягтаас кодлох төрлийг чагтал. " + +msgid "No file was submitted." +msgstr "Файл оруулаагүй байна." + +msgid "The submitted file is empty." +msgstr "Оруулсан файл хоосон байна. " + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[1] "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Нэг бол сонголтын чягтыг авах эсвэл файл оруулна уу. Зэрэг хэрэгжих " +"боломжгүй." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Зөв зураг оруулна уу. Таны оруулсан файл нэг бол зургийн файл биш эсвэл " +"гэмтсэн зураг байна." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Зөв сонголт хийнэ үү. %(value)s гэсэн сонголт байхгүй байна." + +msgid "Enter a list of values." +msgstr "Өгөгдхүүний жагсаалтаа оруулна уу." + +msgid "Enter a complete value." +msgstr "Бүрэн утга оруулна уу." + +msgid "Enter a valid UUID." +msgstr "Зөв UUID оруулна уу." + +msgid "Enter a valid JSON." +msgstr "JSON-ийн бүтцээр оруулна уу." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Нууц талбар%(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm-ын өгөгдөл дутуу эсвэл өөрчилсөн байна. Дутуу талбарууд: " +"%(field_names)s. Хэрэв асуудал хэвээр байвал та алдааны тайлан гаргах " +"шаардлагатай байж магадгүй." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Та хамгийн ихдээ %(num)d форм илгээнэ үү." +msgstr[1] "Та хамгийн ихдээ %(num)d форм илгээнэ үү." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Та хамгийн багадаа %(num)d форм илгээнэ үү." +msgstr[1] "Та хамгийн багадаа %(num)d форм илгээнэ үү." + +msgid "Order" +msgstr "Эрэмбэлэх" + +msgid "Delete" +msgstr "Устгах" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s хэсэг дэх давхардсан утгыг засварлана уу. " + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"%(field)s хэсэг дэх давхардсан утгыг засварлана уу. Түүний утгууд " +"давхардахгүй байх ёстой." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s хэсэг дэх давхардсан утгыг засварлана уу. %(date_field)s-н " +"%(lookup)s хувьд давхардахгүй байх ёстой." + +msgid "Please correct the duplicate values below." +msgstr "Доорх давхардсан утгуудыг засна уу." + +msgid "The inline value did not match the parent instance." +msgstr "Inline утга эцэг обекттой таарахгүй байна." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Зөв сонголт хийнэ үү. Энэ утга сонголтонд алга." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” нь шаардлага хангаагүй утга байна." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s нь %(current_timezone)s цагийн бүсэд хөрвүүлэх боломжгүй байна; " +"энэ нь хоёрдмол утгатай эсвэл байхгүй байж болно." + +msgid "Clear" +msgstr "Цэвэрлэх" + +msgid "Currently" +msgstr "Одоогийн" + +msgid "Change" +msgstr "Засах" + +msgid "Unknown" +msgstr "Тодорхойгүй" + +msgid "Yes" +msgstr "Тийм" + +msgid "No" +msgstr "Үгүй" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "тийм,үгүй,магадгүй" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" +msgstr[1] "%(size)d байт" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "шөнө дунд" + +msgid "noon" +msgstr "үд дунд" + +msgid "Monday" +msgstr "Даваа гариг" + +msgid "Tuesday" +msgstr "Мягмар гариг" + +msgid "Wednesday" +msgstr "Лхагва гариг" + +msgid "Thursday" +msgstr "Пүрэв гариг" + +msgid "Friday" +msgstr "Баасан гариг" + +msgid "Saturday" +msgstr "Бямба гариг" + +msgid "Sunday" +msgstr "Ням гариг" + +msgid "Mon" +msgstr "Дав" + +msgid "Tue" +msgstr "Мяг" + +msgid "Wed" +msgstr "Лха" + +msgid "Thu" +msgstr "Пүр" + +msgid "Fri" +msgstr "Баа" + +msgid "Sat" +msgstr "Бям" + +msgid "Sun" +msgstr "Ням" + +msgid "January" +msgstr "1-р сар" + +msgid "February" +msgstr "2-р сар" + +msgid "March" +msgstr "3-р сар" + +msgid "April" +msgstr "4-р сар" + +msgid "May" +msgstr "5-р сар" + +msgid "June" +msgstr "6-р сар" + +msgid "July" +msgstr "7-р сар" + +msgid "August" +msgstr "8-р сар" + +msgid "September" +msgstr "9-р сар" + +msgid "October" +msgstr "10-р сар" + +msgid "November" +msgstr "11-р сар" + +msgid "December" +msgstr "12-р сар" + +msgid "jan" +msgstr "1-р сар" + +msgid "feb" +msgstr "2-р сар" + +msgid "mar" +msgstr "3-р сар" + +msgid "apr" +msgstr "4-р сар" + +msgid "may" +msgstr "5-р сар" + +msgid "jun" +msgstr "6-р сар" + +msgid "jul" +msgstr "7-р сар" + +msgid "aug" +msgstr "8-р сар " + +msgid "sep" +msgstr "9-р сар" + +msgid "oct" +msgstr "10-р сар" + +msgid "nov" +msgstr "11-р сар" + +msgid "dec" +msgstr "12-р сар" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "1-р сар." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "2-р сар." + +msgctxt "abbrev. month" +msgid "March" +msgstr "3-р сар." + +msgctxt "abbrev. month" +msgid "April" +msgstr "4-р сар." + +msgctxt "abbrev. month" +msgid "May" +msgstr "5-р сар." + +msgctxt "abbrev. month" +msgid "June" +msgstr "6-р сар." + +msgctxt "abbrev. month" +msgid "July" +msgstr "7-р сар." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "8-р сар." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "9-р сар." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "10-р сар." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "11-р сар." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "12-р сар." + +msgctxt "alt. month" +msgid "January" +msgstr "Хулгана" + +msgctxt "alt. month" +msgid "February" +msgstr "Үхэр" + +msgctxt "alt. month" +msgid "March" +msgstr "Бар" + +msgctxt "alt. month" +msgid "April" +msgstr "Туулай" + +msgctxt "alt. month" +msgid "May" +msgstr "Луу" + +msgctxt "alt. month" +msgid "June" +msgstr "Могой" + +msgctxt "alt. month" +msgid "July" +msgstr "Морь" + +msgctxt "alt. month" +msgid "August" +msgstr "Хонь" + +msgctxt "alt. month" +msgid "September" +msgstr "Бич" + +msgctxt "alt. month" +msgid "October" +msgstr "Тахиа" + +msgctxt "alt. month" +msgid "November" +msgstr "Нохой" + +msgctxt "alt. month" +msgid "December" +msgstr "Гахай" + +msgid "This is not a valid IPv6 address." +msgstr "Энэ буруу IPv6 хаяг байна." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "буюу" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d жил" +msgstr[1] "%(num)d жил" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d сар" +msgstr[1] "%(num)d сар" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d долоо хоног" +msgstr[1] "%(num)d долоо хоног" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d өдөр" +msgstr[1] "%(num)d өдөр" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d цаг" +msgstr[1] "%(num)d цаг" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d минут" +msgstr[1] "%(num)d минут" + +msgid "Forbidden" +msgstr "Хориотой" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF дээр уналаа. Хүсэлт таслагдсан." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Та энэ мэдэгдлийг харж байгаа нь таны веб хөтөчөөс 'Referer header'-ийг " +"HTTPS хуудасд илгээх шаардлагатай байгаатай холбоотой. Энэ нь гуравдагч " +"этгээдээс хамгаалахын тулд шаардлагатай." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Хэрвээ та веб хөтөчөө 'Referer' толгойг идэвхигүй болгосон бол энэ хуудас, " +"HTTPS холболт эсвэл 'same-origin' хүсэлтэнд зориулж идэвхижүүлнэ үү." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Хэрвээ та таг ашиглаж " +"байгаа бол эсвэл 'Referrer-Policy: no-referrer' толгойг нэмсэн бол, " +"эдгээрийг устгана уу. CSRF хамгаалалт 'Referer' толгойг чанд шалгалт хийхийг " +"шаарддаг. Хэрвээ та аюулгүй байдлыг чухалчилж байгаа бол гуравдагч сайтыг " +"холбохдоо ашиглана уу." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Энэ хуудсанд форм илгээхийн тулд CSRF күүки шаардлагатай учир Та энэ " +"мэдэгдлийг харж байна. Энэ күүки нь гуравдагч этгээдээс хамгаалахын тулд " +"шаардлагатай." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Хэрвээ та веб хөтөчийн \"cookies\"-г хаасан бол энэ хуудас эсвэл 'same-" +"origin' хүсэлтэнд зориулж идэвхижүүлнэ үү." + +msgid "More information is available with DEBUG=True." +msgstr "DEBUG=True үед дэлгэрэнгүй мэдээлэл харах боломжтой." + +msgid "No year specified" +msgstr "Он тодорхойлоогүй байна" + +msgid "Date out of range" +msgstr "Хугацааны хязгаар хэтэрсэн байна" + +msgid "No month specified" +msgstr "Сар тодорхойлоогүй байна" + +msgid "No day specified" +msgstr "Өдөр тодорхойлоогүй байна" + +msgid "No week specified" +msgstr "Долоо хоног тодорхойлоогүй байна" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s боломжгүй" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(class_name)s.allow_future нь худлаа учраас %(verbose_name_plural)s нь " +"боломжгүй." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Буруу огноо. '%(datestr)s' огноо '%(format)s' хэлбэрт тохирохгүй байна." + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Шүүлтүүрт таарах %(verbose_name)s олдсонгүй " + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Хуудас \"сүүлчийн\" биш бөгөөд үүнийг int болгон хувиргах боломжгүй." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Буруу хуудас (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Хоосон жагсаалт ба “%(class_name)s.allow_empty” нь False байна." + +msgid "Directory indexes are not allowed here." +msgstr "Файлын жагсаалтыг энд зөвшөөрөөгүй." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” хуудас байхгүй байна." + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s ийн жагсаалт" + +msgid "The install worked successfully! Congratulations!" +msgstr "Амжилттай суулгалаа! Баяр хүргэе!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Джанго %(version)s хувирбарын тэмдэглэл харах " + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Таний тохиргооны файл дээр DEBUG=TRUE гэж тохируулсан мөн URLs дээр тохиргоо " +"хийгээгүй учраас энэ хуудасыг харж байна." + +msgid "Django Documentation" +msgstr "Джанго баримтжуулалт" + +msgid "Topics, references, & how-to’s" +msgstr "Сэдэв, лавлахууд болон зааврууд" + +msgid "Tutorial: A Polling App" +msgstr "Хичээл: Санал асуулга App" + +msgid "Get started with Django" +msgstr "Джанготой ажиллаж эхлэх" + +msgid "Django Community" +msgstr "Django Бүлгэм" + +msgid "Connect, get help, or contribute" +msgstr "Холбогдох, тусламж авах эсвэл хувь нэмрээ оруулах" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mn/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/mn/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/mn/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e7bf98757c7d30f0beae5334f02b56d5ef2eb555 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFNI@- literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/mn/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b75d064b66cfce138b7ccae7708d8b648a5cec38 GIT binary patch literal 271 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 F{vXubaRC4T literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po new file mode 100644 index 0000000..fe4c6eb --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/mr/LC_MESSAGES/django.po @@ -0,0 +1,1280 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Omkar Parab, 2024 +# Suraj Kawade, 2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2024-01-20 06:49+0000\n" +"Last-Translator: Omkar Parab, 2024\n" +"Language-Team: Marathi (http://app.transifex.com/django/django/language/" +"mr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "अफ्रिकान्स" + +msgid "Arabic" +msgstr "अरेबिक" + +msgid "Algerian Arabic" +msgstr "अल्जेरियन अरेबिक" + +msgid "Asturian" +msgstr "अस्टूरियन" + +msgid "Azerbaijani" +msgstr "अझरबैजानी" + +msgid "Bulgarian" +msgstr "बल्गेरियन" + +msgid "Belarusian" +msgstr "बेलारशियन" + +msgid "Bengali" +msgstr "बंगाली" + +msgid "Breton" +msgstr "ब्रेटन" + +msgid "Bosnian" +msgstr "बोस्नियन" + +msgid "Catalan" +msgstr "कॅटलान" + +msgid "Central Kurdish (Sorani)" +msgstr "मध्य कुर्दिश (सोरानी)" + +msgid "Czech" +msgstr "झेक" + +msgid "Welsh" +msgstr "वेल्श" + +msgid "Danish" +msgstr "डॅनिश" + +msgid "German" +msgstr "जर्मन" + +msgid "Lower Sorbian" +msgstr "लोअर सोर्बियन" + +msgid "Greek" +msgstr "ग्रीक" + +msgid "English" +msgstr "इंग्रजी" + +msgid "Australian English" +msgstr "ऑस्ट्रेलियन इंग्रजी" + +msgid "British English" +msgstr "ब्रिटिश इंग्रजी" + +msgid "Esperanto" +msgstr "एस्पेरॅन्टो" + +msgid "Spanish" +msgstr "स्पॅनिश " + +msgid "Argentinian Spanish" +msgstr "अर्जेन्टिनाची स्पॅनिश" + +msgid "Colombian Spanish" +msgstr "कोलंबियन स्पॅनिश" + +msgid "Mexican Spanish" +msgstr "मेक्सिकन स्पॅनिश" + +msgid "Nicaraguan Spanish" +msgstr "निकारागुआन स्पॅनिश" + +msgid "Venezuelan Spanish" +msgstr "व्हेनेझुएलन स्पॅनिश" + +msgid "Estonian" +msgstr "एस्टोनियन" + +msgid "Basque" +msgstr "बास्क" + +msgid "Persian" +msgstr "पर्शियन" + +msgid "Finnish" +msgstr "फिनिश" + +msgid "French" +msgstr "फ्रेंच" + +msgid "Frisian" +msgstr "फ्रिसियन" + +msgid "Irish" +msgstr "आयरिश" + +msgid "Scottish Gaelic" +msgstr "स्कॉटिश गेलिक" + +msgid "Galician" +msgstr "गॅलिशियन" + +msgid "Hebrew" +msgstr "हिब्रू" + +msgid "Hindi" +msgstr "हिंदी" + +msgid "Croatian" +msgstr "क्रोएशियन" + +msgid "Upper Sorbian" +msgstr "अप्पर सोर्बियन" + +msgid "Hungarian" +msgstr "हंगेरियन" + +msgid "Armenian" +msgstr "अर्मेनियन" + +msgid "Interlingua" +msgstr "इंटरलिंगुआ" + +msgid "Indonesian" +msgstr "इंडोनेशियन" + +msgid "Igbo" +msgstr "इग्बो" + +msgid "Ido" +msgstr "इदो" + +msgid "Icelandic" +msgstr "आयलँडिक" + +msgid "Italian" +msgstr "इटालियन" + +msgid "Japanese" +msgstr "जपानी" + +msgid "Georgian" +msgstr "जॉर्जियन" + +msgid "Kabyle" +msgstr "कबायल" + +msgid "Kazakh" +msgstr "कझाक" + +msgid "Khmer" +msgstr "ख्मेर" + +msgid "Kannada" +msgstr "कन्नड" + +msgid "Korean" +msgstr "कोरियन" + +msgid "Kyrgyz" +msgstr "किर्गिझ" + +msgid "Luxembourgish" +msgstr "लक्झेंबर्गिश" + +msgid "Lithuanian" +msgstr "लिथुआनियन" + +msgid "Latvian" +msgstr "लाटव्हिअन" + +msgid "Macedonian" +msgstr "मॅसेडोनिअन" + +msgid "Malayalam" +msgstr "मल्याळम" + +msgid "Mongolian" +msgstr "मंगोलियन" + +msgid "Marathi" +msgstr "मराठी" + +msgid "Malay" +msgstr "मलय" + +msgid "Burmese" +msgstr "बर्मीस" + +msgid "Norwegian Bokmål" +msgstr "नॉर्वेजियन बोकमाल" + +msgid "Nepali" +msgstr "नेपाळी" + +msgid "Dutch" +msgstr "डच" + +msgid "Norwegian Nynorsk" +msgstr "नॉर्वेजिअन निनॉर्स्क " + +msgid "Ossetic" +msgstr "ओस्सेटिक" + +msgid "Punjabi" +msgstr "पंजाबी" + +msgid "Polish" +msgstr "पॉलिश" + +msgid "Portuguese" +msgstr "पोर्तुगीज" + +msgid "Brazilian Portuguese" +msgstr "ब्रझिलियन पोर्तुगीज" + +msgid "Romanian" +msgstr "रोमेनियन" + +msgid "Russian" +msgstr "रशियन" + +msgid "Slovak" +msgstr "स्लोवाक" + +msgid "Slovenian" +msgstr "स्लोवेनियन" + +msgid "Albanian" +msgstr "अल्बेनियन" + +msgid "Serbian" +msgstr "सर्बियन" + +msgid "Serbian Latin" +msgstr "सर्बियन लॅटिन" + +msgid "Swedish" +msgstr "स्वीडिश" + +msgid "Swahili" +msgstr "स्वाहिली" + +msgid "Tamil" +msgstr "तमिळ" + +msgid "Telugu" +msgstr "तेलुगु" + +msgid "Tajik" +msgstr "ताजिक" + +msgid "Thai" +msgstr "थाई" + +msgid "Turkmen" +msgstr "तुर्कमेन" + +msgid "Turkish" +msgstr "तुर्की" + +msgid "Tatar" +msgstr "टाटर" + +msgid "Udmurt" +msgstr "उदमर्त" + +msgid "Uyghur" +msgstr "उईघुर" + +msgid "Ukrainian" +msgstr "युक्रेनियन" + +msgid "Urdu" +msgstr "उर्दू" + +msgid "Uzbek" +msgstr "उझबेक" + +msgid "Vietnamese" +msgstr "व्हिएतनामी" + +msgid "Simplified Chinese" +msgstr "सोपी चायनिज" + +msgid "Traditional Chinese" +msgstr "पारंपारिक चायनिज" + +msgid "Messages" +msgstr "संदेश" + +msgid "Site Maps" +msgstr "संकेतस्थळ नकाशे" + +msgid "Static Files" +msgstr "स्थिर फाइल्स" + +msgid "Syndication" +msgstr "सिंडिकेशन" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "तो पान क्रमांक पूर्णांक नाही." + +msgid "That page number is less than 1" +msgstr "तो पान क्रमांक 1 पेक्षा कमी आहे" + +msgid "That page contains no results" +msgstr "त्या पानावर कोणतेही परिणाम नाहीत." + +msgid "Enter a valid value." +msgstr "वैध मूल्य टाका." + +msgid "Enter a valid URL." +msgstr "एक योग्य युआरएल टाका करा." + +msgid "Enter a valid integer." +msgstr "योग्य पूर्णांक टाका." + +msgid "Enter a valid email address." +msgstr "योग्य विपत्र पत्ता टाका." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "अक्षरे, संख्या, अंडरस्कोर किंवा हायफनसह असलेला योग्य \"स्लग\" टाका." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "योग्य \"स्लग\" टाका ज्यामध्ये यूनिकोड अक्षरे, अंक, अंडरस्कोर किंवा हायफन असतात." + +msgid "Enter a valid IPv4 address." +msgstr "योग्य IPv4 पत्ता टाका." + +msgid "Enter a valid IPv6 address." +msgstr "योग्य IPv6 पत्ता टाका." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "योग्य IPv4 किंवा IPv6 पत्ता नमूद करा." + +msgid "Enter only digits separated by commas." +msgstr "स्वल्पविरामाने वेगळे केलेले अंकच फक्त नमूद करा." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "हे मूल्य%(limit_value)s(%(show_value)s) आहे याची खात्री करा." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "हे मूल्य %(limit_value)sया मर्यादेइतके किंवा त्यापेक्षा कमी आहे याची काळजी घ्या." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "हे मूल्य %(limit_value)sया मर्यादेइतके किंवा त्यापेक्षा जास्त आहे याची काळजी घ्या." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "हे मूल्य पायरी आकार %(limit_value)s चा गुणाकार असल्याची खात्री करा." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "अंक टाका." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "शून्य वर्णांना परवानगी नाही." + +msgid "and" +msgstr "आणि" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s सह %(field_labels)s हे अगोदरच अस्तित्वात आहे." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "\"%(name)s\" च्या मर्यादेचं उल्लंघन आहे." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Value %(value)r हा योग्य पर्याय नाही." + +msgid "This field cannot be null." +msgstr "हे क्षेत्र रिक्त असू शकत नाही." + +msgid "This field cannot be blank." +msgstr "हे क्षेत्र रिक्त असू शकत नाही." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s %(field_label)s ने अगोदरच अस्तित्वात आहे." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "क्षेत्राचा प्रकार: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” मूल्य सत्य किंवा असत्य असावा." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” मूल्य सत्य, असत्य किंवा कोणतेही नसावेत." + +msgid "Boolean (Either True or False)" +msgstr "बूलियन (सत्य किंवा असत्य)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "String (unlimited)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "स्वल्पविरामाने वेगळे केलेले पूर्णांक" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "दिनांक (वेळेशिवाय)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "दिनांक (वेळेसह)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "कालावधी" + +msgid "Email address" +msgstr "विपत्र पत्ता" + +msgid "File path" +msgstr "दस्तऐवज मार्ग" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "पूर्णांक" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "Small integer" +msgstr "लहान पूर्णांक" + +msgid "IPv4 address" +msgstr "IPv4 पत्ता" + +msgid "IP address" +msgstr "IP पत्ता" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "बुलियन (एकतर खरे, असत्य किंवा काहीही नाही)" + +msgid "Positive big integer" +msgstr "सकारात्मक मोठा पूर्णांक" + +msgid "Positive integer" +msgstr "सकारात्मक पूर्णांक" + +msgid "Positive small integer" +msgstr "सकारात्मक लहान पूर्णांक" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Text" +msgstr "मजकूर" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "वेळ" + +msgid "URL" +msgstr "" + +msgid "Raw binary data" +msgstr "कच्चा बायनरी डेटा" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "सार्वत्रिक अद्वितीय ओळखकर्ता" + +msgid "File" +msgstr "फाइल" + +msgid "Image" +msgstr "चित्र " + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "मूल्य योग्य JSON असणे आवश्यक." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "हे क्षेत्र आवश्यक आहे." + +msgid "Enter a whole number." +msgstr "पूर्ण संख्या प्रविष्ट करा." + +msgid "Enter a valid date." +msgstr "योग्य दिनांक नमूद करा." + +msgid "Enter a valid time." +msgstr "योग्य वेळ नमूद करा." + +msgid "Enter a valid date/time." +msgstr "योग्य दिनांक/वेळ नमूद करा." + +msgid "Enter a valid duration." +msgstr "योग्य कालावधी नमूद करा." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "दिवसांची संख्या {min_days} आणि {max_days} च्या मधे असावी." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "कोणताही दस्तऐवज सुपूर्त केलेला नाही. अर्जावरील एन्कोडिंग प्रकार तपासा." + +msgid "No file was submitted." +msgstr "कोणताही दस्तऐवज सुपूर्त केलेला नाही." + +msgid "The submitted file is empty." +msgstr "सुपूर्त केलेला दस्तऐवज रिकामी आहे." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "कृपया एकतर फाइल सबमिट करा किंवा स्पष्ट चेकबॉक्स चेक करा, दोन्ही नाही." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "एक वैध प्रतिमा अपलोड करा. तुम्ही अपलोड केलेली फाइल चित्र किंवा दूषित चित्र नव्हते." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "मूल्यांची यादी नमूद करा." + +msgid "Enter a complete value." +msgstr "पूर्ण मूल्य नमूद करा." + +msgid "Enter a valid UUID." +msgstr "योग्य UUID नमूद करा." + +msgid "Enter a valid JSON." +msgstr "योग्य JSON नमूद करा." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "क्रम" + +msgid "Delete" +msgstr "घालवा" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "कृपया %(field)s साठी दुय्यम माहिती प्रत सुधारा." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "कृपया खालील नकली मूल्ये सुधारा." + +msgid "The inline value did not match the parent instance." +msgstr "इनलाइन मूल्य मूळ उदाहरणाशी जुळत नाही." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "तो पर्याय उपलब्ध पर्यायांपैकी एक नाही. योग्य पर्याय निवडा. " + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” हे वैध मूल्य नाही." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "साफ करा" + +msgid "Currently" +msgstr "सध्या" + +msgid "Change" +msgstr "बदला" + +msgid "Unknown" +msgstr "अज्ञात" + +msgid "Yes" +msgstr "होय" + +msgid "No" +msgstr "नाही" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "होय,नाही,कदाचित" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%s KB" +msgstr "%s केबी" + +#, python-format +msgid "%s MB" +msgstr "%s एमबी" + +#, python-format +msgid "%s GB" +msgstr "%s जीबी" + +#, python-format +msgid "%s TB" +msgstr "%s टिबी" + +#, python-format +msgid "%s PB" +msgstr "%s पीबी" + +msgid "p.m." +msgstr "म.उ." + +msgid "a.m." +msgstr "म.पू." + +msgid "PM" +msgstr "मउ" + +msgid "AM" +msgstr "मपू" + +msgid "midnight" +msgstr "मध्यरात्री" + +msgid "noon" +msgstr "दुपारी" + +msgid "Monday" +msgstr "सोमवार" + +msgid "Tuesday" +msgstr "मंगळवार" + +msgid "Wednesday" +msgstr "बुधवार" + +msgid "Thursday" +msgstr "गुरुवार" + +msgid "Friday" +msgstr "शुक्रवार" + +msgid "Saturday" +msgstr "शनिवार" + +msgid "Sunday" +msgstr "रविवार" + +msgid "Mon" +msgstr "सोम" + +msgid "Tue" +msgstr "मंगळ" + +msgid "Wed" +msgstr "बुध" + +msgid "Thu" +msgstr "गुरु" + +msgid "Fri" +msgstr "शुक्र" + +msgid "Sat" +msgstr "शनि" + +msgid "Sun" +msgstr "रवि" + +msgid "January" +msgstr "जानेवारी" + +msgid "February" +msgstr "फेब्रुवारी" + +msgid "March" +msgstr "मार्च" + +msgid "April" +msgstr "एप्रिल" + +msgid "May" +msgstr "मे" + +msgid "June" +msgstr "जून" + +msgid "July" +msgstr "जुलै" + +msgid "August" +msgstr "ऑगस्ट" + +msgid "September" +msgstr "सप्टेंबर" + +msgid "October" +msgstr "ऑक्टोबर" + +msgid "November" +msgstr "नोव्हेंबर" + +msgid "December" +msgstr "डिसेंबर" + +msgid "jan" +msgstr "जान" + +msgid "feb" +msgstr "फेब" + +msgid "mar" +msgstr "मार" + +msgid "apr" +msgstr "एप्रि" + +msgid "may" +msgstr "मे" + +msgid "jun" +msgstr "जून" + +msgid "jul" +msgstr "जुल" + +msgid "aug" +msgstr "ऑग" + +msgid "sep" +msgstr "सप" + +msgid "oct" +msgstr "ऑक्ट" + +msgid "nov" +msgstr "नोव्ह" + +msgid "dec" +msgstr "डिस" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "जान." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "फेब." + +msgctxt "abbrev. month" +msgid "March" +msgstr "मार्च" + +msgctxt "abbrev. month" +msgid "April" +msgstr "एप्रिल" + +msgctxt "abbrev. month" +msgid "May" +msgstr "मे" + +msgctxt "abbrev. month" +msgid "June" +msgstr "जून" + +msgctxt "abbrev. month" +msgid "July" +msgstr "जुलै" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ऑग." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "सप्ट." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "ऑक्ट." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "नोव्ह." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "डिस." + +msgctxt "alt. month" +msgid "January" +msgstr "जानेवारी" + +msgctxt "alt. month" +msgid "February" +msgstr "फेब्रुवारी" + +msgctxt "alt. month" +msgid "March" +msgstr "मार्च" + +msgctxt "alt. month" +msgid "April" +msgstr "एप्रिल" + +msgctxt "alt. month" +msgid "May" +msgstr "मे" + +msgctxt "alt. month" +msgid "June" +msgstr "जून" + +msgctxt "alt. month" +msgid "July" +msgstr "जुलै" + +msgctxt "alt. month" +msgid "August" +msgstr "ऑगस्ट" + +msgctxt "alt. month" +msgid "September" +msgstr "सप्टेंबर" + +msgctxt "alt. month" +msgid "October" +msgstr "ऑक्टोबर" + +msgctxt "alt. month" +msgid "November" +msgstr "नोव्हेंबर" + +msgctxt "alt. month" +msgid "December" +msgstr "डिसेंबर" + +msgid "This is not a valid IPv6 address." +msgstr "हा योग्य IPv6 पत्ता नाही." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "किंवा" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "निषिद्ध" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF चाचणी अयशस्वी झाली. विनंती रद्द केली." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"तुम्हाला हा सनदेश दिसत आहे कारण या HTTPS संकेतस्थळाला तुमच्या वेब ब्राउझरद्वारे \"रेफरर " +"हेडर\" पाठवण्याची आवश्यकता आहे, परंतु कोणतेही पाठवले नाही. तुमचा ब्राउझर तृतीय पक्षांकडून " +"हायजॅक केला जात नाही याची खात्री करण्यासाठी सुरक्षिततेच्या दृष्टीने हे शीर्षलेख आवश्यक आहे." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"किमान या साइटसाठी किंवा HTTPS कनेक्शनसाठी किंवा “समान-मूळ” विनंत्यांसाठी, तुम्ही तुमचे " +"ब्राउझर “रेफरर” हेडर अक्षम केले असल्यास, कृपया ते पुन्हा-सक्षम करा." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"तुम्ही जोडणी वापरत असल्यास किंवा \"रेफरर-पॉलिसी: नो-रेफरर\" हेडर समाविष्ट करत " +"असल्यास, कृपया ते काढून टाका. CSRF संरक्षणासाठी \"रेफरर\" हेडर कठोर रेफरर तपासणी करणे " +"आवश्यक आहे. तुम्हाला गोपनीयतेबद्दल काळजी वाटत असल्यास, तृतीय-पक्ष स्थळाच्या दुव्यासाठी सारखे पर्याय वापरा." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"तुम्हाला हा संदेश दिसत आहे कारण अर्ज सुपूर्त करताना या स्थळाला CSRF कुकी आवश्यक आहे. तुमचा " +"ब्राउझर तृतीय पक्षांकडून हायजॅक केला जात नाही याची खात्री करण्यासाठी ही कुकी " +"सुरक्षिततेच्या कारणांसाठी आवश्यक आहे." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"किमान या साइटसाठी किंवा \"समान-मूळ\" विनंत्यांसाठी, कृपया अक्षम केलेल्या ब्राउझर कुकीज " +"पुन्हा सक्षम करा." + +msgid "More information is available with DEBUG=True." +msgstr "अधिक माहिती DEBUG=True सह उपलब्ध आहे." + +msgid "No year specified" +msgstr "कोणतेही वर्ष नमूद केलेले नाही" + +msgid "Date out of range" +msgstr "पल्ल्याच्या बाहेरची दिनांक" + +msgid "No month specified" +msgstr "कोणताही महिना निर्दिष्ट केलेला नाही" + +msgid "No day specified" +msgstr "कोणताही दिवस निर्दिष्ट केलेला नाही" + +msgid "No week specified" +msgstr "कोणताही आठवडा निर्दिष्ट केलेला नाही" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "कोणतेही %(verbose_name_plural)s उपलब्ध नाहीत" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "क्वेरीसह जुळणारे कोणतेही %(verbose_name)s सापडले नाही" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "अवैध पान (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "डिरेक्टरी निर्देशकांना येथे परवानगी नाही." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” अस्तित्वात नाही" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s चे निर्देशांक" + +msgid "The install worked successfully! Congratulations!" +msgstr "इंस्टॉलेशनने यशस्वीरित्या कार्य केले! अभिनंदन!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"डिजांगो %(version)s साठी प्रदर्शित संदेश पहा" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"तुम्ही हे पान पाहत आहात कारण तुमच्या सेटिंग्ज फाइलमध्ये DEBUG=True आहे आणि तुम्ही कोणतीही URL कॉन्फिगर केलेली नाही." + +msgid "Django Documentation" +msgstr "जांगो दस्तऐवजीकरण" + +msgid "Topics, references, & how-to’s" +msgstr "विषय, संदर्भ, आणि कसे करावे" + +msgid "Tutorial: A Polling App" +msgstr "शिकवणी: मतदान अ‍ॅप" + +msgid "Get started with Django" +msgstr "जॅंगो सोबत सुरवात करा" + +msgid "Django Community" +msgstr "जॅंगो समुदाय" + +msgid "Connect, get help, or contribute" +msgstr "जोडा, मदत मिळवा किंवा हातभार लावा" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..90813401bb76a582b78ae78661a26c9bfddb1f1a GIT binary patch literal 27066 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po new file mode 100644 index 0000000..5884745 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ms/LC_MESSAGES/django.po @@ -0,0 +1,1286 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Jafry Hisham, 2021 +# Mariusz Felisiak , 2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-12-06 07:43+0000\n" +"Last-Translator: Mariusz Felisiak \n" +"Language-Team: Malay (http://www.transifex.com/django/django/language/ms/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "Bahasa Afrikaans" + +msgid "Arabic" +msgstr "Bahasa Arab" + +msgid "Algerian Arabic" +msgstr "Bahasa Arab Algeria" + +msgid "Asturian" +msgstr "Bahasa Asturia" + +msgid "Azerbaijani" +msgstr "Bahasa Azerbaijan" + +msgid "Bulgarian" +msgstr "Bahasa Bulgaria" + +msgid "Belarusian" +msgstr "Bahasa Belarus" + +msgid "Bengali" +msgstr "Bahasa Benggali" + +msgid "Breton" +msgstr "Bahasa Breton" + +msgid "Bosnian" +msgstr "Bahasa Bosnia" + +msgid "Catalan" +msgstr "Bahasa Catalonia" + +msgid "Czech" +msgstr "Bahasa Czech" + +msgid "Welsh" +msgstr "Bahasa Wales" + +msgid "Danish" +msgstr "Bahasa Denmark" + +msgid "German" +msgstr "Bahasa Jerman" + +msgid "Lower Sorbian" +msgstr "Bahasa Sorbian Rendah" + +msgid "Greek" +msgstr "Bahasa Yunani" + +msgid "English" +msgstr "Bahasa Inggeris" + +msgid "Australian English" +msgstr "Bahasa Inggeris Australia" + +msgid "British English" +msgstr "Bahasa Inggeris British" + +msgid "Esperanto" +msgstr "Bahasa Esperanto" + +msgid "Spanish" +msgstr "Bahasa Sepanyol" + +msgid "Argentinian Spanish" +msgstr "Bahasa Sepanyol Argentina" + +msgid "Colombian Spanish" +msgstr "Bahasa Sepanyol Kolumbia" + +msgid "Mexican Spanish" +msgstr "Bahasa Sepanyol Mexico" + +msgid "Nicaraguan Spanish" +msgstr "Bahasa Sepanyol Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Bahasa Sepanyol Venezuela" + +msgid "Estonian" +msgstr "Bahasa Estonia" + +msgid "Basque" +msgstr "Bahasa Bask" + +msgid "Persian" +msgstr "Bahasa Farsi" + +msgid "Finnish" +msgstr "Bahassa Finland" + +msgid "French" +msgstr "Bahasa Perancis" + +msgid "Frisian" +msgstr "Bahasa Frisia" + +msgid "Irish" +msgstr "Bahasa Ireland" + +msgid "Scottish Gaelic" +msgstr "Bahasa Gael Scotland" + +msgid "Galician" +msgstr "Bahasa Galisia" + +msgid "Hebrew" +msgstr "Bahasa Ibrani" + +msgid "Hindi" +msgstr "Bahasa Hindi" + +msgid "Croatian" +msgstr "Bahasa Kroatia" + +msgid "Upper Sorbian" +msgstr "Bahasa Sorbia Atasan" + +msgid "Hungarian" +msgstr "Bahasa Hungary" + +msgid "Armenian" +msgstr "Bahasa Armenia" + +msgid "Interlingua" +msgstr "Bahasa Interlingua" + +msgid "Indonesian" +msgstr "Bahasa Indonesia" + +msgid "Igbo" +msgstr "Bahasa Igbo" + +msgid "Ido" +msgstr "Bahasa Ido" + +msgid "Icelandic" +msgstr "Bahasa Iceland" + +msgid "Italian" +msgstr "Bahasa Itali" + +msgid "Japanese" +msgstr "Bahasa Jepun" + +msgid "Georgian" +msgstr "Bahasa Georgia" + +msgid "Kabyle" +msgstr "Bahasa Kabylia" + +msgid "Kazakh" +msgstr "Bahasa Kazakhstan" + +msgid "Khmer" +msgstr "Bahasa Kambodia" + +msgid "Kannada" +msgstr "Bahasa Kannada" + +msgid "Korean" +msgstr "Bahasa Korea" + +msgid "Kyrgyz" +msgstr "Bahasa Kyrgyzstan" + +msgid "Luxembourgish" +msgstr "Bahasa Luxemborg" + +msgid "Lithuanian" +msgstr "Bahasa Lithuania" + +msgid "Latvian" +msgstr "Bahasa Latvia" + +msgid "Macedonian" +msgstr "Bahasa Masedonia" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Bahasa Mongol" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Bahasa Melayu" + +msgid "Burmese" +msgstr "Bahasa Burma" + +msgid "Norwegian Bokmål" +msgstr "Bahasa Bokmal Norway" + +msgid "Nepali" +msgstr "Bahasa Nepal" + +msgid "Dutch" +msgstr "Belanda" + +msgid "Norwegian Nynorsk" +msgstr "Bahasa Nynorsk Norway" + +msgid "Ossetic" +msgstr "Bahasa Ossetic" + +msgid "Punjabi" +msgstr "Bahasa Punjab" + +msgid "Polish" +msgstr "Bahasa Poland" + +msgid "Portuguese" +msgstr "Bahasa Portugal" + +msgid "Brazilian Portuguese" +msgstr "Bahasa Portugal Brazil" + +msgid "Romanian" +msgstr "Bahasa Romania" + +msgid "Russian" +msgstr "Bahasa Rusia" + +msgid "Slovak" +msgstr "Bahasa Slovakia" + +msgid "Slovenian" +msgstr "Bahasa Slovenia" + +msgid "Albanian" +msgstr "Bahasa Albania" + +msgid "Serbian" +msgstr "Bahasa Serbia" + +msgid "Serbian Latin" +msgstr "Bahasa Latin Serbia" + +msgid "Swedish" +msgstr "Bahasa Sweden" + +msgid "Swahili" +msgstr "Bahasa Swahili" + +msgid "Tamil" +msgstr "Bahasa Tamil" + +msgid "Telugu" +msgstr "Bahasa Telugu" + +msgid "Tajik" +msgstr "Bahasa Tajik" + +msgid "Thai" +msgstr "Bahasa Siam" + +msgid "Turkmen" +msgstr "Bahasa Turkmenistan" + +msgid "Turkish" +msgstr "Bahasa Turki" + +msgid "Tatar" +msgstr "Bahasa Tatar" + +msgid "Udmurt" +msgstr "Bahasa Udmurt" + +msgid "Ukrainian" +msgstr "Bahasa Ukraine" + +msgid "Urdu" +msgstr "Bahasa Urdu" + +msgid "Uzbek" +msgstr "Bahasa Uzbekistan" + +msgid "Vietnamese" +msgstr "Bahasa Vietnam" + +msgid "Simplified Chinese" +msgstr "Bahasa Cina (Dipermudahkan)" + +msgid "Traditional Chinese" +msgstr "Bahasa Cina Tradisional" + +msgid "Messages" +msgstr "Mesej" + +msgid "Site Maps" +msgstr "Peta Laman" + +msgid "Static Files" +msgstr "Fail Statik" + +msgid "Syndication" +msgstr "Sindikasi" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Nombor ruangan itu bukanlah integer" + +msgid "That page number is less than 1" +msgstr "Nombor ruangan itu kurang daripada 1" + +msgid "That page contains no results" +msgstr "Ruangan itu tiada keputusan" + +msgid "Enter a valid value." +msgstr "Masukkan nilai yang sah." + +msgid "Enter a valid URL." +msgstr "Masukkan URL yang sah." + +msgid "Enter a valid integer." +msgstr "Masukkan integer yang sah." + +msgid "Enter a valid email address." +msgstr "Masukkan alamat emel yang sah." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Masukkan \"slug\" yang sah yang mengandungi huruf, nombor, garisan atau " +"tanda sempang." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Masukkan \"slug\" yang sah yang mengandungi huruf Unicode, nombor, garisan, " +"atau tanda sempang." + +msgid "Enter a valid IPv4 address." +msgstr "Masukkan alamat IPv4 yang sah." + +msgid "Enter a valid IPv6 address." +msgstr "Masukkan alamat IPv6 yang sah." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Masukkan alamat IPv4 atau IPv6 yang sah." + +msgid "Enter only digits separated by commas." +msgstr "Hanya masukkan digit yang dipisahkan oleh koma." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Pastikan nilai ini adalah %(limit_value)s (ia adalah %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Pastikan nilai ini kurang daripada atau sama dengan %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Pastikan nilai ini lebih daripada atau sama dengan %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Pastikan nilai ini mempunyai sekurang-kurangnya %(limit_value)d karater (ia " +"mempunyai %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Pastikan nilai ini mempunyai sepalingnya %(limit_value)d karakter (ia " +"mempunyai %(show_value)d)." + +msgid "Enter a number." +msgstr "Masukkan nombor." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Pastikan jumlah tidak melebihi %(max)s digit." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Pastikan titik perpuluhan tidak melebihi %(max)s." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Pastikan jumlah digit tidak melebihi %(max)s sebelum titik perpuluhan." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Sambungan fail \"%(extension)s\" tidak dibenarkan. Sambungan yang dibenarkan " +"adalah: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Karakter Null tidak dibenarkan." + +msgid "and" +msgstr "dan" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s dengan %(field_labels)s ini sudah wujud." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Nilai %(value)r bukan pilihan yang sah." + +msgid "This field cannot be null." +msgstr "Medan ini tidak boleh null." + +msgid "This field cannot be blank." +msgstr "Medan ini tidak boleh dibiarkan kosong." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s dengan %(field_label)s ini sudah wujud." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "%(field_label)s mesti unik untuk %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Jenis medan: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Nilai \"%(value)s\" mesti samada True atau False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Nilai \"%(value)s\" mesti samada True, False, atau None." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Samada True atau False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (sehingga %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Integer dipisahkan dengan koma" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Nilai \"%(value)s\" mempunyai format tarikh yang tidak sah. Format harus " +"berbentuk YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Nilai \"%(value)s\" mempunyai format yang betul (YYYY-MM-DD) tetapi ia " +"adalah tarikh yang tidak sah." + +msgid "Date (without time)" +msgstr "Tarikh (tanpa masa)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Nilai \"%(value)s\" mempunyai format yang tidak sah. Format harus berbentuk " +"YYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Nilai \"%(value)s\" mempunyai format yang betul (YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ]) tetapi ia adalah tarikh/masa yang tidak sah." + +msgid "Date (with time)" +msgstr "Tarikh (dengan masa)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Nilai \"%(value)s\" mesti dalam bentuk nombor titik perpuluhan." + +msgid "Decimal number" +msgstr "Nombor titik perpuluhan" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Nilai \"%(value)s\" mempunyai format yang tidak sah. Format harus berbentuk " +"[DD] [[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Jangka-masa" + +msgid "Email address" +msgstr "Alama emel" + +msgid "File path" +msgstr "Laluan fail" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Nilai \"%(value)s\" mesti dalam bentuk titik terapung." + +msgid "Floating point number" +msgstr "Nombor titik terapung" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Nilai \"%(value)s\" mesti dalam bentuk integer." + +msgid "Integer" +msgstr "Integer" + +msgid "Big (8 byte) integer" +msgstr "Integer besar (8 bait)" + +msgid "Small integer" +msgstr "Integer kecil" + +msgid "IPv4 address" +msgstr "Alamat IPv4" + +msgid "IP address" +msgstr "Alamat IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Nilai \"%(value)s\" mesti samada None, True, atau False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (samada True, False, None)" + +msgid "Positive big integer" +msgstr "Integer besar positif" + +msgid "Positive integer" +msgstr "Integer positif" + +msgid "Positive small integer" +msgstr "Integer kecil positif" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (sehingga %(max_length)s)" + +msgid "Text" +msgstr "Teks" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Nilai \"%(value)s\" mempunyai format yang tidak sah. Format harus berbentuk " +"HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Nilai \"%(value)s\" mempunyai format yang betul (HH:MM[:ss[.uuuuuu]]) tetapi " +"ia mempunyai masa yang tidak sah." + +msgid "Time" +msgstr "Masa" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Data binari mentah" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "UUID \"%(value)s\" tidak sah." + +msgid "Universally unique identifier" +msgstr "Pengecam unik universal" + +msgid "File" +msgstr "Fail" + +msgid "Image" +msgstr "Imej" + +msgid "A JSON object" +msgstr "Objek JSON" + +msgid "Value must be valid JSON." +msgstr "Nilai harus dalam bentuk JSON yang sah." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s dengan %(field)s %(value)r tidak wujud." + +msgid "Foreign Key (type determined by related field)" +msgstr "Kunci Asing (jenis ditentukan oleh medan yang berkaitan)" + +msgid "One-to-one relationship" +msgstr "Hubungan satu-ke-satu" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Hubungan %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Hubungan %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Hubungan banyak-ke-banyak" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Medan ini diperlukan." + +msgid "Enter a whole number." +msgstr "Masukkan nombor bulat." + +msgid "Enter a valid date." +msgstr "Masukkan tarikh yang sah." + +msgid "Enter a valid time." +msgstr "Masukkan masa yang sah." + +msgid "Enter a valid date/time." +msgstr "Masukkan tarikh/masa yang sah." + +msgid "Enter a valid duration." +msgstr "Masukkan jangka-masa yang sah." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Jumlah hari mesti diantara {min_days} ke {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Tiada fail yang dihantar. Periksa jenis encoding pada borang." + +msgid "No file was submitted." +msgstr "Tiada fail yang dihantar." + +msgid "The submitted file is empty." +msgstr "Fail yang dihantar kosong." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Pastikan nama fial ini tidak melebihi %(max)d karakter (ia mempunyai " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Sila hantar fail atau tandakan pada kotak, bukan kedua-duanya sekali. " + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Muatnaik imej yang sah. Fail yang anda muatnaik samada bukan imej atau imej " +"yang rosak." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Pilih pilihan yang sah. %(value)s bukan pilihan yang tersedia." + +msgid "Enter a list of values." +msgstr "Masukkan senarai nilai." + +msgid "Enter a complete value." +msgstr "Masukkan nilai yang lengkap." + +msgid "Enter a valid UUID." +msgstr "Masukkan UUID yang sah." + +msgid "Enter a valid JSON." +msgstr "Masukkan JSON yang sah." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "%(error)s (Medan tersorok %(name)s)" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Data ManagementForm tidak dijumpai atau telah diusik. Medan yang hilang: " +"%(field_names)s. Anda mungkin perlu menghantar laporan pepijat sekiranya " +"masalah masih berterusan." + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "Sila hantar tidak lebih dari %d borang." + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "Sila hantar sekurang-kurangnya %d borang." + +msgid "Order" +msgstr "Susunan" + +msgid "Delete" +msgstr "Padam" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Sila betulkan data duplikasi bagi %(field)s" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Sila betulkan data duplikasi bagi %(field)s, yang mana mestilah unik." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Sila betulkan data duplikasi bagi %(field_name)s yang mana mestilah unik " +"untuk %(lookup)s didalam %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Sila betulkan nilai-nilai duplikasi dibawah." + +msgid "The inline value did not match the parent instance." +msgstr "Nilai didalam barisan tidak sepadan dengan parent instance." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Pilih pilihan yang sah. Pilihan itu tidak ada didalam senarai pilihan." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" bukan nilai yang sah." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s tidak dapat diterjemahkan ke dalam zon masa " +"%(current_timezone)s; ia mungkin samar-samar atau tidak wujud." + +msgid "Clear" +msgstr "Kosongkan" + +msgid "Currently" +msgstr "Kini" + +msgid "Change" +msgstr "Tukar" + +msgid "Unknown" +msgstr "Tidak diketahui" + +msgid "Yes" +msgstr "Ya" + +msgid "No" +msgstr "Tidak" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ya,tidak,mungkin" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bait" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "malam" + +msgid "a.m." +msgstr "pagi" + +msgid "PM" +msgstr "MALAM" + +msgid "AM" +msgstr "PAGI" + +msgid "midnight" +msgstr "tengah malam" + +msgid "noon" +msgstr "tengahari" + +msgid "Monday" +msgstr "Isnin" + +msgid "Tuesday" +msgstr "Selasa" + +msgid "Wednesday" +msgstr "Rabu" + +msgid "Thursday" +msgstr "Khamis" + +msgid "Friday" +msgstr "Jumaat" + +msgid "Saturday" +msgstr "Sabtu" + +msgid "Sunday" +msgstr "Ahad" + +msgid "Mon" +msgstr "Isn" + +msgid "Tue" +msgstr "Sel" + +msgid "Wed" +msgstr "Rab" + +msgid "Thu" +msgstr "Kha" + +msgid "Fri" +msgstr "Jum" + +msgid "Sat" +msgstr "Sab" + +msgid "Sun" +msgstr "Aha" + +msgid "January" +msgstr "Januari" + +msgid "February" +msgstr "Februari" + +msgid "March" +msgstr "Mac" + +msgid "April" +msgstr "April" + +msgid "May" +msgstr "Mei" + +msgid "June" +msgstr "Jun" + +msgid "July" +msgstr "Julai" + +msgid "August" +msgstr "Ogos" + +msgid "September" +msgstr "September" + +msgid "October" +msgstr "Oktober" + +msgid "November" +msgstr "November" + +msgid "December" +msgstr "Disember" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mei" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ogo" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dis" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb" + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mac" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mei" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Jun" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julai" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ogo." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dis." + +msgctxt "alt. month" +msgid "January" +msgstr "Januari" + +msgctxt "alt. month" +msgid "February" +msgstr "Februari" + +msgctxt "alt. month" +msgid "March" +msgstr "Mac" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Mei" + +msgctxt "alt. month" +msgid "June" +msgstr "Jun" + +msgctxt "alt. month" +msgid "July" +msgstr "Julai" + +msgctxt "alt. month" +msgid "August" +msgstr "Ogos" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "Disember" + +msgid "This is not a valid IPv6 address." +msgstr "Alamat IPv6 ini tidak sah." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s ..." + +msgid "or" +msgstr "atau" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d tahun" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d bulan" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d minggu " + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d hari" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d jam" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minit" + +msgid "Forbidden" +msgstr "Dilarang" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verifikasi VSRF gagal. Permintaan dihentikan." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Anda melihat mesej ini kerana laman HTTPS ini memerlukan \"Referer header\" " +"dihantar ke pelayar sesawang anda, tetapi ia tidak dihantar. Header ini " +"diperlukan bagi tujuan keselamatan, agar dapat memastikan pelayar anda tidak " +"dirampas oleh pihak ketiga." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Sekiranya anda telah menetapkan pelayar anda untuk mematikan header \"Referer" +"\", sila hidupkannya semula, sekurang-kurangya bagi laman ini, atau bagi " +"sambungan HTTPS, atau bagi permintaan \"same-origin\"." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Sekiranya anda menggunakan tag atau memasukkan header \"Referer-Policy: no-referrer\", sila buangkan " +"ia. Perlindungan CSRF memerlukan header \"Referer\" untuk melakukan " +"penyemakan referer yang ketat. Sekiranya anda risau tentang privasi anda, " +"gunakan alternatif seperti bagi pautan laman pihak " +"ketiga." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Anda melihat mesej ini kerana laman ini memerlukan cookie CSRF apabila " +"menghantar borang. Cookie ini diperlukan bagi tujuan keselamatan, bagi " +"memastikan pelayar anda tidak dirampas oleh pihak ketiga." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Sekiranya anda telah menetapkan pelayar anda untuk tidak menerima cookie, " +"sila hidupkannya semula, sekurang-kurangnya bagi laman ini, atau bagi " +"permintaan \"same-origin\"." + +msgid "More information is available with DEBUG=True." +msgstr "Maklumat lanjut boleh didapati dengan menetapkan DEBUG=True." + +msgid "No year specified" +msgstr "Tiada tahun diberikan" + +msgid "Date out of range" +msgstr "Tarikh diluar julat" + +msgid "No month specified" +msgstr "Tiada bulan diberikan" + +msgid "No day specified" +msgstr "Tiada hari diberikan" + +msgid "No week specified" +msgstr "Tiada minggu diberikan" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s tiada" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s masa depan tiada kerana %(class_name)s.allow_future " +"adalah False. " + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"\"%(datestr)s\" tarikh yang diberikan tidak sah mengikut format \"%(format)s" +"\"" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Tiada %(verbose_name)s mengikut pertanyaan yang dimasukkan" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Ruangan ini bukan \"last\", dan tidak boleh ditukar kepada int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ruangan tidak sah (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Senarai kosong dan \"%(class_name)s.allow_empty\" adalah False." + +msgid "Directory indexes are not allowed here." +msgstr "Indeks Direktori tidak dibenarkan disini." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" tidak wujud" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indeks %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Pemasangan berjaya dilakukan! Tahniah!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Lihat nota pelepasan bagi Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Anda melihat ruangan ini kerana DEBUG=True terdapat didalam fail tetapan anda dan anda tidak " +"menetapkan sebarang URL." + +msgid "Django Documentation" +msgstr "Dokumentasi Django" + +msgid "Topics, references, & how-to’s" +msgstr "Topik, rujukan, & bagaimana-cara" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: App Soal-Selidik" + +msgid "Get started with Django" +msgstr "Mulakan dengan Django" + +msgid "Django Community" +msgstr "Komuniti Django" + +msgid "Connect, get help, or contribute" +msgstr "Sambung, minta bantuan, atau sumbang" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ms/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ms/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ms/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..953119ea528c2ffe013556cc976f07d016cd3948 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ms/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..116711fc7e76d8f68de1c7ea8ac4184c80ff454a GIT binary patch literal 823 zcmZXQO>f#j5Qe?jfPs*NsO_OAU-p0m_>QWoCfLDh{2_m+^2(Csum*+NIKrTa{Uts3 z*1yEHr(Aoga_ZUvVwzof=AFm;&a9ob+f9b9AAjBXpDM%r&WrM@(BcbyvOHi0F&H3# zE2x55#9|I{xQeQ{hHAKu>T?G3KLO%tZqVGoP1M9K)WT=z47Y8jdrqngK@+?kFbQ9% zo?sGI5j?^!1cg+wn1~*!7fCRm=uD zbcCZEb{nK~=p?|&5NbnclXq{>0M5wyDW%5!;Ii?5^kO`rN8|Rb@fDSgd%6RIXV80M z=^xO$ZPXe|jvOe4rAZEIIjVLnF7h{J(D7u+3N%A^CI`diOEs3f1L@ck!*YUh*Y~gJ zq@AK#c7DNmfbRgHdn5uT^lL*LD!RpviN@jCU#>2#As%XQ|@qih|f!7ALu zC;ImO&d=`GQU4*Feh=v>A1}h?JQb(uawf*juL$;4T@O2TzEc-ZdvPf3b5ar7C` Vx!Fe=IF1A5&2xN%YjJ=F{{Xbx()IuV literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ms/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ms/formats.py new file mode 100644 index 0000000..d06719f --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ms/formats.py @@ -0,0 +1,38 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j M Y" # '25 Oct 2006' +TIME_FORMAT = "P" # '2:30 p.m.' +DATETIME_FORMAT = "j M Y, P" # '25 Oct 2006, 2:30 p.m.' +YEAR_MONTH_FORMAT = "F Y" # 'October 2006' +MONTH_DAY_FORMAT = "j F" # '25 October' +SHORT_DATE_FORMAT = "d/m/Y" # '25/10/2006' +SHORT_DATETIME_FORMAT = "d/m/Y P" # '25/10/2006 2:30 p.m.' +FIRST_DAY_OF_WEEK = 0 # Sunday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%Y-%m-%d", # '2006-10-25' + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + "%d %b %Y", # '25 Oct 2006' + "%d %b, %Y", # '25 Oct, 2006' + "%d %B %Y", # '25 October 2006' + "%d %B, %Y", # '25 October, 2006' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' + "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' + "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' + "%d/%m/%y %H:%M", # '25/10/06 14:30' +] +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/my/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..06d9129bcc8b45d333bd0009ff74cbe133b0108d GIT binary patch literal 2589 zcmZ{jPi$009LGmR!1W)3fAIektpet?Tak#{V8TL68d%xXErgqo?sWU;?tAsUS4ugU zhrx?_Fe<2sHk{O05H5mPd+?wKJQ)reBFRfkID67?^7ETF+fpo(o%y_(`ThCMZ)UHo zTyj*=*3%!OH*Zm@2hQBeK>O;peEn;9JM*6{f3^J0@^{NCP+b3lcfhM~Df}BQga2Bp zB}(1Pd^r@m)ll}=K*_TnieJ(4C3rXUSD@JKg#1*ELG1QI@p~N>;4r)kzG2tjgyMGu ziv4>~bbe^}kJ@}T8$_yp@SmY1QN;~HEImmyB-=D-JF5lXy1xB-qr@t?B$vrzmmLGjP* z`ZXwbz5=n2!X7Ab_rR5~0p(r}!RO!+ScKDd{ZA-)u39d|So}Mn=-LRye}`QkwA4`c z$1UHr>nEY;JZm{?*DpfRciHkE$WN`}k}0QJMSq+wxur?$hv=eB-t)tBc{g$MD0FZA}g{I*d|F(RC+X+LQFB>5s_7HmR@F?jHJsc1^H? zE^kWC+iv&s!P79UgOReDbIKceR#rRK#{MC_uI}ucO!UH8tU6+6ds)UEW~`X8YQ|bw zZKROSZ_sE$RUU6PyhwJodWqK* z9@0Z2YMU3x_BP$r$mnf(e$(;l^+?CDYWw#2O|7=;sD;<|Nb6D6U!61RuO4`De$w(9 zTJ;BsZsWM+7?qp> zujNOfQwbxlsblto#yE#_Yuam-obq_o(y?~djwH!gsjF*ZVxlt>LVPUAe3_ zD7bO&YE5>nD^&U`z4Hg??kpCzhSV%T!Q>bc6ROiS*7W?K#~B*&qF5)J2Wx%qrg=Nb zHLN4IHy8@*e$Xg6oA&w1oXnEbnk-bCe zF^-xT@0-Mn1Ym;{pDnU&1b>vrS6O<}m>e^z`1 zYa&pHbM1o@f#k>MLVcX2Gv=_UBF7h|V6!H79`gHkNOtGboiVF~CnGu*ghVGlk`fXr zR`X#KSvHXNfk`GiCIThJRyN3hHdZ+`H)qW$1Q|$$VV;w?7%^H^=6KTt!1SiNiHSLn zLoBf60?EPaAgoo%6301}2bwoF!jQ0d!vEV*)zjHw(k$Y@5x+wPDbj^iU}Gjr-!YdZ z@+b+a=1xN>q_RQ<&asW?DRUZII_BIPCWIx9dGscnxM0u2Cj(mTQJG`Ig, 2013,2015 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Burmese (http://www.transifex.com/django/django/language/" +"my/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: my\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "အာဖရိကန်" + +msgid "Arabic" +msgstr "အာရပ်" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "" + +msgid "Bulgarian" +msgstr "ဘူဂေးရီယန်" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "ဘင်းဂလီ" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "ဘော့်စ်နီယန်" + +msgid "Catalan" +msgstr "ကက်တလန်" + +msgid "Czech" +msgstr "ချက်" + +msgid "Welsh" +msgstr "ဝေးလ်" + +msgid "Danish" +msgstr "ဒိန်းမတ်" + +msgid "German" +msgstr "ဂျာမန်" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "ဂရိ" + +msgid "English" +msgstr "အင်္ဂလိပ်" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "ဗြိတိသျှအင်္ဂလိပ်" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "စပိန်" + +msgid "Argentinian Spanish" +msgstr "" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "" + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "" + +msgid "Basque" +msgstr "" + +msgid "Persian" +msgstr "" + +msgid "Finnish" +msgstr "" + +msgid "French" +msgstr "" + +msgid "Frisian" +msgstr "" + +msgid "Irish" +msgstr "" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "" + +msgid "Hebrew" +msgstr "" + +msgid "Hindi" +msgstr "" + +msgid "Croatian" +msgstr "" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "" + +msgid "Italian" +msgstr "" + +msgid "Japanese" +msgstr "" + +msgid "Georgian" +msgstr "" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "" + +msgid "Kannada" +msgstr "" + +msgid "Korean" +msgstr "" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "" + +msgid "Latvian" +msgstr "" + +msgid "Macedonian" +msgstr "" + +msgid "Malayalam" +msgstr "" + +msgid "Mongolian" +msgstr "" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "" + +msgid "Norwegian Nynorsk" +msgstr "" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "" + +msgid "Polish" +msgstr "" + +msgid "Portuguese" +msgstr "" + +msgid "Brazilian Portuguese" +msgstr "" + +msgid "Romanian" +msgstr "" + +msgid "Russian" +msgstr "" + +msgid "Slovak" +msgstr "" + +msgid "Slovenian" +msgstr "" + +msgid "Albanian" +msgstr "" + +msgid "Serbian" +msgstr "" + +msgid "Serbian Latin" +msgstr "" + +msgid "Swedish" +msgstr "" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "" + +msgid "Telugu" +msgstr "" + +msgid "Thai" +msgstr "" + +msgid "Turkish" +msgstr "" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "" + +msgid "Urdu" +msgstr "" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "" + +msgid "Simplified Chinese" +msgstr "" + +msgid "Traditional Chinese" +msgstr "" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "" + +msgid "Enter a valid URL." +msgstr "" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "" + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +msgid "Enter a number." +msgstr "" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "နှင့်" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "" + +msgid "This field cannot be blank." +msgstr "" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "အီးမေးလ်လိပ်စာ" + +msgid "File path" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "ကိန်းပြည့်" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "IPv4 address" +msgstr "အိုင်ပီဗီ၄လိပ်စာ" + +msgid "IP address" +msgstr "အိုင်ပီလိပ်စာ" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "စာသား" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "" + +msgid "URL" +msgstr "ယူအာအယ်" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "ဖိုင်" + +msgid "Image" +msgstr "ပံု" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "" + +msgid "Enter a whole number." +msgstr "" + +msgid "Enter a valid date." +msgstr "" + +msgid "Enter a valid time." +msgstr "" + +msgid "Enter a valid date/time." +msgstr "" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +msgid "No file was submitted." +msgstr "" + +msgid "The submitted file is empty." +msgstr "" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" + +msgid "Order" +msgstr "မှာကြား" + +msgid "Delete" +msgstr "ပယ်ဖျက်" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "" + +msgid "Currently" +msgstr "" + +msgid "Change" +msgstr "" + +msgid "Unknown" +msgstr "အမည်မသိ" + +msgid "Yes" +msgstr "ဟုတ်" + +msgid "No" +msgstr "မဟုတ်" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d ဘိုက်များ" + +#, python-format +msgid "%s KB" +msgstr "%s ကီလိုဘိုက်" + +#, python-format +msgid "%s MB" +msgstr "%s မက်ဂါဘိုက်" + +#, python-format +msgid "%s GB" +msgstr "%s ဂစ်ဂါဘိုက်" + +#, python-format +msgid "%s TB" +msgstr "%s တီရာဘိုက်" + +#, python-format +msgid "%s PB" +msgstr "%s ပီတာဘိုက်" + +msgid "p.m." +msgstr "ညနေ" + +msgid "a.m." +msgstr "မနက်" + +msgid "PM" +msgstr "ညနေ" + +msgid "AM" +msgstr "မနက်" + +msgid "midnight" +msgstr "သန်းခေါင်" + +msgid "noon" +msgstr "မွန်းတည့်" + +msgid "Monday" +msgstr "တနင်္လာနေ့" + +msgid "Tuesday" +msgstr "" + +msgid "Wednesday" +msgstr "" + +msgid "Thursday" +msgstr "" + +msgid "Friday" +msgstr "" + +msgid "Saturday" +msgstr "" + +msgid "Sunday" +msgstr "" + +msgid "Mon" +msgstr "" + +msgid "Tue" +msgstr "" + +msgid "Wed" +msgstr "" + +msgid "Thu" +msgstr "" + +msgid "Fri" +msgstr "" + +msgid "Sat" +msgstr "" + +msgid "Sun" +msgstr "" + +msgid "January" +msgstr "" + +msgid "February" +msgstr "" + +msgid "March" +msgstr "" + +msgid "April" +msgstr "" + +msgid "May" +msgstr "" + +msgid "June" +msgstr "" + +msgid "July" +msgstr "" + +msgid "August" +msgstr "" + +msgid "September" +msgstr "" + +msgid "October" +msgstr "" + +msgid "November" +msgstr "" + +msgid "December" +msgstr "" + +msgid "jan" +msgstr "" + +msgid "feb" +msgstr "" + +msgid "mar" +msgstr "" + +msgid "apr" +msgstr "" + +msgid "may" +msgstr "" + +msgid "jun" +msgstr "" + +msgid "jul" +msgstr "" + +msgid "aug" +msgstr "" + +msgid "sep" +msgstr "" + +msgid "oct" +msgstr "" + +msgid "nov" +msgstr "" + +msgid "dec" +msgstr "" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +msgctxt "abbrev. month" +msgid "March" +msgstr "" + +msgctxt "abbrev. month" +msgid "April" +msgstr "" + +msgctxt "abbrev. month" +msgid "May" +msgstr "" + +msgctxt "abbrev. month" +msgid "June" +msgstr "" + +msgctxt "abbrev. month" +msgid "July" +msgstr "" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +msgctxt "alt. month" +msgid "January" +msgstr "" + +msgctxt "alt. month" +msgid "February" +msgstr "" + +msgctxt "alt. month" +msgid "March" +msgstr "" + +msgctxt "alt. month" +msgid "April" +msgstr "" + +msgctxt "alt. month" +msgid "May" +msgstr "" + +msgctxt "alt. month" +msgid "June" +msgstr "" + +msgctxt "alt. month" +msgid "July" +msgstr "" + +msgctxt "alt. month" +msgid "August" +msgstr "" + +msgctxt "alt. month" +msgid "September" +msgstr "" + +msgctxt "alt. month" +msgid "October" +msgstr "" + +msgctxt "alt. month" +msgid "November" +msgstr "" + +msgctxt "alt. month" +msgid "December" +msgstr "" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "" + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..c4ebbae42c7f6ba51d9f54e0083fd518573a42b0 GIT binary patch literal 27007 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 QOp6`f8M!5~?WOkr0A&+3yZ`_I literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po new file mode 100644 index 0000000..cb2932b --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po @@ -0,0 +1,1324 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Alexander Hansen , 2014 +# Eirik Krogstad , 2014 +# Jannis Leidel , 2011 +# jensadne , 2014-2015 +# Jon, 2015-2016 +# Jon, 2014 +# Jon, 2017-2022 +# Jon, 2013 +# Jon, 2011 +# Sigurd Gartmann , 2012 +# Tommy Strand , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-17 02:13-0600\n" +"PO-Revision-Date: 2023-04-25 06:49+0000\n" +"Last-Translator: Jon, 2017-2022\n" +"Language-Team: Norwegian Bokmål (http://www.transifex.com/django/django/" +"language/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabisk" + +msgid "Algerian Arabic" +msgstr "Algerisk arabisk" + +msgid "Asturian" +msgstr "Asturiansk" + +msgid "Azerbaijani" +msgstr "Aserbajdsjansk" + +msgid "Bulgarian" +msgstr "Bulgarsk" + +msgid "Belarusian" +msgstr "Hviterussisk" + +msgid "Bengali" +msgstr "Bengalsk" + +msgid "Breton" +msgstr "Bretonsk" + +msgid "Bosnian" +msgstr "Bosnisk" + +msgid "Catalan" +msgstr "Katalansk" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "Tsjekkisk" + +msgid "Welsh" +msgstr "Walisisk" + +msgid "Danish" +msgstr "Dansk" + +msgid "German" +msgstr "Tysk" + +msgid "Lower Sorbian" +msgstr "Lavsorbisk" + +msgid "Greek" +msgstr "Gresk" + +msgid "English" +msgstr "Engelsk" + +msgid "Australian English" +msgstr "Engelsk (australsk)" + +msgid "British English" +msgstr "Engelsk (britisk)" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spansk" + +msgid "Argentinian Spanish" +msgstr "Argentinsk spansk" + +msgid "Colombian Spanish" +msgstr "Colombiansk spansk" + +msgid "Mexican Spanish" +msgstr "Meksikansk spansk" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguansk spansk" + +msgid "Venezuelan Spanish" +msgstr "Venezuelanske spansk" + +msgid "Estonian" +msgstr "Estisk" + +msgid "Basque" +msgstr "Baskisk" + +msgid "Persian" +msgstr "Persisk" + +msgid "Finnish" +msgstr "Finsk" + +msgid "French" +msgstr "Fransk" + +msgid "Frisian" +msgstr "Frisisk" + +msgid "Irish" +msgstr "Irsk" + +msgid "Scottish Gaelic" +msgstr "Skotsk-gælisk" + +msgid "Galician" +msgstr "Galisisk" + +msgid "Hebrew" +msgstr "Hebraisk" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroatisk" + +msgid "Upper Sorbian" +msgstr "Høysorbisk" + +msgid "Hungarian" +msgstr "Ungarsk" + +msgid "Armenian" +msgstr "Armensk" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesisk" + +msgid "Igbo" +msgstr "Ibo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandsk" + +msgid "Italian" +msgstr "Italiensk" + +msgid "Japanese" +msgstr "Japansk" + +msgid "Georgian" +msgstr "Georgisk" + +msgid "Kabyle" +msgstr "Kabylsk" + +msgid "Kazakh" +msgstr "Kasakhisk" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreansk" + +msgid "Kyrgyz" +msgstr "Kirgisisk" + +msgid "Luxembourgish" +msgstr "Luxembourgsk" + +msgid "Lithuanian" +msgstr "Litauisk" + +msgid "Latvian" +msgstr "Latvisk" + +msgid "Macedonian" +msgstr "Makedonsk" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolsk" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malayisk" + +msgid "Burmese" +msgstr "Burmesisk" + +msgid "Norwegian Bokmål" +msgstr "Norsk (bokmål)" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Nederlandsk" + +msgid "Norwegian Nynorsk" +msgstr "Norsk (nynorsk)" + +msgid "Ossetic" +msgstr "Ossetisk" + +msgid "Punjabi" +msgstr "Panjabi" + +msgid "Polish" +msgstr "Polsk" + +msgid "Portuguese" +msgstr "Portugisisk" + +msgid "Brazilian Portuguese" +msgstr "Brasiliansk portugisisk" + +msgid "Romanian" +msgstr "Rumensk" + +msgid "Russian" +msgstr "Russisk" + +msgid "Slovak" +msgstr "Slovakisk" + +msgid "Slovenian" +msgstr "Slovensk" + +msgid "Albanian" +msgstr "Albansk" + +msgid "Serbian" +msgstr "Serbisk" + +msgid "Serbian Latin" +msgstr "Serbisk latin" + +msgid "Swedish" +msgstr "Svensk" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tadsjikisk" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "Turkmensk" + +msgid "Turkish" +msgstr "Tyrkisk" + +msgid "Tatar" +msgstr "Tatarisk" + +msgid "Udmurt" +msgstr "Udmurtisk" + +msgid "Ukrainian" +msgstr "Ukrainsk" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Usbekisk" + +msgid "Vietnamese" +msgstr "Vietnamesisk" + +msgid "Simplified Chinese" +msgstr "Forenklet kinesisk" + +msgid "Traditional Chinese" +msgstr "Tradisjonell kinesisk" + +msgid "Messages" +msgstr "Meldinger" + +msgid "Site Maps" +msgstr "Sidekart" + +msgid "Static Files" +msgstr "Statiske filer" + +msgid "Syndication" +msgstr "Syndikering" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Sidenummeret er ikke et heltall" + +msgid "That page number is less than 1" +msgstr "Sidenummeret er mindre enn 1" + +msgid "That page contains no results" +msgstr "Siden inneholder ingen resultater" + +msgid "Enter a valid value." +msgstr "Oppgi en gyldig verdi." + +msgid "Enter a valid URL." +msgstr "Oppgi en gyldig nettadresse." + +msgid "Enter a valid integer." +msgstr "Skriv inn et gyldig heltall." + +msgid "Enter a valid email address." +msgstr "Oppgi en gyldig e-postadresse" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Oppgi en gyldig \"slug\" bestående av bokstaver, nummer, understreker eller " +"bindestreker." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Oppgi en gyldig \"slug\" bestående av Unicode-bokstaver, nummer, " +"understreker eller bindestreker." + +msgid "Enter a valid IPv4 address." +msgstr "Oppgi en gyldig IPv4-adresse." + +msgid "Enter a valid IPv6 address." +msgstr "Oppgi en gyldig IPv6-adresse." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Oppgi en gyldig IPv4- eller IPv6-adresse." + +msgid "Enter only digits separated by commas." +msgstr "Oppgi kun tall adskilt med komma." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Verdien må være %(limit_value)s (den er %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Verdien må være mindre enn eller lik %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Verdien må være større enn eller lik %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Verdien må være et multiplum av trinnstørrelse %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Sørg for denne verdien har minst %(limit_value)d tegn (den har " +"%(show_value)d)." +msgstr[1] "" +"Sørg for at denne verdien har minst %(limit_value)d tegn (den har " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Sørg for denne verdien har %(limit_value)d tegn (den har nå %(show_value)d)." +msgstr[1] "" +"Sørg for at denne verdien har %(limit_value)d eller færre tegn (den har nå " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Oppgi et tall." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Sørg for at det er kun %(max)s tall." +msgstr[1] "Sørg for at det er %(max)s eller færre tall totalt." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Sørg for at det er kun %(max)s desimal." +msgstr[1] "Sørg for at det er %(max)s eller færre desimaler." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Sørg for at det kun %(max)s tall før desimalpunkt." +msgstr[1] "Sørg for at det er %(max)s eller færre tall før desimalpunkt." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Filendelsen \"%(extension)s\" er ikke tillatt. Tillatte filendelser er: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null-tegn er ikke tillatt." + +msgid "and" +msgstr "og" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s med denne %(field_labels)s finnes allerede." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Begrensning \"%(name)s\" er brutt." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Verdien %(value)r er ikke et gyldig valg." + +msgid "This field cannot be null." +msgstr "Feltet kan ikke være tomt." + +msgid "This field cannot be blank." +msgstr "Feltet kan ikke være blankt." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s med %(field_label)s finnes allerede." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "%(field_label)s må være unik for %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Felt av typen: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "\"%(value)s\"-verdien må være enten True eller False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "\"%(value)s\"-verdien må være enten True, False, eller None." + +msgid "Boolean (Either True or False)" +msgstr "Boolsk (True eller False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Tekst (opp til %(max_length)s tegn)" + +msgid "String (unlimited)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "Heltall adskilt med komma" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"\"%(value)s\"-verdien har et ugyldig datoformat. Det må være på formen YYYY-" +"MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"\"%(value)s\"-verdien er på den korrekte formen (YYYY-MM-DD), men det er en " +"ugyldig dato." + +msgid "Date (without time)" +msgstr "Dato (uten tid)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"\"%(value)s\"-verdien har et ugyldig datoformat. Det må være på formen YYYY-" +"MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"\"%(value)s\"-verdien er på den korrekte formen (YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ]), men er ugyldig dato/tid." + +msgid "Date (with time)" +msgstr "Dato (med tid)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "\"%(value)s\"-verdien må være et desimaltall." + +msgid "Decimal number" +msgstr "Desimaltall" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"\"%(value)s\"-verdien har et ugyldig format. Det må være på formen [DD] [HH:" +"[MM:]]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Varighet" + +msgid "Email address" +msgstr "E-postadresse" + +msgid "File path" +msgstr "Filsti" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Verdien \"%(value)s\" må være et flyttall." + +msgid "Floating point number" +msgstr "Flyttall" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "\"%(value)s\"-verdien må være et heltall." + +msgid "Integer" +msgstr "Heltall" + +msgid "Big (8 byte) integer" +msgstr "Stort (8 byte) heltall" + +msgid "Small integer" +msgstr "Lite heltall" + +msgid "IPv4 address" +msgstr "IPv4-adresse" + +msgid "IP address" +msgstr "IP-adresse" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Verdien \"%(value)s\" må være enten None, True eller False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolsk (True, False eller None)" + +msgid "Positive big integer" +msgstr "Positivt stort heltall" + +msgid "Positive integer" +msgstr "Positivt heltall" + +msgid "Positive small integer" +msgstr "Positivt lite heltall" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (opp til %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"\"%(value)s\"-verdien har et ugyldig format. Det må være på formen HH:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Verdien \"%(value)s\" har riktig format (HH:MM[:ss[.uuuuuu]]), men er ikke " +"et gyldig klokkeslett." + +msgid "Time" +msgstr "Tid" + +msgid "URL" +msgstr "Nettadresse" + +msgid "Raw binary data" +msgstr "Rå binærdata" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" er ikke en gyldig UUID." + +msgid "Universally unique identifier" +msgstr "Universelt unik identifikator" + +msgid "File" +msgstr "Fil" + +msgid "Image" +msgstr "Bilde" + +msgid "A JSON object" +msgstr "Et JSON-objekt" + +msgid "Value must be valid JSON." +msgstr "Verdi må være gyldig JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s-instansen med %(field)s %(value)r finnes ikke." + +msgid "Foreign Key (type determined by related field)" +msgstr "Fremmednøkkel (type bestemmes av relatert felt)" + +msgid "One-to-one relationship" +msgstr "En-til-en-relasjon" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s-relasjon" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s-relasjoner" + +msgid "Many-to-many relationship" +msgstr "Mange-til-mange-relasjon" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Feltet er påkrevet." + +msgid "Enter a whole number." +msgstr "Oppgi et heltall." + +msgid "Enter a valid date." +msgstr "Oppgi en gyldig dato." + +msgid "Enter a valid time." +msgstr "Oppgi et gyldig tidspunkt." + +msgid "Enter a valid date/time." +msgstr "Oppgi gyldig dato og tidspunkt." + +msgid "Enter a valid duration." +msgstr "Oppgi en gyldig varighet." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Antall dager må være mellom {min_days} og {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ingen fil ble sendt. Sjekk «encoding»-typen på skjemaet." + +msgid "No file was submitted." +msgstr "Ingen fil ble sendt." + +msgid "The submitted file is empty." +msgstr "Filen er tom." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "Sørg for at filnavnet har %(max)d tegn (det har nå %(length)d)." +msgstr[1] "" +"Sørg for at filnavnet har færre enn %(max)d tegn (det har nå %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Vennligst last opp en ny fil eller marker fjern-boksen, ikke begge." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Last opp et gyldig bilde. Filen du lastet opp var ødelagt eller ikke et " +"bilde." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Velg et gyldig valg. %(value)s er ikke et av de tilgjengelige valgene." + +msgid "Enter a list of values." +msgstr "Oppgi en liste med verdier." + +msgid "Enter a complete value." +msgstr "Skriv inn en fullstendig verdi." + +msgid "Enter a valid UUID." +msgstr "Oppgi en gyldig UUID." + +msgid "Enter a valid JSON." +msgstr "Oppgi gyldig JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Skjult felt %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm-data mangler eller har blitt tuklet med. Felt som mangler: " +"%(field_names)s. Du må muligens rapportere en bug hvis problemet vedvarer." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Vennligst send inn maks %(num)d skjema." +msgstr[1] "Vennligst send inn maks %(num)d skjemaer." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Vennligst send inn minst %(num)d skjema." +msgstr[1] "Vennligst send inn minst %(num)d skjemaer." + +msgid "Order" +msgstr "Rekkefølge" + +msgid "Delete" +msgstr "Slett" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Vennligst korriger dupliserte data for %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Vennligst korriger dupliserte data for %(field)s, som må være unike." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Vennligst korriger dupliserte data for %(field_name)s, som må være unike for " +"%(lookup)s i %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Vennligst korriger de dupliserte verdiene nedenfor." + +msgid "The inline value did not match the parent instance." +msgstr "Inline-verdien var ikke i samsvar med foreldre-instansen." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Velg et gyldig valg. Valget er ikke av de tilgjengelige valgene." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" er ikke en gyldig verdi." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s kunne ikke tolkes i tidssonen %(current_timezone)s, det kan " +"være tvetydig eller ikke eksistere." + +msgid "Clear" +msgstr "Fjern" + +msgid "Currently" +msgstr "Nåværende" + +msgid "Change" +msgstr "Endre" + +msgid "Unknown" +msgstr "Ukjent" + +msgid "Yes" +msgstr "Ja" + +msgid "No" +msgstr "Nei" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ja,nei,kanskje" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d byte" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "midnatt" + +msgid "noon" +msgstr "12:00" + +msgid "Monday" +msgstr "mandag" + +msgid "Tuesday" +msgstr "tirsdag" + +msgid "Wednesday" +msgstr "onsdag" + +msgid "Thursday" +msgstr "torsdag" + +msgid "Friday" +msgstr "fredag" + +msgid "Saturday" +msgstr "lørdag" + +msgid "Sunday" +msgstr "søndag" + +msgid "Mon" +msgstr "man" + +msgid "Tue" +msgstr "tir" + +msgid "Wed" +msgstr "ons" + +msgid "Thu" +msgstr "tor" + +msgid "Fri" +msgstr "fre" + +msgid "Sat" +msgstr "lør" + +msgid "Sun" +msgstr "søn" + +msgid "January" +msgstr "januar" + +msgid "February" +msgstr "februar" + +msgid "March" +msgstr "mars" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "mai" + +msgid "June" +msgstr "juni" + +msgid "July" +msgstr "juli" + +msgid "August" +msgstr "august" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "desember" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "des" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mar." + +msgctxt "abbrev. month" +msgid "April" +msgstr "apr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "mai" + +msgctxt "abbrev. month" +msgid "June" +msgstr "jun." + +msgctxt "abbrev. month" +msgid "July" +msgstr "jul." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "des." + +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +msgctxt "alt. month" +msgid "March" +msgstr "Mars" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Mai" + +msgctxt "alt. month" +msgid "June" +msgstr "Juni" + +msgctxt "alt. month" +msgid "July" +msgstr "Juli" + +msgctxt "alt. month" +msgid "August" +msgstr "August" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "Desember" + +msgid "This is not a valid IPv6 address." +msgstr "Dette er ikke en gyldig IPv6-adresse." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "eller" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d år" +msgstr[1] "%(num)d år" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d måned" +msgstr[1] "%(num)d måneder" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d uke" +msgstr[1] "%(num)d uker" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dag" +msgstr[1] "%(num)d dager" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d time" +msgstr[1] "%(num)d timer" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minutt" +msgstr[1] "%(num)d minutter" + +msgid "Forbidden" +msgstr "Forbudt" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-verifisering feilet. Forespørsel avbrutt." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Du ser denne meldingen fordi dette HTTPS-nettstedet krever en 'Referer'-" +"header til å bli sendt av nettleseren, men ingen ble sendt. Denne headeren " +"er nødvendig av sikkerhetsmessige årsaker, for å sikre at nettleseren din " +"ikke blir kapret av tredjeparter." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Hvis du har konfigurert nettleseren din til å deaktivere 'Referer'-headers, " +"kan du aktivere dem, i hvert fall for dette nettstedet, eller for HTTPS-" +"tilkoblinger, eller for 'same-origin'-forespørsler." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Hvis du bruker -taggen eller " +"inkluderer 'Referrer-Policy: no-referrer'-header, vennligst fjern dem. CSRF-" +"beskyttelsen krever 'Referer'-headeren for å utføre streng kontroll av " +"referanser. Hvis du er bekymret for personvern, bruk alternativer som for koblinger til tredjeparts nettsteder." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Du ser denne meldingen fordi denne nettsiden krever en CSRF-cookie når du " +"sender inn skjemaer. Denne informasjonskapselen er nødvendig av " +"sikkerhetsmessige årsaker, for å sikre at nettleseren din ikke blir kapret " +"av tredjeparter." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Hvis du har konfigurert nettleseren din til å deaktivere " +"informasjonskapsler, kan du aktivere dem, i hvert fall for dette nettstedet, " +"eller for 'same-origin'-forespørsler." + +msgid "More information is available with DEBUG=True." +msgstr "Mer informasjon er tilgjengelig med DEBUG=True." + +msgid "No year specified" +msgstr "År ikke spesifisert" + +msgid "Date out of range" +msgstr "Date utenfor rekkevidde" + +msgid "No month specified" +msgstr "Måned ikke spesifisert" + +msgid "No day specified" +msgstr "Dag ikke spesifisert" + +msgid "No week specified" +msgstr "Uke ikke spesifisert" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ingen %(verbose_name_plural)s tilgjengelig" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Fremtidig %(verbose_name_plural)s ikke tilgjengelig fordi %(class_name)s." +"allow_future er False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ugyldig datostreng \"%(datestr)s\" gitt formatet \"%(format)s\"" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Fant ingen %(verbose_name)s som passet spørringen" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Siden er ikke \"last\", og kan heller ikke konverteres til et heltall." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ugyldig side (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tom liste og \"%(class_name)s.allow_empty\" er False." + +msgid "Directory indexes are not allowed here." +msgstr "Mappeinnhold er ikke tillatt her." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" finnes ikke" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Innhold i %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Installasjonen var vellykket! Gratulerer!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Se produktmerknader for Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Du ser denne siden fordi DEBUG=True er i din Django-innstillingsfil og du ikke " +"har konfigurert noen URL-er." + +msgid "Django Documentation" +msgstr "Django-dokumentasjon" + +msgid "Topics, references, & how-to’s" +msgstr "Temaer, referanser & how-tos" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: en polling-app" + +msgid "Get started with Django" +msgstr "Kom i gang med Django" + +msgid "Django Community" +msgstr "Django nettsamfunn" + +msgid "Connect, get help, or contribute" +msgstr "Koble, få hjelp eller bidra" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nb/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/nb/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/nb/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47b701dd7513e2125c171cd4509f34fcdd880a26 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFoQQJjV-ps;MjrUenl?EJ80$5yBF+xIw!Io1nk-@6WlXO{i zm)FQ+blX)Ppi-1oXM77ZgE;5>-}@OA(SPc z9|603^9qSzTAtJ?Htxn%jsK&qu|^NZ^=sn`sv39nnf~yX9PPu;M+PUO-+_WGIZ7}# zEnRY;;Ar|moRUrzbUj6~0^Kwmb#FM^Dp~UOq-(3D>)-sxG()Q-{zQJK{5=jV%hJ`0=Xik? ISemE*0lKuyt^fc4 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nb/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/nb/formats.py new file mode 100644 index 0000000..0ddb8fe --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/nb/formats.py @@ -0,0 +1,41 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j. F Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# Kept ISO formats as they are in first position +DATE_INPUT_FORMATS = [ + "%Y-%m-%d", # '2006-10-25' + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' + # "%d. %b %Y", # '25. okt 2006' + # "%d %b %Y", # '25 okt 2006' + # "%d. %b. %Y", # '25. okt. 2006' + # "%d %b. %Y", # '25 okt. 2006' + # "%d. %B %Y", # '25. oktober 2006' + # "%d %B %Y", # '25 oktober 2006' +] +DATETIME_INPUT_FORMATS = [ + "%Y-%m-%d %H:%M:%S", # '2006-10-25 14:30:59' + "%Y-%m-%d %H:%M:%S.%f", # '2006-10-25 14:30:59.000200' + "%Y-%m-%d %H:%M", # '2006-10-25 14:30' + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' + "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' + "%d.%m.%y %H:%M", # '25.10.06 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ne/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..2a10814b1be0bc91ac38226e96e535f06cf3dc94 GIT binary patch literal 27248 zcmds;34C4Eb?y%{m?6wzG8`KmOJGT62pBP1p25b(lI=hU=1BKQy7&&t9W2W{5;FuG z#*oAi48aT%HiNN4F+-B#v{3q9nvyn6=tNVsNlS)ieBp&8^yU4(z4jd~3)_LDulMJz z@9b&qwbov1?X}On{`R4Jt_k>@yju_)2d4H5g4=oi@}X)Cf}b801hc`Pf$DEPIta#s zOTZ~$5j-1w3RM61z=OcOjtPQ;!NbAB!3m&9w)*yY9vA{-1jMmG9sESmSd)aDT=f z2WnmeI0kG1_W@f$$<+oP4=w>u0+;*#`+WZ+pyodhz7O0AiodUeqVxCQ$>6{E`T;0W z;|~YL_p#t1;5d*i2u=q>a4snM(xB)q2Q_{bsQEX6(*NzC#112*fS?k+3gU!^x2ujc22loJf>g&G%HSagz<=`F|k=DD?V-Ki#eW2v%2c`czeft_; zzaJDI4}-GPC&2^2=Y0Fipw@jA)ckLN(!<|@8vheeeEb@e-S0jj2u=YH0yVxBRR4t@ zXM^H%0k|i4na3+Z@!JJz{MEjm1NWjn;Oid;)qfMH_3r>>PxpFU@7uS4lIts=;>}k< zLQJp+o22<;!M(r}HB@pAGI!eJ&_^?V$GMBfkAMP5XQKgz{F z(E>_eXMy{IvwZskP?^J;`GuDEiGHp(&UP5(3YLN5 z?{-jnybIKNYeB`Eb-w?PK=J*Y$E~2~{JHP{XHfip2bA7^0BZa%z{|k5!2`j?7_sOl zK*^f~KLBPy>HThS4EPv$2lxyq{-(7U-C3aKT?(pw2`G9W2F34Hpy(7l-t2L$$BiDp z;_+`l&HHyy{_tzxegH-*IwyeYKMj-}&IC1XiEmGOycX2>yTJE>gC3s&52pSyco6t4 zQ1reFYW!QE;`#n;p5zHVp5(E?<0OxhJ)YrlipO(3Ug&W;sQsJ`NXcZp3eJCG~HdM$7`|oo;a`4_-n2VQ@b9Tks5UK7VA7H-c(>+mAUr2o_PF3~IfbJU$F+{)-@_gZ~X)44%@84}tyQ zQQ)hfkyA;fg$}L0maY9eEVm?W2t`;%z&?fgrr~wNz@0ykAl~O z>p|JY$tX{Leij&l=Y!&7DcFp?tnj#=B^z1{-O0sk1h4BTfnwg^TbstGoMupWFLWQkw`gXe<1pz2#d z>F+I2=gjnr3~%)KGN^U-WYALZEN~on4|pv2g2!)x(#y|4>0=^`j0evErPn2(=%ju9 zK`^5JEGWA;3Z}JRXMxh&ERR=#AE!P5YQ0~9qIbk4HvSY4l?CVc`p3aTsox1620jdG z-m{?QeFHoh{2nNKJ8Zu3I|bDGGeF6=2%HG^gZqK&eEl&{`uuC~ec*u$jP6)a_0vJE zKMgzpTnuV{m+wz|yw>;M?(1to$^E#;mq79NI@kd2cB%1mGN|^2pw{UJZvbxr2{pk% z3yqI9j|)NBWhW^5Nw68b9u!|+01pMf1gig4@WbF6zI|G|+1+AL^4tMRFZY2{z?Z-# z@NIB9cyb3c!7O+>IBt>UIg3Dzy9qo2dPnh z0Cxw!07~D_fG>kDgLi?STtW^89{VAD6xGqFcE&CV?Dz2Oj zo(N_@@$qS2-vG)^zXpn*AA-`~TcG&b{Uc`YM}T)zp8{?HzYc2NC$6-020_XF74S&# z=b-##Kb%W+CV|@D3&2J&0UizB0g9gup!V-Y@D%VzzWwN{jGq=zbj}8~pL0RYi^1c; zYe31p7L**1gBt%FD0#l>@tdIb@7v%7;GsCH_+ALAek0fkz6_oZPNXsw>;`2A8$jvv zM<5|A7~f^<^@8H32x`4s!SUc4-~YVt|1(g0{Ua!U{V}))cyz+#8td^)P~+xjh_liPaPf;;GWbAzJI{C-v&ya z`$5^!)4u&xQ2PBgD7ruN?Qeqe$Gv)OodZD4KLOPKe9*UdfLg!D_xFRMf4gsg3>5tr zK+%82xBnF=`oo~)eghQ!UxT85aMJYH0;>OXQ0vSDHEuDebyB{4HK=ty2kr+B`Swkq z*4YYb-YcN=`8p`NZ~FFqueSNegVNtAp!k>!hTwc~H*gZ=XOwd(jg-}tA5d0M^ude* zTq&5y;OEr9=Z`1_%1y<7I+oqA1NnL&x3n`AE11jXZPV*pZNwZ_9%|LKv_q5iZY%t zY494#k178^!TsF%2DrTG)8JZF_?$p_m2wDWBjpQ}A5k8p=yNFaP6xkAxsvi5iaw81 zzD(KO^Q5*nDB~#qhccHklT!WJpUQo{VI1?W=lK(qkmr3U(|P_PW1>A4d60-*zo{7v&jWFTn(Od4kHnQO=~?L-{G?R}_7gQVwE_K7VfD z{{Aa}|CI86`o04G4P^=CHHtp}PWcjLH~K#bev6{dNt9td@cAy~9Lis-;y;go9h5GL z?g5K@`_&%b5B`wy7NwPP8l_0lr-^bZN)qLNc4l_a^&B?ab4g&L-m2(oB?wRM?*^^oE7rWS*647mZT6I7$qJ@rq== z;MUxciFs&lJ2RhL88;@v&VfP<164KnNrZ`Lz=NyyW{Wx1g{~o;%oH^-5!#bAW;2Ce z*QN*8)E~#o)FN~Z199Xi32DfOv)c6cV)u8R`@6vX?Pv=cW+xMgI1@T0pbXPbBTsQI zm(4ZigGnLQ-FiXuxM1qMU}|?Rxh#q@`Cw|QGs+~ROfa=CmrMmyb5Uoq3+Rb6g`_&d z_C5yWdudC@HZor*=G>HG4<-;y5wx+%xnf@P z+Tu(P9sLTW(sjnoD15r*;EXvh8gT_oC`a0*cPTWGfL&-#u2+GS*J!_ zlFhh5dB@)0+lBqb+94?HJ2;+}BAxlFrEh#pzD8&O?PI7B*HftM$|zDty*NQv0S|9LCmO*y zL0~BKHYOUYc-Ub&`FAF?JW3HvJU95LV<(kNCksnm7eRg`w(`B%{?dRt)^>(sHG?}! z(yQ#<<8gF?JH;Y9!@0lrh`w zTeNU)J;_Cj=1i||Q-(ECTZ@AHHXS}}*0;yi@w2|uAI0^}Bhjx@W`8e-w?9Nm)3ce> zK$uYE%ZHVtuX8{cW-{Y4m6<6WmYJTgPhqumrp?UeI$e?!@DwL|GU3JXK-eHs#9=m_^o$b? z##}ziqg$&nn8|_5kux)wR8hJIxI|`VkxVFtE3$;nY(92r>C(OwN>_sH4$9>mR8c2d z>5RLgVqT-WQc*tdQ`lyAk}mBwN|?3FbDD!$m|K@rF)PmIdh8*WcJ)G-FGR{a?2xp> zH<*=E{x}=O#r?r-&g*0_yGWkpQkppnN(LEJTW~O^i>!>HUBR40Hkgx+NM7dXsF%t~ z=1b>4`6JEbR!;0WK2;OuIG=lp5#8n>eUJznCNv0_nh!PR8?|%fRCyXj3ib5{b2w`x z*F{mrZS_SFiKgs3nGzonn3fYNt zGM|?f;nF%XI%D$dLX^f>z3Me_psA2;Vqd(~lx{Kel;QOz8Ii+u=3z7QO#D0#E667+ zdG$P!8j9=+=*c>z%u|Mt%#bLgUD_jlqOvKuJa77pwnekfQ+nJSTtZ4oLVXE@a}nE7 zp?*m=xI_`P+CnkS?rbr`g(M=El8DMhNNI7nZ3b7&xxBsx!ET7(c99&%2{q`j5Bt$m zzSzlu>eAwoo5N|nan~}pCXSU&I0oc}S@a7d5*m@RwVnQ6*dY4N^!$h$UmsVQt3=ApR77H=?Nnw9)va7f5O5Ggn zB$=I@P`*Wvu(r#|wHu||J4Qp6SAD_PRen?k?MTIOxGR*0#&)eUE8$#rc7rau%0|(p z+mqEhvnwXKFxr_d^p;8Zxf3`Ta$$EYZwpW^qnX9>52MeSAurrzAaC3GLEX)!;6pt1b2{&MSR8T4A6cO6HvITcd zofXAcPtYExWKWT@7}Alh-fWWVi~L)ut@g-{9a*YQO*XLXwth5f+76Wt-J6W$j?(EX zm?yP!06OLkL&9hA;mBCEYdm!(${?YdcZg-QdU$6c9FwmkyYOLociznIJ5a0=(SVn%m+g}``4VNYI2 zSxcN)s)ok=zpi>TXfGlP@lyNIANBG^0gMweg!TcQo-RZO9Z{M$C>@+0xu7FPm?E&E z5TMqi{uIbkI2?7WkCGYf6TIY$sY1T0*N#l7zmngcI%2=eE;42N>R_v(%AuMHb*biz z$``x3ICZ*-as%VIoo9MDl#2dc+c=1pQZ<^ioM@?ft_?{OsIn=p z+U#bRL%n%1OvmZI!hkw?cCjtws1v8WC+sBEShk(M3_R9!F+azJfCPlsD~=p3PGoQT zwOMvYFUs!ajhi;9gG4y!$VCYpGn?T~Q8K;`-a}DrP%*bmJJ?a=1xGSUwT4r}1=*C+ znQ&@fUqCh$a#i<5Cd*KoX#$Nuo#DD2I}-RF((Efo6ltt~ByY*)TH;ojl&<+4{3V4BIz zTjETM%Nz12u`%C5R;)8E-!h&oi1&kq^TscATRL86;(6mU*=!$+=fh zQQt($xlNOj&RX&=1+8tebgsUwej@orJ$Vv|`lj}{Pi?6}orqNp_I|Z$NcnwTRa^P4 zRMl3>sjHiufED5jKM&hpOnc?VsK|1EHDdg znv-Z+tYj;jX${SG$1IHdcpuv|FW-|)G_@6b@=YDt)^N;%`ArMs<=oh^nI^p!Z4FPG zeA?uu$!9g4dPaEKsjX+6cFJTvW9ITcsEM$V$rB>8xmI31^PKGFHq=H0JNJA>=&sWf zH+95Ox;3<{J8Y02;YR)a{mr}xw<*qpjIS0C_@tZNl8IXy$IP2EZ$?FeQ=2D`AwU^nPM^aKrG>b;E;?4-Y;?{RLN16BXJv4-efwJoxDF;C&0K zekC+K_&oF6m?s@22Cv_-QCdsnuha0FFRX?KHx3Wp=>@3!Cdo0y#H|u+Xf;f3ag|3M z59`H@#N9wgnd1s^eQz{6bteU?a)P13o6CB1{ zLEjyfD|JIYH$3==6J#BvZD37P-Ed?TMaO`MR_fahG@UWl(`9U>sctxX`nY3b&`J1$ zaZ=w}H;H{PV|mVoSL#&*rGA;B`-}3bRj9r-u8*C)b=yA73|%vOgn3vhG^Mp|=dE+| zHrMwxI19q^OS?SyVmRU#a#i2QIe&S=sRnwi2)`Qw*9yD%O1q%(!GeoCU7m@oN!}uW2h(x!x&9S>Glwqm^YG}h&dcJzLsj19@XU`^~3IsM5V9)oV zQtKWxI_0q}!=nd5yFgbAAP=migZhHn=Y;-H;&{ zJYFn)W$D-%VQ}ed%bGd%1*V&VshUJ(o%_9V5}1A@0h&NG*#jK1eQqbzjhC5Kds{&( zWu>xX&^KjNbj98c8lCNK14NuGBE>GDpYpa>vnRDP!i>hP@4ikg1pww)KqV}#a^_CU zBk;e`MQFn8&>%Iq(2?Ob5q8(pg!?1y6A0`M4!1WfWKO|WIVPNG1R7=xiWMWoIV8Q( zN7#`iLGtcuFF<3)y2jJ#CsY<=I@?}8n_#Bmkc_u2tM?-O*=Cs3DCB0w-sfavE6M_( z&O4ntUZmSwTRF^m9$=gZyU7W1j}0qXT)EjD1gJvil}RMyz?0zqA@BOt;sqr=B0EE# zEBU4Oqy2de@8f;|N_C{d=wod)1(iCaU ziA2Is62mPb{b3iIY2`3{)?1#oX^X9nYu{bgvSUG%O!4)0fqGD!vuh2)^`VYop&98= z9JnSE-nvadM#y3?2jqZ;DrE~sYNr^t>%=c-;;_P=lz0DL_l#F5zcR_NeMExTrqRYS z#O%%v)-6s^_j`NU&I+xpVFRDE)lBMjR5nvELpxY3#vvz?!;>tE(8#7U{*zWW@x4Ww znm${K(3``+X@UJ&k6}gU)7k&`l<6QCx=N4o6}_gOKiD`AtvfehO+ z!a@6W*S5LnXw+DI6iOt$FWT?Hc8==kJe~ZG@>bRUH+< z$l7uHE7R7YwQE~dO`^pa04Afm=C15}^#x@INVw~cy9|zghZ%tsO*^6e#-g*7Ls$o>$Icve(_Lh};^uJG@<&{aY{>XSufPZHK)wD!(ctIs2-)uWfC>Hv&m=j-eW`XjZ%sx#VEwN8>S>-xWD&eN$}#cxcZG?iY0c>xk$0z z&JssnnHzaB=LPr43?VSQgkWL~K##G?nVsTGlB?b}*@6%yfevwU^iGjAA z$WDt~u9UL7XUo{=6pt47!{eW_!`}yQV7%eGBjCn?HD!mWoez%JAzWO(D zm7lqlLKaFkE6`g<-qfu|7#~UP?KB3%m|EW4TMyexy|&f?w+XZJfP4t5|Ni$@TyP+NyUk46_F2vne*;vB|GQw>?;xf!=Oz zcBZ}x*eJP%9^d{@w^^thTZL@d1|BLiDtg0%yg$1R;y#fu?+$8ybIKA}iM$N05D$6r zC@+-Vy5Ug3l6j`3Y#+AW8s~#3Pue;+W1W-NcCD-g^sRH6ap=On?|U?K;@+S)p_1dl zclt@IQxejeHs!CZ$!d-pZBWGy@D&Sh;t{)Gh`+y4bxpDW^tZZPk;M>S$Qc<7B?S`d zCIR#wvbqtIDOhHOnQMbxr}@0+q@p8KLB(E#Zgd;u88saZu}3A3WF3>EGMmU?`^;az zO%_^E8O&D1hMM_1b`MK9f%0FcTC+k3NFDa#1r}JtVn%6?tB5h%*p?=kQ#a4-0bQ8* ze&a)hC6Q%^o(id9j!yDHoi`Yvk%YNB%T_0=pcBDS4cyY{?U4;*GIe{o;NC}LZnpHA zCTB+U^2NedDwQ6i##F`BKrD(M>ZEffzp*HrTWkHY0t*T-2`dc7gB2iLzh{c^<^eK` z(9NKUkPa8Nah4{_45Tn9>Z!E1vJoowx|I%;QQEx9&x|3v*dZ=U@hmc= ze441=cq&ITnz;8krJ2S|o!$nFUF2YzDF+jQwl_p*!~6)sS#XrRM3L&y?!TLtD%Lr< z*kOz0wc~c`2tWojBvmV?aPCOGVmq}524(~M2)mjIPdL$5qfOHjd_BvPQ;&$gcSOpI z%L&{+Z5^DTb6K|Y3OKm8%Fv~1hWq_sxJ4Olc8O^XK{lGI4yZ723)rCqeXX=3s=|!f zc=^XpO^_~kggl&B+}UELOdLXT1VA4Ot2O=3;8#Hz=@=qsFHJWaRIFvjMorfUB8Jas za3w#9>CpB*V4(m_(S(e;{dh|;f1uykAtW=()00Is)ddx`InGMzf)$&p&86}g=O|^P zU!$L=myC}g2%w0=6izuDaFaA%{y}=E9=8P+7coxp%ISy(Y?q;dsX*TkL>!I_rzWv< zuY0D?M=NHdklUO}bykc#oDK}Yj7I4u6;Ay!QGMT3Z)m~qSBT$%qtfr~%PM;pb^DHN z$!{4XQ)HX^Aqy7)g{$Pl967RIufjkUQiP1&;@h5ZY|FWiCCro_2SgVBsv}-%YBr`D6Wa)LxtiHn;TXyvjNla{`+Zi)x?Q^MBoQqtY z;hAD^t9$rQrPco@h?Q8@7JI6(%!K!k8m}-K@KRpFUxrxTsZ1Rvq&)Bm$01Fu>XR49 zqa*K>pmM#HbgPgirZM-(jOF~1kISY9l~SLk5{L*#CeLf za>~FmD$zcfA>qvoQdWy_tixX|MYwUo$)k0(qRB2`5AwvZ#7JE_(O2dDhlPgFZ4tyF zs|Z8A_MTHS$42u_`H~tw(ghT55QY$-2yG0apHY-Th`6P|HWCG1y4GA# zc8LgHW-jaP*sZN^9qM==DYCl%zcoDgpfg509sNFyw8!j`ydrQ1nX70E{IayVP%x<9 z$YDY#zz$X)q(Zk@+GZocwjn!f$~7vLYI^HLLWD3=Cd%a)h~>+Aon~cAI-`)y+FYm@ zd?a-LbIiAk0wIcBGivLg!){QweWDf9@NA(?d$IC>TSI|jB*m44v8+L7I}@=w3#3X3 zkj$2oNtS$ugq1VX$za}YF+i_#Mx9Up#%jl@F<4V@g_G*7bGyTAJQNKQXxz3)Uhje< zP4-8z9LvQbW+E3eB^|`@Y|apq&IofvZ3qLWDr?r=!0M(=yj5!krEDPw8KW<+A6dgB z9_WshFtFKeJ;Y=Of&rzJ(ZTFZR8gZJ7_!yrp&#Fdv*%pLi|_q^_j7__{fM9dh`Lz4Vu03! zE}z$b1q@vHL}lwMPt}gM#m%-om)Aj!!4{bBv;P?A4c6>Q^2&{|Va(pNzx`hakM`vr z2O3*ry7gPb%5b8?(6(7etC^08x7O+!z*IKb(hayWhb#s^7)$c z#s3DPjgX3Zos, 2020 +# Jannis Leidel , 2014 +# Paras Nath Chaudhary , 2012 +# Sagar Chalise , 2011-2012,2015,2018 +# Sagar Chalise , 2015 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-14 21:42+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Nepali (http://www.transifex.com/django/django/language/ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "अफ्रिकन" + +msgid "Arabic" +msgstr "अरबिक" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "अस्टुरियन" + +msgid "Azerbaijani" +msgstr "अजरबैजानी" + +msgid "Bulgarian" +msgstr "बुल्गेरियाली" + +msgid "Belarusian" +msgstr "बेलारुसियन" + +msgid "Bengali" +msgstr "बंगाली" + +msgid "Breton" +msgstr "ब्रेटोन" + +msgid "Bosnian" +msgstr "बोस्नियाली" + +msgid "Catalan" +msgstr "क्याटालान" + +msgid "Czech" +msgstr "चेक" + +msgid "Welsh" +msgstr "वेल्स" + +msgid "Danish" +msgstr "डेनिस" + +msgid "German" +msgstr "जर्मन" + +msgid "Lower Sorbian" +msgstr "तल्लो सोर्बियन" + +msgid "Greek" +msgstr "ग्रिक" + +msgid "English" +msgstr "अंग्रेजी" + +msgid "Australian English" +msgstr "अस्ट्रेलियाली अंग्रेजी" + +msgid "British English" +msgstr "बेलायती अंग्रेजी" + +msgid "Esperanto" +msgstr "इस्परा्न्तो" + +msgid "Spanish" +msgstr "स्पेनिस" + +msgid "Argentinian Spanish" +msgstr "अर्जेन्टिनाली स्पेनिस" + +msgid "Colombian Spanish" +msgstr "कोलम्बियाली स्पेनिस" + +msgid "Mexican Spanish" +msgstr "मेक्सिकन स्पेनिस" + +msgid "Nicaraguan Spanish" +msgstr "निकारागुँवा स्पेनिस" + +msgid "Venezuelan Spanish" +msgstr "भेनेजुएला स्पेनिस" + +msgid "Estonian" +msgstr "इस्टोनियन" + +msgid "Basque" +msgstr "बास्क" + +msgid "Persian" +msgstr "फारसी" + +msgid "Finnish" +msgstr "फिन्निस" + +msgid "French" +msgstr "फ्रान्सेली" + +msgid "Frisian" +msgstr "फ्रिसियन" + +msgid "Irish" +msgstr "आयरिस" + +msgid "Scottish Gaelic" +msgstr "स्कटीस गैलिक" + +msgid "Galician" +msgstr "ग्यलिसियन" + +msgid "Hebrew" +msgstr "हिब्रु" + +msgid "Hindi" +msgstr "हिन्दि " + +msgid "Croatian" +msgstr "क्रोषियन" + +msgid "Upper Sorbian" +msgstr "माथिल्लो सोर्बियन " + +msgid "Hungarian" +msgstr "हन्गेरियन" + +msgid "Armenian" +msgstr "अर्मेनियन" + +msgid "Interlingua" +msgstr "ईन्टरलिन्गुवा" + +msgid "Indonesian" +msgstr "इन्डोनेसियाली" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "आइडु" + +msgid "Icelandic" +msgstr "आइसल्यान्डिक" + +msgid "Italian" +msgstr "ईटालियन" + +msgid "Japanese" +msgstr "जापनिज" + +msgid "Georgian" +msgstr "जर्जीयन" + +msgid "Kabyle" +msgstr "कबायल" + +msgid "Kazakh" +msgstr "कजाक" + +msgid "Khmer" +msgstr "ख्मेर" + +msgid "Kannada" +msgstr "कन्नड" + +msgid "Korean" +msgstr "कोरियाली" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "लक्जेमबर्गेली" + +msgid "Lithuanian" +msgstr "लिथुवानियाली" + +msgid "Latvian" +msgstr "लाट्भियन" + +msgid "Macedonian" +msgstr "म्यासेडोनियन" + +msgid "Malayalam" +msgstr "मलायलम" + +msgid "Mongolian" +msgstr "मंगोलियन" + +msgid "Marathi" +msgstr "मराठी" + +msgid "Burmese" +msgstr "बर्मेली" + +msgid "Norwegian Bokmål" +msgstr "नर्वे बक्मल" + +msgid "Nepali" +msgstr "नेपाली" + +msgid "Dutch" +msgstr "डच" + +msgid "Norwegian Nynorsk" +msgstr "नर्वेली न्योर्स्क" + +msgid "Ossetic" +msgstr "ओसेटिक" + +msgid "Punjabi" +msgstr "पञ्जावी" + +msgid "Polish" +msgstr "पोलिस" + +msgid "Portuguese" +msgstr "पुर्तगाली" + +msgid "Brazilian Portuguese" +msgstr "ब्राजिली पुर्तगाली" + +msgid "Romanian" +msgstr "रोमानियाली" + +msgid "Russian" +msgstr "रुसी" + +msgid "Slovak" +msgstr "सलोभाक" + +msgid "Slovenian" +msgstr "स्लोभेनियाली" + +msgid "Albanian" +msgstr "अल्बानियाली" + +msgid "Serbian" +msgstr "सर्वियाली" + +msgid "Serbian Latin" +msgstr "सर्वियाली ल्याटिन" + +msgid "Swedish" +msgstr "स्विडिस" + +msgid "Swahili" +msgstr "स्वाहिली" + +msgid "Tamil" +msgstr "तामिल" + +msgid "Telugu" +msgstr "तेलुगु" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "थाई" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "टर्किस" + +msgid "Tatar" +msgstr "टाटर" + +msgid "Udmurt" +msgstr "उद्मुर्ट" + +msgid "Ukrainian" +msgstr "युक्रेनि" + +msgid "Urdu" +msgstr "उर्दु" + +msgid "Uzbek" +msgstr "उज्बेक" + +msgid "Vietnamese" +msgstr "भियतनामी" + +msgid "Simplified Chinese" +msgstr "सरल चिनि" + +msgid "Traditional Chinese" +msgstr "प्राचिन चिनि" + +msgid "Messages" +msgstr "सुचनाहरु" + +msgid "Site Maps" +msgstr "साइट म्याप्स" + +msgid "Static Files" +msgstr "स्टेेटिक फाइलहरु" + +msgid "Syndication" +msgstr "सिन्डिकेसन" + +msgid "That page number is not an integer" +msgstr "पृष्ठ नं अंक होइन ।" + +msgid "That page number is less than 1" +msgstr "पृष्ठ नं १ भन्दा कम भयो ।" + +msgid "That page contains no results" +msgstr "पृष्ठमा नतिजा छैन ।" + +msgid "Enter a valid value." +msgstr "उपयुक्त मान राख्नुहोस ।" + +msgid "Enter a valid URL." +msgstr "उपयुक्त URL राख्नुहोस ।" + +msgid "Enter a valid integer." +msgstr "उपयुक्त अंक राख्नुहोस ।" + +msgid "Enter a valid email address." +msgstr "सही ई-मेल ठेगाना राख्नु होस ।" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "उपयुक्त IPv4 ठेगाना राख्नुहोस" + +msgid "Enter a valid IPv6 address." +msgstr "उपयुक्त IPv6 ठेगाना राख्नुहोस ।" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "उपयुक्त IPv4 वा IPv6 ठेगाना राख्नुहोस ।" + +msgid "Enter only digits separated by commas." +msgstr "कम्मा सहितका वर्ण मात्र राख्नुहोस ।" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "यो मान %(limit_value)s छ भन्ने निश्चित गर्नुहोस । (यो %(show_value)s हो ।)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "यो मान %(limit_value)s भन्दा कम अथवा बराबर छ भन्ने निश्चित गर्नुहोस ।" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "यो मान %(limit_value)s भन्दा बढी अथवा बराबर छ भन्ने निशचित गर्नुहोस ।" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"यो मान कम्तिमा पनि %(limit_value)d अक्षर छ भन्ने निश्चित गर्नुहोस । (यसमा " +"%(show_value)d छ ।)" +msgstr[1] "" +"यो मान कम्तिमा पनि %(limit_value)d अक्षरहरु छ भन्ने निश्चित गर्नुहोस । (यसमा " +"%(show_value)d छ ।)" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"यो मान बढिमा पनि %(limit_value)d अक्षर छ भन्ने निश्चित गर्नुहोस । (यसमा " +"%(show_value)d छ ।)" +msgstr[1] "" +"यो मान बढिमा पनि %(limit_value)d अक्षरहरु छ भन्ने निश्चित गर्नुहोस । (यसमा " +"%(show_value)d छ ।)" + +msgid "Enter a number." +msgstr "संख्या राख्नुहोस ।" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "जम्मा %(max)s भन्दा बढी अक्षर नभएको निश्चित पार्नु होस ।" +msgstr[1] "जम्मा %(max)s भन्दा बढी अक्षरहरु नभएको निश्चित पार्नु होस ।" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "दशमलव पछि %(max)s भन्दा बढी अक्षर नभएको निश्चित पार्नु होस ।" +msgstr[1] "दशमलव पछि %(max)s भन्दा बढी अक्षरहरु नभएको निश्चित पार्नु होस ।" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "दशमलव अघि %(max)s भन्दा बढी अक्षर नभएको निश्चित पार्नु होस ।" +msgstr[1] "दशमलव अघि %(max)s भन्दा बढी अक्षरहरु नभएको निश्चित पार्नु होस ।" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "शून्य मान अनुमति छैन।" + +msgid "and" +msgstr "र" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(field_labels)s भएको %(model_name)s बनि सकेको छ । " + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r मान उपयुक्त छनोट होइन ।" + +msgid "This field cannot be null." +msgstr "यो फाँट शून्य हुन सक्दैन ।" + +msgid "This field cannot be blank." +msgstr "यो फाँट खाली हुन सक्दैन ।" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(field_label)s भएको %(model_name)s पहिलै विद्धमान छ ।" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(date_field_label)s %(lookup_type)s को लागि %(field_label)s अनुपम हुनु पर्दछ ।" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "फाँटको प्रकार: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "बुलियन (True अथवा False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "वर्ण (%(max_length)s सम्म)" + +msgid "Comma-separated integers" +msgstr "कम्माले छुट्याइएका अंकहरु ।" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "मिति (समय रहित)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "मिति (समय सहित)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "दश्मलव संख्या" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "अवधि" + +msgid "Email address" +msgstr "ई-मेल ठेगाना" + +msgid "File path" +msgstr "फाइलको मार्ग" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "दश्मलव हुने संख्या" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "अंक" + +msgid "Big (8 byte) integer" +msgstr "ठूलो (८ बाइटको) अंक" + +msgid "IPv4 address" +msgstr "आइ.पी.भी४ ठेगाना" + +msgid "IP address" +msgstr "IP ठेगाना" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "बुलियन (True, False अथवा None)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "सकारात्मक पूर्णांक" + +msgid "Positive small integer" +msgstr "सानो जोड अङ्क" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "स्लग(%(max_length)s सम्म)" + +msgid "Small integer" +msgstr "सानो अङ्क" + +msgid "Text" +msgstr "पाठ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "समय" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "र बाइनरी डाटा" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "फाइल" + +msgid "Image" +msgstr "चित्र" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "फोरेन कि (प्रकार नातागत फाँटले जनाउछ)" + +msgid "One-to-one relationship" +msgstr "एक-देखि-एक नाता" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s सम्बन्ध" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s सम्बन्धहरु" + +msgid "Many-to-many relationship" +msgstr "अनेक-देखि-अनेक नाता" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "यो फाँट अनिवार्य छ ।" + +msgid "Enter a whole number." +msgstr "संख्या राख्नुहोस ।" + +msgid "Enter a valid date." +msgstr "उपयुक्त मिति राख्नुहोस ।" + +msgid "Enter a valid time." +msgstr "उपयुक्त समय राख्नुहोस ।" + +msgid "Enter a valid date/time." +msgstr "उपयुक्त मिति/समय राख्नुहोस ।" + +msgid "Enter a valid duration." +msgstr "उपयुक्त अवधि राख्नुहोस ।" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "दिन गन्ती {min_days} र {max_days} बीचमा हुनु पर्छ । " + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "कुनै फाईल पेश गरिएको छैन । फारममा ईनकोडिङको प्रकार जाँच गर्नुहोस । " + +msgid "No file was submitted." +msgstr "कुनै फाईल पेश गरिएको छैन ।" + +msgid "The submitted file is empty." +msgstr "पेश गरिएको फाइल खाली छ ।" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"यो फाइलको नाममा बाढीमा %(max)d अङ्क भएको निश्चित गर्नु होस । (यसमा %(length)d छ " +"।)" +msgstr[1] "" +"यो फाइलको नाममा बढी मा %(max)d अङ्कहरू भएको निश्चित गर्नु होस । (यसमा %(length)d " +"छ ।)" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "दुवै नछान्नुहोस, कि त फाइल पेश गर्नुहोस वा चेक बाकस मा छान्नुहोस ।" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"उपयुक्त चित्र अपलोड गर्नुहोस । तपाइले अपलोड गर्नु भएको फाइल चित्र होइन वा बिग्रेको चित्र " +"हो ।" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "उपयुक्त विकल्प छान्नुहोस । %(value)s प्रस्तावित विकल्प होइन ।" + +msgid "Enter a list of values." +msgstr "मानहरु राख्नुहोस" + +msgid "Enter a complete value." +msgstr "पुरा मान राख्नु होस ।" + +msgid "Enter a valid UUID." +msgstr "उपयुक्त UUID राख्नु होस ।" + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(लुकेका %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "म्यानेजमेन्ट फारम डाटा चलाइएको वा नभरेको पाइयो ।" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "कृपया %d अथवा सो भन्दा थोरै फारम बुझाउनु होस ।" +msgstr[1] "कृपया %d अथवा सो भन्दा थोरै फारमहरु बुझाउनु होस ।" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "कृपया %d अथवा सो भन्दा धेरै फारम बुझाउनु होस ।" +msgstr[1] "कृपया %d अथवा सो भन्दा धेरै फारमहरु बुझाउनु होस ।" + +msgid "Order" +msgstr "क्रम" + +msgid "Delete" +msgstr "मेट्नुहोस" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "कृपया %(field)s का लागि दोहोरिइका तथ्याङ्कहरु सच्याउनुहोस ।" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "कृपया %(field)s का लागि दोहोरिइका तथ्याङ्कहरु नौलो तथ्याङ्क सहित सच्याउनुहोस ।" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"कृपया %(field_name)s का लागि दोहोरिइका तथ्याङ्कहरु सच्याउनुहोस जसमा " +"%(date_field)sको %(lookup)s नौलो हुनुपर्दछ ।" + +msgid "Please correct the duplicate values below." +msgstr "कृपया तलका दोहोरिइका मानहरु सच्याउनुहोस ।" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "उपयुक्त विकल्प छान्नुहोस । छानिएको विकल्प प्रस्तावित विकल्प होइन ।" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "सबै खाली गर्नु होस ।" + +msgid "Currently" +msgstr "अहिले" + +msgid "Change" +msgstr "फेर्नुहोस" + +msgid "Unknown" +msgstr "अज्ञात" + +msgid "Yes" +msgstr "हुन्छ" + +msgid "No" +msgstr "होइन" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "हो,होइन,सायद" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d बाइट" +msgstr[1] "%(size)d बाइटहरु" + +#, python-format +msgid "%s KB" +msgstr "%s किलोबाइट" + +#, python-format +msgid "%s MB" +msgstr "%s मेगाबाइट" + +#, python-format +msgid "%s GB" +msgstr "%s गिगाबाइट" + +#, python-format +msgid "%s TB" +msgstr "%s टेराबाइट" + +#, python-format +msgid "%s PB" +msgstr "%s पिटाबाइट" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "मध्यरात" + +msgid "noon" +msgstr "मध्यान्ह" + +msgid "Monday" +msgstr "सोमवार" + +msgid "Tuesday" +msgstr "मंगलवार" + +msgid "Wednesday" +msgstr "बुधवार" + +msgid "Thursday" +msgstr "बिहीवार" + +msgid "Friday" +msgstr "शुक्रवार" + +msgid "Saturday" +msgstr "शनिवार" + +msgid "Sunday" +msgstr "आइतवार" + +msgid "Mon" +msgstr "सोम" + +msgid "Tue" +msgstr "मंगल" + +msgid "Wed" +msgstr "बुध" + +msgid "Thu" +msgstr "बिहि" + +msgid "Fri" +msgstr "शुक्र" + +msgid "Sat" +msgstr "शनि" + +msgid "Sun" +msgstr "आइत" + +msgid "January" +msgstr "जनवरी" + +msgid "February" +msgstr "फेब्रुअरी" + +msgid "March" +msgstr "मार्च" + +msgid "April" +msgstr "अप्रिल" + +msgid "May" +msgstr "मई" + +msgid "June" +msgstr "जुन" + +msgid "July" +msgstr "जुलै" + +msgid "August" +msgstr "अगस्त" + +msgid "September" +msgstr "सेप्टेम्बर" + +msgid "October" +msgstr "अक्टुवर" + +msgid "November" +msgstr "नभम्वर" + +msgid "December" +msgstr "डिसम्वर" + +msgid "jan" +msgstr "जनवरी" + +msgid "feb" +msgstr "फेब्रुअरी" + +msgid "mar" +msgstr "मार्च" + +msgid "apr" +msgstr "अप्रिल" + +msgid "may" +msgstr "मई" + +msgid "jun" +msgstr "जुन" + +msgid "jul" +msgstr "जुलै" + +msgid "aug" +msgstr "अग्सत" + +msgid "sep" +msgstr "सेप्तेम्बर" + +msgid "oct" +msgstr "अक्टुवर" + +msgid "nov" +msgstr "नभम्वर" + +msgid "dec" +msgstr "डिसम्वर" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "जनवरी" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "फेब्रुअरी" + +msgctxt "abbrev. month" +msgid "March" +msgstr "मार्च" + +msgctxt "abbrev. month" +msgid "April" +msgstr "अप्रिल" + +msgctxt "abbrev. month" +msgid "May" +msgstr "मई" + +msgctxt "abbrev. month" +msgid "June" +msgstr "जुन" + +msgctxt "abbrev. month" +msgid "July" +msgstr "जुलै" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "अगस्त" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "सेप्तेम्बर" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "अक्टुवर" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "नभम्वर" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "डिसम्वर" + +msgctxt "alt. month" +msgid "January" +msgstr "जनवरी" + +msgctxt "alt. month" +msgid "February" +msgstr "फेब्रुअरी" + +msgctxt "alt. month" +msgid "March" +msgstr "मार्च" + +msgctxt "alt. month" +msgid "April" +msgstr "अप्रिल" + +msgctxt "alt. month" +msgid "May" +msgstr "मई" + +msgctxt "alt. month" +msgid "June" +msgstr "जुन" + +msgctxt "alt. month" +msgid "July" +msgstr "जुलै" + +msgctxt "alt. month" +msgid "August" +msgstr "अगस्त" + +msgctxt "alt. month" +msgid "September" +msgstr "सेप्टेम्बर" + +msgctxt "alt. month" +msgid "October" +msgstr "अक्टुवर" + +msgctxt "alt. month" +msgid "November" +msgstr "नभम्वर" + +msgctxt "alt. month" +msgid "December" +msgstr "डिसम्वर" + +msgid "This is not a valid IPv6 address." +msgstr "यो उपयुक्त IPv6 ठेगाना होइन ।" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "अथवा" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d वर्ष" +msgstr[1] "%d वर्षहरु" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d महिना" +msgstr[1] "%d महिनाहरु" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d सप्ताह" +msgstr[1] "%d सप्ताहहरु" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d दिन" +msgstr[1] "%d दिनहरु" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d घण्टा" +msgstr[1] "%d घण्टाहरु" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d मिनट" +msgstr[1] "%d मिनटहरु" + +msgid "Forbidden" +msgstr "निषेधित" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF प्रमाणीकरण भएन । अनुरोध विफल ।" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "DEBUG=True ले ज्यादा सुचना प्रदान गर्दछ ।" + +msgid "No year specified" +msgstr "साल तोकिएको छैन ।" + +msgid "Date out of range" +msgstr "मिति मिलेन ।" + +msgid "No month specified" +msgstr "महिना तोकिएको छैन ।" + +msgid "No day specified" +msgstr "दिन तोकिएको छैन ।" + +msgid "No week specified" +msgstr "साता तोकिएको छैन ।" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s उपलब्ध छैन ।" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(class_name)s.allow_future 'False' हुनाले आगामी %(verbose_name_plural)s उपलब्ध " +"छैन ।" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "%(verbose_name)s भेटिएन ।" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "रद्द पृष्ठ (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "डाइरेक्टरी इन्डेक्सहरु यहाँ अनुमति छैन ।" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s को सूची" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "ज्याङ्गो : वेब साइट र एप्लिकेसन बनाउन सहयोगी औजार " + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"ज्याङ्गो %(version)s को परिवर्तन तथा विशेषता यहाँ हेर्नु होस" + +msgid "The install worked successfully! Congratulations!" +msgstr "बधाई छ । स्थापना भएको छ ।" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "ज्याङ्गो दस्तावेज ।" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "मतदान एप उदाहरण " + +msgid "Get started with Django" +msgstr "ज्याङ्गो सुरु गर्नु होस ।" + +msgid "Django Community" +msgstr "ज्याङ्गो समुदाय" + +msgid "Connect, get help, or contribute" +msgstr "सहयोग अथवा योगदान गरी जोडिनु होस" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..7bb3da3fc29c38d1954a8d4d104d5017521d4f23 GIT binary patch literal 28191 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po new file mode 100644 index 0000000..85fe240 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po @@ -0,0 +1,1356 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Bas Peschier , 2011,2013 +# Blue , 2011-2012 +# Bouke Haarsma , 2013 +# Claude Paroz , 2014 +# Erik Romijn , 2013 +# Evelijn Saaltink , 2016 +# Harro van der Klauw , 2011-2012 +# Ilja Maas , 2015 +# Jannis Leidel , 2011 +# 6a27f10aef159701c7a5ff07f0fb0a78_05545ed , 2011-2012,2014 +# Michiel Overtoom , 2014 +# Meteor0id, 2019-2020 +# 8de006b1b0894aab6aef71979dcd8bd6_5c6b207 , 2014-2015 +# Tino de Bruijn , 2013 +# Tonnes , 2017,2019-2020,2022-2024 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Tonnes , 2017,2019-2020,2022-2024\n" +"Language-Team: Dutch (http://app.transifex.com/django/django/language/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabisch" + +msgid "Algerian Arabic" +msgstr "Algerijns Arabisch" + +msgid "Asturian" +msgstr "Asturisch" + +msgid "Azerbaijani" +msgstr "Azerbeidzjaans" + +msgid "Bulgarian" +msgstr "Bulgaars" + +msgid "Belarusian" +msgstr "Wit-Russisch" + +msgid "Bengali" +msgstr "Bengaals" + +msgid "Breton" +msgstr "Bretons" + +msgid "Bosnian" +msgstr "Bosnisch" + +msgid "Catalan" +msgstr "Catalaans" + +msgid "Central Kurdish (Sorani)" +msgstr "Centraal-Koerdisch (Sorani)" + +msgid "Czech" +msgstr "Tsjechisch" + +msgid "Welsh" +msgstr "Welsh" + +msgid "Danish" +msgstr "Deens" + +msgid "German" +msgstr "Duits" + +msgid "Lower Sorbian" +msgstr "Nedersorbisch" + +msgid "Greek" +msgstr "Grieks" + +msgid "English" +msgstr "Engels" + +msgid "Australian English" +msgstr "Australisch-Engels" + +msgid "British English" +msgstr "Brits-Engels" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spaans" + +msgid "Argentinian Spanish" +msgstr "Argentijns Spaans" + +msgid "Colombian Spanish" +msgstr "Colombiaans Spaans" + +msgid "Mexican Spanish" +msgstr "Mexicaans Spaans" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguaans Spaans" + +msgid "Venezuelan Spanish" +msgstr "Venezolaans Spaans" + +msgid "Estonian" +msgstr "Ests" + +msgid "Basque" +msgstr "Baskisch" + +msgid "Persian" +msgstr "Perzisch" + +msgid "Finnish" +msgstr "Fins" + +msgid "French" +msgstr "Frans" + +msgid "Frisian" +msgstr "Fries" + +msgid "Irish" +msgstr "Iers" + +msgid "Scottish Gaelic" +msgstr "Schots-Gaelisch" + +msgid "Galician" +msgstr "Galicisch" + +msgid "Hebrew" +msgstr "Hebreeuws" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroatisch" + +msgid "Upper Sorbian" +msgstr "Oppersorbisch" + +msgid "Hungarian" +msgstr "Hongaars" + +msgid "Armenian" +msgstr "Armeens" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesisch" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "IJslands" + +msgid "Italian" +msgstr "Italiaans" + +msgid "Japanese" +msgstr "Japans" + +msgid "Georgian" +msgstr "Georgisch" + +msgid "Kabyle" +msgstr "Kabylisch" + +msgid "Kazakh" +msgstr "Kazachs" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreaans" + +msgid "Kyrgyz" +msgstr "Kirgizisch" + +msgid "Luxembourgish" +msgstr "Luxemburgs" + +msgid "Lithuanian" +msgstr "Litouws" + +msgid "Latvian" +msgstr "Lets" + +msgid "Macedonian" +msgstr "Macedonisch" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongools" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Maleis" + +msgid "Burmese" +msgstr "Birmaans" + +msgid "Norwegian Bokmål" +msgstr "Noors Bokmål" + +msgid "Nepali" +msgstr "Nepalees" + +msgid "Dutch" +msgstr "Nederlands" + +msgid "Norwegian Nynorsk" +msgstr "Noors Nynorsk" + +msgid "Ossetic" +msgstr "Ossetisch" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Pools" + +msgid "Portuguese" +msgstr "Portugees" + +msgid "Brazilian Portuguese" +msgstr "Braziliaans Portugees" + +msgid "Romanian" +msgstr "Roemeens" + +msgid "Russian" +msgstr "Russisch" + +msgid "Slovak" +msgstr "Slovaaks" + +msgid "Slovenian" +msgstr "Sloveens" + +msgid "Albanian" +msgstr "Albanisch" + +msgid "Serbian" +msgstr "Servisch" + +msgid "Serbian Latin" +msgstr "Servisch Latijn" + +msgid "Swedish" +msgstr "Zweeds" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telegu" + +msgid "Tajik" +msgstr "Tadzjieks" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "Turkmeens" + +msgid "Turkish" +msgstr "Turks" + +msgid "Tatar" +msgstr "Tataars" + +msgid "Udmurt" +msgstr "Oedmoerts" + +msgid "Uyghur" +msgstr "Oeigoers" + +msgid "Ukrainian" +msgstr "Oekraïens" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Oezbeeks" + +msgid "Vietnamese" +msgstr "Vietnamees" + +msgid "Simplified Chinese" +msgstr "Vereenvoudigd Chinees" + +msgid "Traditional Chinese" +msgstr "Traditioneel Chinees" + +msgid "Messages" +msgstr "Berichten" + +msgid "Site Maps" +msgstr "Sitemaps" + +msgid "Static Files" +msgstr "Statische bestanden" + +msgid "Syndication" +msgstr "Syndicatie" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Dat paginanummer is geen geheel getal" + +msgid "That page number is less than 1" +msgstr "Dat paginanummer is kleiner dan 1" + +msgid "That page contains no results" +msgstr "Die pagina bevat geen resultaten" + +msgid "Enter a valid value." +msgstr "Voer een geldige waarde in." + +msgid "Enter a valid domain name." +msgstr "Voer een geldige domeinnaam in." + +msgid "Enter a valid URL." +msgstr "Voer een geldige URL in." + +msgid "Enter a valid integer." +msgstr "Voer een geldig geheel getal in." + +msgid "Enter a valid email address." +msgstr "Voer een geldig e-mailadres in." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Voer een geldige ‘slug’ in, bestaande uit letters, cijfers, liggende " +"streepjes en verbindingsstreepjes." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Voer een geldige ‘slug’ in, bestaande uit Unicode-letters, cijfers, liggende " +"streepjes en verbindingsstreepjes." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Voer een geldig %(protocol)s-adres in." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4- of IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Voer alleen cijfers in, gescheiden door komma's." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Zorg ervoor dat deze waarde gelijk is aan %(limit_value)s (het is nu " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Zorg ervoor dat deze waarde hoogstens %(limit_value)s is." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Zorg ervoor dat deze waarde minstens %(limit_value)s is." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Zorg ervoor dat deze waarde een veelvoud is van stapgrootte %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Zorg dat deze waarde een veelvoud is van stapgrootte %(limit_value)s, " +"beginnend bij %(offset)s, bv. %(offset)s, %(valid_value1)s, " +"%(valid_value2)s, enzovoort." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Zorg dat deze waarde ten minste %(limit_value)d teken bevat (het zijn er nu " +"%(show_value)d)." +msgstr[1] "" +"Zorg dat deze waarde ten minste %(limit_value)d tekens bevat (het zijn er nu " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Zorg dat deze waarde niet meer dan %(limit_value)d teken bevat (het zijn er " +"nu %(show_value)d)." +msgstr[1] "" +"Zorg dat deze waarde niet meer dan %(limit_value)d tekens bevat (het zijn er " +"nu %(show_value)d)." + +msgid "Enter a number." +msgstr "Voer een getal in." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Zorg dat er niet meer dan %(max)s cijfer is." +msgstr[1] "Zorg dat er niet meer dan %(max)s cijfers zijn." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Zorg dat er niet meer dan %(max)s cijfer achter de komma staat." +msgstr[1] "Zorg dat er niet meer dan %(max)s cijfers achter de komma staan." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Zorg dat er niet meer dan %(max)s cijfer voor de komma staat." +msgstr[1] "Zorg dat er niet meer dan %(max)s cijfers voor de komma staan." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Bestandsextensie ‘%(extension)s’ is niet toegestaan. Toegestane extensies " +"zijn: ‘%(allowed_extensions)s’." + +msgid "Null characters are not allowed." +msgstr "Null-tekens zijn niet toegestaan." + +msgid "and" +msgstr "en" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s met deze %(field_labels)s bestaat al." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Beperking ‘%(name)s’ is geschonden." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Waarde %(value)r is geen geldige keuze." + +msgid "This field cannot be null." +msgstr "Dit veld mag niet leeg zijn." + +msgid "This field cannot be blank." +msgstr "Dit veld kan niet leeg zijn" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Er bestaat al een %(model_name)s met eenzelfde %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s moet uniek zijn voor %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Veld van type: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Waarde van ‘%(value)s’ moet True of False zijn." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Waarde van ‘%(value)s’ moet True, False of None zijn." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (True of False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Tekenreeks (hooguit %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Tekenreeks (onbeperkt)" + +msgid "Comma-separated integers" +msgstr "Komma-gescheiden gehele getallen" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Waarde van ‘%(value)s’ heeft een ongeldige datumnotatie. De juiste notatie " +"is YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Waarde van ‘%(value)s’ heeft de juiste notatie (YYYY-MM-DD), maar het is een " +"ongeldige datum." + +msgid "Date (without time)" +msgstr "Datum (zonder tijd)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Waarde van ‘%(value)s’ heeft een ongeldige notatie. De juiste notatie is " +"YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Waarde van ‘%(value)s’ heeft de juiste notatie (YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ]), maar het is een ongeldige datum/tijd." + +msgid "Date (with time)" +msgstr "Datum (met tijd)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Waarde van ‘%(value)s’ moet een decimaal getal zijn." + +msgid "Decimal number" +msgstr "Decimaal getal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Waarde van ‘%(value)s’ heeft een ongeldige notatie. De juiste notatie is " +"[DD] [[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Tijdsduur" + +msgid "Email address" +msgstr "E-mailadres" + +msgid "File path" +msgstr "Bestandspad" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Waarde van ‘%(value)s’ moet een drijvende-kommagetal zijn." + +msgid "Floating point number" +msgstr "Drijvende-kommagetal" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Waarde van ‘%(value)s’ moet een geheel getal zijn." + +msgid "Integer" +msgstr "Geheel getal" + +msgid "Big (8 byte) integer" +msgstr "Groot (8 byte) geheel getal" + +msgid "Small integer" +msgstr "Klein geheel getal" + +msgid "IPv4 address" +msgstr "IPv4-adres" + +msgid "IP address" +msgstr "IP-adres" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Waarde van ‘%(value)s’ moet None, True of False zijn." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (True, False of None)" + +msgid "Positive big integer" +msgstr "Positief groot geheel getal" + +msgid "Positive integer" +msgstr "Positief geheel getal" + +msgid "Positive small integer" +msgstr "Postitief klein geheel getal" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (max. lengte %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Waarde van ‘%(value)s’ heeft een ongeldige notatie. De juiste notatie is HH:" +"MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Waarde van ‘%(value)s’ heeft de juiste notatie (HH:MM[:ss[.uuuuuu]]), maar " +"het is een ongeldige tijd." + +msgid "Time" +msgstr "Tijd" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Onbewerkte binaire gegevens" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "‘%(value)s’ is geen geldige UUID." + +msgid "Universally unique identifier" +msgstr "Universally unique identifier" + +msgid "File" +msgstr "Bestand" + +msgid "Image" +msgstr "Afbeelding" + +msgid "A JSON object" +msgstr "Een JSON-object" + +msgid "Value must be valid JSON." +msgstr "Waarde moet geldige JSON zijn." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s-instantie met %(field)s %(value)r bestaat niet." + +msgid "Foreign Key (type determined by related field)" +msgstr "Refererende sleutel (type wordt bepaald door gerelateerde veld)" + +msgid "One-to-one relationship" +msgstr "Een-op-een-relatie" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s-relatie" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s-relaties" + +msgid "Many-to-many relationship" +msgstr "Veel-op-veel-relatie" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Dit veld is verplicht." + +msgid "Enter a whole number." +msgstr "Voer een geheel getal in." + +msgid "Enter a valid date." +msgstr "Voer een geldige datum in." + +msgid "Enter a valid time." +msgstr "Voer een geldige tijd in." + +msgid "Enter a valid date/time." +msgstr "Voer een geldige datum/tijd in." + +msgid "Enter a valid duration." +msgstr "Voer een geldige tijdsduur in." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Het aantal dagen moet tussen {min_days} en {max_days} liggen." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Er is geen bestand verstuurd. Controleer het coderingstype op het formulier." + +msgid "No file was submitted." +msgstr "Er is geen bestand verstuurd." + +msgid "The submitted file is empty." +msgstr "Het verstuurde bestand is leeg." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Zorg dat deze bestandsnaam niet meer dan %(max)d teken bevat (het zijn er nu " +"%(length)d)." +msgstr[1] "" +"Zorg dat deze bestandsnaam niet meer dan %(max)d tekens bevat (het zijn er " +"nu %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Upload een bestand of vink het vakje Wissen aan, niet allebei." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Upload een geldige afbeelding. Het geüploade bestand is geen of een " +"beschadigde afbeelding." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Selecteer een geldige keuze. %(value)s is geen beschikbare keuze." + +msgid "Enter a list of values." +msgstr "Voer een lijst met waarden in." + +msgid "Enter a complete value." +msgstr "Voer een volledige waarde in." + +msgid "Enter a valid UUID." +msgstr "Voer een geldige UUID in." + +msgid "Enter a valid JSON." +msgstr "Voer een geldige JSON in." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Verborgen veld %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm-gegevens ontbreken of er is mee geknoeid. Ontbrekende velden: " +"%(field_names)s. Mogelijk dient u een bug te melden als het probleem " +"aanhoudt." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Verstuur maximaal %(num)d formulier." +msgstr[1] "Verstuur maximaal %(num)d formulieren." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Verstuur minimaal %(num)d formulier." +msgstr[1] "Verstuur minimaal %(num)d formulieren." + +msgid "Order" +msgstr "Volgorde" + +msgid "Delete" +msgstr "Verwijderen" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Corrigeer de dubbele gegevens voor %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Corrigeer de dubbele gegevens voor %(field)s, dat uniek moet zijn." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Corrigeer de dubbele gegevens voor %(field_name)s, dat uniek moet zijn voor " +"de %(lookup)s in %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Corrigeer de dubbele waarden hieronder." + +msgid "The inline value did not match the parent instance." +msgstr "De inline waarde komt niet overeen met de bovenliggende instantie." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Selecteer een geldige keuze. Deze keuze is niet beschikbaar." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "‘%(pk)s’ is geen geldige waarde." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s kon niet worden geïnterpreteerd in tijdzone " +"%(current_timezone)s; mogelijk is deze dubbelzinnig of bestaat deze niet." + +msgid "Clear" +msgstr "Wissen" + +msgid "Currently" +msgstr "Huidige" + +msgid "Change" +msgstr "Wijzigen" + +msgid "Unknown" +msgstr "Onbekend" + +msgid "Yes" +msgstr "Ja" + +msgid "No" +msgstr "Nee" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ja,nee,misschien" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "middernacht" + +msgid "noon" +msgstr "middag" + +msgid "Monday" +msgstr "maandag" + +msgid "Tuesday" +msgstr "dinsdag" + +msgid "Wednesday" +msgstr "woensdag" + +msgid "Thursday" +msgstr "donderdag" + +msgid "Friday" +msgstr "vrijdag" + +msgid "Saturday" +msgstr "zaterdag" + +msgid "Sunday" +msgstr "zondag" + +msgid "Mon" +msgstr "ma" + +msgid "Tue" +msgstr "di" + +msgid "Wed" +msgstr "wo" + +msgid "Thu" +msgstr "do" + +msgid "Fri" +msgstr "vr" + +msgid "Sat" +msgstr "za" + +msgid "Sun" +msgstr "zo" + +msgid "January" +msgstr "januari" + +msgid "February" +msgstr "februari" + +msgid "March" +msgstr "maart" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "mei" + +msgid "June" +msgstr "juni" + +msgid "July" +msgstr "juli" + +msgid "August" +msgstr "augustus" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "december" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mrt" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mei" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb" + +msgctxt "abbrev. month" +msgid "March" +msgstr "mrt" + +msgctxt "abbrev. month" +msgid "April" +msgstr "apr" + +msgctxt "abbrev. month" +msgid "May" +msgstr "mei" + +msgctxt "abbrev. month" +msgid "June" +msgstr "jun" + +msgctxt "abbrev. month" +msgid "July" +msgstr "jul" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sep" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dec" + +msgctxt "alt. month" +msgid "January" +msgstr "januari" + +msgctxt "alt. month" +msgid "February" +msgstr "februari" + +msgctxt "alt. month" +msgid "March" +msgstr "maart" + +msgctxt "alt. month" +msgid "April" +msgstr "april" + +msgctxt "alt. month" +msgid "May" +msgstr "mei" + +msgctxt "alt. month" +msgid "June" +msgstr "juni" + +msgctxt "alt. month" +msgid "July" +msgstr "juli" + +msgctxt "alt. month" +msgid "August" +msgstr "augustus" + +msgctxt "alt. month" +msgid "September" +msgstr "september" + +msgctxt "alt. month" +msgid "October" +msgstr "oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "november" + +msgctxt "alt. month" +msgid "December" +msgstr "december" + +msgid "This is not a valid IPv6 address." +msgstr "Dit is geen geldig IPv6-adres." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "of" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d jaar" +msgstr[1] "%(num)d jaar" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d maand" +msgstr[1] "%(num)d maanden" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d week" +msgstr[1] "%(num)d weken" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dag" +msgstr[1] "%(num)d dagen" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d uur" +msgstr[1] "%(num)d uur" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuut" +msgstr[1] "%(num)d minuten" + +msgid "Forbidden" +msgstr "Verboden" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-verificatie mislukt. Aanvraag afgebroken." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"U ziet deze melding, omdat deze HTTPS-website vereist dat uw webbrowser een " +"‘Referer header’ meestuurt, maar deze ontbreekt. Deze header is om " +"veiligheidsredenen vereist om er zeker van te zijn dat uw browser niet door " +"derden wordt gekaapt." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Als u ‘Referer’-headers in uw browser hebt uitgeschakeld, schakel deze dan " +"weer in, op zijn minst voor deze website, of voor HTTPS-verbindingen, of " +"voor ‘same-origin’-aanvragen." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Als u de tag gebruikt of de " +"header ‘Referrer-Policy: no-referrer’ opneemt, verwijder deze dan. De CSRF-" +"bescherming vereist de ‘Referer’-header voor strenge referer-controle. Als u " +"bezorgd bent om privacy, gebruik dan alternatieven zoals voor koppelingen naar websites van derden." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"U ziet deze melding, omdat deze website vereist dat een CSRF-cookie wordt " +"meegestuurd bij het verzenden van formulieren. Dit cookie is om " +"veiligheidsredenen vereist om er zeker van te zijn dat uw browser niet door " +"derden wordt gekaapt." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Als u cookies in uw webbrowser hebt uitgeschakeld, schakel deze dan weer in, " +"op zijn minst voor deze website, of voor ‘same-origin’-aanvragen." + +msgid "More information is available with DEBUG=True." +msgstr "Meer informatie is beschikbaar met DEBUG=True." + +msgid "No year specified" +msgstr "Geen jaar opgegeven" + +msgid "Date out of range" +msgstr "Datum buiten bereik" + +msgid "No month specified" +msgstr "Geen maand opgegeven" + +msgid "No day specified" +msgstr "Geen dag opgegeven" + +msgid "No week specified" +msgstr "Geen week opgegeven" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Geen %(verbose_name_plural)s beschikbaar" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Geen toekomstige %(verbose_name_plural)s beschikbaar, omdat %(class_name)s." +"allow_future de waarde False (Onwaar) heeft." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ongeldige datumtekst ‘%(datestr)s’ op basis van notatie ‘%(format)s’" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Geen %(verbose_name)s gevonden die voldoet aan de query" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Pagina is niet ‘last’ en kan ook niet naar een geheel getal worden " +"geconverteerd." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ongeldige pagina (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Lege lijst en ‘%(class_name)s.allow_empty’ is False." + +msgid "Directory indexes are not allowed here." +msgstr "Directoryindexen zijn hier niet toegestaan." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "‘%(path)s’ bestaat niet" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index van %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "De installatie is gelukt! Gefeliciteerd!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Uitgaveopmerkingen voor Django " +"%(version)s weergeven" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"U ziet deze pagina, omdat uw instellingenbestand DEBUG=True bevat en u geen URL's hebt geconfigureerd." + +msgid "Django Documentation" +msgstr "Django-documentatie" + +msgid "Topics, references, & how-to’s" +msgstr "Onderwerpen, referenties en instructies" + +msgid "Tutorial: A Polling App" +msgstr "Handleiding: een app voor peilingen" + +msgid "Get started with Django" +msgstr "Beginnen met Django" + +msgid "Django Community" +msgstr "Django-gemeenschap" + +msgid "Connect, get help, or contribute" +msgstr "Contact met anderen, hulp verkrijgen of bijdragen" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nl/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/nl/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/nl/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..936a7b4770cd5dac6322ee285cb59c6023cdc408 GIT binary patch literal 193 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Ð7hk_fD@{_d8u! z?>pJu=5S2IL9TZdwoceE+Ja<^OIGw+q1&4BMWgYed8vs}!?mUbMl!1t_wM0;1QC=O zQymMNMvi;UTeEjhOFOhqcNu1s%7zd&c5dsO48@NZ-RYhj0NvJEdmOm7w>wI?M#O}1 z?sw9NTAp|M#K=x0-xKzDI#l1gW&`bQQXPTwQqVY%_Z`}>M^F!6lUwZT0{+!I>JtmR zF}N7)MyWKWnXv~XS@E%zd1ePR8f#<~F8rlXBibfYZtA8~Tn1vxV3Zeng?}(%K4A@^ zOv;KZW!bqJ=EmHz@dT%fg=sp55hPE!W+6RVy)WZ&*I z1}>YESch}gmi!nFwtTtGY3+Dqi~VP89cr_&ZP}iQwR6U(G^@R&Uff#c2TfJ?eFyPF z;SRZil#6QHDz;jaJXBpLC=ao!roC-7pYWLcqrLE`dZcDz1I#$=W++$8>&R%SO;@9R zwjC1A?NxcVWsJnI?s(>aloQWBkDbUq?eF!;*yK;k#B3Q$Xx&DsHvU_E`TtbJo|ba5 zW;Jr>xaR)Zm;SL=q<`#X{s|NRXbGE3M|?H&uVI{i-u5m_%I?V4x|d}tPwrmk4Bl30 zJyijTCD;ne7aE<1p%VhNOo%Zk^0HUz>HPZ#}u{&dE%TY|JGM z-CT9DTfwtEaOO&C_r8sMWT4G{L!HwpDADN>MwM|mV;;AqrOYcmAdj{KQ~NmLVEG;_ z&pBMKp1jQ41@`Coj@;0myl?H_8STK|K$SAP2DJR#4rsj?+bv;}uWOZRf)LGgeta0& zAG|$!+8>Ksi>StiTblpa@9sDM{nw(UziGH4Al%{kA-*tfH|7s9wX=B+A+_}>YWt++ f8=LODe1FrfRT=yKY!8e>{&0tbM*iithuZ%IAn5?4 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po new file mode 100644 index 0000000..04b872e --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po @@ -0,0 +1,1305 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# hgrimelid , 2011 +# Jannis Leidel , 2011 +# jensadne , 2013 +# Sigurd Gartmann , 2012 +# Sivert Olstad, 2021 +# velmont , 2012 +# Vibeke Uthaug, 2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2021-09-21 10:22+0200\n" +"PO-Revision-Date: 2021-11-25 14:49+0000\n" +"Last-Translator: Sivert Olstad\n" +"Language-Team: Norwegian Nynorsk (http://www.transifex.com/django/django/" +"language/nn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabisk" + +msgid "Algerian Arabic" +msgstr "Arabisk (algersk)" + +msgid "Asturian" +msgstr "Asturiansk" + +msgid "Azerbaijani" +msgstr "Aserbajansk" + +msgid "Bulgarian" +msgstr "Bulgarsk" + +msgid "Belarusian" +msgstr "Kviterussisk" + +msgid "Bengali" +msgstr "Bengalsk" + +msgid "Breton" +msgstr "Bretonsk" + +msgid "Bosnian" +msgstr "Bosnisk" + +msgid "Catalan" +msgstr "Katalansk" + +msgid "Czech" +msgstr "Tsjekkisk" + +msgid "Welsh" +msgstr "Walisisk" + +msgid "Danish" +msgstr "Dansk" + +msgid "German" +msgstr "Tysk" + +msgid "Lower Sorbian" +msgstr "Lågsorbisk" + +msgid "Greek" +msgstr "Gresk" + +msgid "English" +msgstr "Engelsk" + +msgid "Australian English" +msgstr "Engelsk (australsk)" + +msgid "British English" +msgstr "Engelsk (britisk)" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spansk" + +msgid "Argentinian Spanish" +msgstr "Spansk (argentinsk)" + +msgid "Colombian Spanish" +msgstr "Spansk (kolombiansk)" + +msgid "Mexican Spanish" +msgstr "Spansk (meksikansk)" + +msgid "Nicaraguan Spanish" +msgstr "Spansk (nicaraguansk)" + +msgid "Venezuelan Spanish" +msgstr "Spansk (venezuelansk)" + +msgid "Estonian" +msgstr "Estisk" + +msgid "Basque" +msgstr "Baskisk" + +msgid "Persian" +msgstr "Persisk" + +msgid "Finnish" +msgstr "Finsk" + +msgid "French" +msgstr "Fransk" + +msgid "Frisian" +msgstr "Frisisk" + +msgid "Irish" +msgstr "Irsk" + +msgid "Scottish Gaelic" +msgstr "Skotsk-gaelisk" + +msgid "Galician" +msgstr "Galisisk" + +msgid "Hebrew" +msgstr "Hebraisk" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroatisk" + +msgid "Upper Sorbian" +msgstr "Høgsorbisk" + +msgid "Hungarian" +msgstr "Ungarsk" + +msgid "Armenian" +msgstr "Armensk" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesisk" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandsk" + +msgid "Italian" +msgstr "Italiensk" + +msgid "Japanese" +msgstr "Japansk" + +msgid "Georgian" +msgstr "Georgisk" + +msgid "Kabyle" +msgstr "Kabylsk" + +msgid "Kazakh" +msgstr "Kasakhisk" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreansk" + +msgid "Kyrgyz" +msgstr "Kirgisisk" + +msgid "Luxembourgish" +msgstr "Luxembourgsk" + +msgid "Lithuanian" +msgstr "Litauisk" + +msgid "Latvian" +msgstr "Latvisk" + +msgid "Macedonian" +msgstr "Makedonsk" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolsk" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malayisk" + +msgid "Burmese" +msgstr "Burmesisk" + +msgid "Norwegian Bokmål" +msgstr "Norsk (bokmål)" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Nederlandsk" + +msgid "Norwegian Nynorsk" +msgstr "Norsk (nynorsk)" + +msgid "Ossetic" +msgstr "Ossetisk" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polsk" + +msgid "Portuguese" +msgstr "Portugisisk" + +msgid "Brazilian Portuguese" +msgstr "Brasiliansk portugisisk" + +msgid "Romanian" +msgstr "Rumensk" + +msgid "Russian" +msgstr "Russisk" + +msgid "Slovak" +msgstr "Slovakisk" + +msgid "Slovenian" +msgstr "Slovensk" + +msgid "Albanian" +msgstr "Albansk" + +msgid "Serbian" +msgstr "Serbisk" + +msgid "Serbian Latin" +msgstr "Serbisk latin" + +msgid "Swedish" +msgstr "Svensk" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tadsjikisk" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkmen" +msgstr "Turkmensk" + +msgid "Turkish" +msgstr "Tyrkisk" + +msgid "Tatar" +msgstr "Tatarisk" + +msgid "Udmurt" +msgstr "Udmurtisk" + +msgid "Ukrainian" +msgstr "Ukrainsk" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Usbekisk" + +msgid "Vietnamese" +msgstr "Vietnamesisk" + +msgid "Simplified Chinese" +msgstr "Simplifisert kinesisk" + +msgid "Traditional Chinese" +msgstr "Tradisjonell kinesisk" + +msgid "Messages" +msgstr "Meldingar" + +msgid "Site Maps" +msgstr "Sidekart" + +msgid "Static Files" +msgstr "Statiske Filer" + +msgid "Syndication" +msgstr "Syndikering" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Sidenummeret er ikkje eit heiltal" + +msgid "That page number is less than 1" +msgstr "Sidenummeret er mindre enn 1" + +msgid "That page contains no results" +msgstr "Sida har ingen resultat" + +msgid "Enter a valid value." +msgstr "Oppgje ein gyldig verdi." + +msgid "Enter a valid URL." +msgstr "Oppgje ei gyldig nettadresse." + +msgid "Enter a valid integer." +msgstr "Oppgje eit gyldig heiltal." + +msgid "Enter a valid email address." +msgstr "Oppgje ei gyldig e-postadresse." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Oppgje ein gyldig \"slug\" som består av bokstavar, nummer, understrekar " +"eller bindestrekar." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Oppgje ein gyldig \"slug\" som består av Unicode bokstavar, nummer, " +"understrekar eller bindestrekar." + +msgid "Enter a valid IPv4 address." +msgstr "Oppgje ei gyldig IPv4-adresse." + +msgid "Enter a valid IPv6 address." +msgstr "Skriv inn ei gyldig IPv6-adresse." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Skriv inn ei gyldig IPv4- eller IPv6-adresse." + +msgid "Enter only digits separated by commas." +msgstr "Oppgje berre tall skild med komma." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Verdien må minimum ha %(limit_value)s teikn (den er %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Verdien må vere mindre enn eller lik %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Verdien må vere større enn eller lik %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "Verdien må ha minst %(limit_value)d teikn (den har %(show_value)d)." +msgstr[1] "Verdien må ha minst %(limit_value)d teikn (den har %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Verdien kan ikkje ha fleire enn %(limit_value)d teikn (den har " +"%(show_value)d)." +msgstr[1] "" +"Verdien kan ikkje ha fleire enn %(limit_value)d teikn (den har " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Oppgje eit tal." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Verdien kan ikkje ha meir enn %(max)s siffer totalt." +msgstr[1] "Verdien kan ikkje ha meir enn %(max)s siffer totalt." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Verdien kan ikkie ha meir enn %(max)s desimal." +msgstr[1] "Verdien kan ikkie ha meir enn %(max)s desimalar." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Verdien kan ikkje ha meir enn %(max)s siffer framanfor komma." +msgstr[1] "Verdien kan ikkje ha meir enn %(max)s siffer framanfor komma." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Filtypen “%(extension)s” er ikkje tillate. Tillate filtypar er: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null-teikn er ikkje tillate." + +msgid "and" +msgstr "og" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s med %(field_labels)s fins allereie." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Verdi %(value)r er eit ugyldig val." + +msgid "This field cannot be null." +msgstr "Feltet kan ikkje vere tomt." + +msgid "This field cannot be blank." +msgstr "Feltet kan ikkje vere tomt." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s med %(field_label)s fins allereie." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "%(field_label)s må vere unik for %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Felt av typen: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Verdien “%(value)s” må vere anten True eller False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Verdien “%(value)s” må vere anten True, False, eller None." + +msgid "Boolean (Either True or False)" +msgstr "Boolsk (True eller False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Tekst (opp til %(max_length)s teikn)" + +msgid "Comma-separated integers" +msgstr "Heiltal skild med komma" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Verdien “%(value)s” har eit ugyldig datoformat. Det må vere på formen YYYY-" +"MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Verdien “%(value)s” har rett format (YYYY-MM-DD) men er ein ugyldig dato." + +msgid "Date (without time)" +msgstr "Dato (utan tid)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Verdien “%(value)s” har eit ugyldig format. Det må vere på formen YYYY-MM-DD " +"HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Verdien “%(value)s” har rett format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) men " +"er ein ugyldig dato eller klokkeslett." + +msgid "Date (with time)" +msgstr "Dato (med tid)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Verdien “%(value)s” må vere eit desimaltal." + +msgid "Decimal number" +msgstr "Desimaltal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Verdien “%(value)s” har eit ugyldig format. Det må vere på formen [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Varigskap" + +msgid "Email address" +msgstr "E-postadresse" + +msgid "File path" +msgstr "Filsti" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Verdien “%(value)s” må vere eit flyttal." + +msgid "Floating point number" +msgstr "Flyttal" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Verdien “%(value)s” må vere eit heiltal." + +msgid "Integer" +msgstr "Heiltal" + +msgid "Big (8 byte) integer" +msgstr "Stort (8 bitar) heiltal" + +msgid "Small integer" +msgstr "Lite heiltal" + +msgid "IPv4 address" +msgstr "IPv4-adresse" + +msgid "IP address" +msgstr "IP-adresse" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Verdien “%(value)s” må vere anten None, True, eller False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolsk (True, False eller None)" + +msgid "Positive big integer" +msgstr "Positivt stort heiltal" + +msgid "Positive integer" +msgstr "Positivt heiltal" + +msgid "Positive small integer" +msgstr "Positivt lite heiltal" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (opp til %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Verdien “%(value)s” har eit ugyldig format. Det må vere på formen HH:MM[:ss[." +"uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Verdien “%(value)s” har rett format (HH:MM[:ss[.uuuuuu]]), men er eit " +"ugyldig klokkeslett." + +msgid "Time" +msgstr "Tid" + +msgid "URL" +msgstr "Nettadresse" + +msgid "Raw binary data" +msgstr "Rå binærdata" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” er ikkje ein gyldig UUID." + +msgid "Universally unique identifier" +msgstr "Universelt unik identifikator." + +msgid "File" +msgstr "Fil" + +msgid "Image" +msgstr "Bilete" + +msgid "A JSON object" +msgstr "Eit JSON-objekt" + +msgid "Value must be valid JSON." +msgstr "Verdi må vere gyldig JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s-instans med %(field)s %(value)r eksisterer ikkje." + +msgid "Foreign Key (type determined by related field)" +msgstr "Fremmednøkkel (type bestemt av relatert felt)" + +msgid "One-to-one relationship" +msgstr "Ein-til-ein-forhold" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s-relasjon" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s-relasjonar" + +msgid "Many-to-many relationship" +msgstr "Mange-til-mange-forhold" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Feltet er påkravd." + +msgid "Enter a whole number." +msgstr "Oppgje eit heiltal." + +msgid "Enter a valid date." +msgstr "Oppgje ein gyldig dato." + +msgid "Enter a valid time." +msgstr "Oppgje eit gyldig tidspunkt." + +msgid "Enter a valid date/time." +msgstr "Oppgje gyldig dato og tidspunkt." + +msgid "Enter a valid duration." +msgstr "Oppgje ein gyldig varigskap." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Antal dagar må vere mellom {min_days} og {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Inga fil vart sendt. Sjekk \"encoding\"-typen på skjemaet." + +msgid "No file was submitted." +msgstr "Inga fil vart sendt." + +msgid "The submitted file is empty." +msgstr "Fila er tom." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Filnamnet kan ikkje ha fleire enn %(max)d teikn (det har %(length)d)." +msgstr[1] "" +"Filnamnet kan ikkje ha fleire enn %(max)d teikn (det har %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Last enten opp ei fil eller huk av i avkryssingsboksen." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Last opp eit gyldig bilete. Fila du lasta opp var ødelagt eller ikkje eit " +"bilete." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Velg eit gyldig valg. %(value)s er ikkje eit av dei tilgjengelege valga." + +msgid "Enter a list of values." +msgstr "Oppgje ei liste med verdiar." + +msgid "Enter a complete value." +msgstr "Oppgje ein fullstendig verdi." + +msgid "Enter a valid UUID." +msgstr "Oppgje ein gyldig UUID." + +msgid "Enter a valid JSON." +msgstr "Oppgje gyldig JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Gøymt felt %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm data manglar eller har blitt tukla med. Felt som manglar: " +"%(field_names)s. Du burde kanskje sende ein feilrapport dersom problemet " +"fortset. " + +#, python-format +msgid "Please submit at most %d form." +msgid_plural "Please submit at most %d forms." +msgstr[0] "Ver vennleg å ikkje sende inn fleire enn %d skjema. " +msgstr[1] "Ver vennleg å ikkje sende inn fleire enn %d skjema. " + +#, python-format +msgid "Please submit at least %d form." +msgid_plural "Please submit at least %d forms." +msgstr[0] "Ver vennleg å sende inn minst %d skjema. " +msgstr[1] "Ver vennleg å sende inn minst %d skjema. " + +msgid "Order" +msgstr "Rekkefølge" + +msgid "Delete" +msgstr "Slett" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Korriger dupliserte data for %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Korriger dupliserte data for %(field)s, som må vere unike." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Korriger dupliserte data for %(field_name)s, som må vere unike for " +"%(lookup)s i %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Korriger dei dupliserte verdiane nedanfor." + +msgid "The inline value did not match the parent instance." +msgstr "Inline verdien stemmer ikkje overeins med forelder-instansen.  " + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Velg eit gyldig valg. Valget er ikkje eit av dei tilgjengelege valga." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” er ikkje ein gyldig verdi." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s kunne ikkje bli tolka i tidssona %(current_timezone)s; Verdien " +"er anten tvetydig eller ugyldig." + +msgid "Clear" +msgstr "Tøm" + +msgid "Currently" +msgstr "Noverande" + +msgid "Change" +msgstr "Endre" + +msgid "Unknown" +msgstr "Ukjend" + +msgid "Yes" +msgstr "Ja" + +msgid "No" +msgstr "Nei" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ja,nei,kanskje" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "midnatt" + +msgid "noon" +msgstr "12:00" + +msgid "Monday" +msgstr "måndag" + +msgid "Tuesday" +msgstr "tysdag" + +msgid "Wednesday" +msgstr "onsdag" + +msgid "Thursday" +msgstr "torsdag" + +msgid "Friday" +msgstr "fredag" + +msgid "Saturday" +msgstr "laurdag" + +msgid "Sunday" +msgstr "søndag" + +msgid "Mon" +msgstr "man" + +msgid "Tue" +msgstr "tys" + +msgid "Wed" +msgstr "ons" + +msgid "Thu" +msgstr "tor" + +msgid "Fri" +msgstr "fre" + +msgid "Sat" +msgstr "lau" + +msgid "Sun" +msgstr "søn" + +msgid "January" +msgstr "januar" + +msgid "February" +msgstr "februar" + +msgid "March" +msgstr "mars" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "mai" + +msgid "June" +msgstr "juni" + +msgid "July" +msgstr "juli" + +msgid "August" +msgstr "august" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "desember" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mars" + +msgid "apr" +msgstr "april" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "juni" + +msgid "jul" +msgstr "juli" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "des" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mars" + +msgctxt "abbrev. month" +msgid "April" +msgstr "april" + +msgctxt "abbrev. month" +msgid "May" +msgstr "mai" + +msgctxt "abbrev. month" +msgid "June" +msgstr "juni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "juli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sep." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "des." + +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +msgctxt "alt. month" +msgid "March" +msgstr "Mars" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Mai" + +msgctxt "alt. month" +msgid "June" +msgstr "Juni" + +msgctxt "alt. month" +msgid "July" +msgstr "Juli" + +msgctxt "alt. month" +msgid "August" +msgstr "August" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "Desember" + +msgid "This is not a valid IPv6 address." +msgstr "Dette er ikkje ei gyldig IPv6-adresse." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "eller" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d år" +msgstr[1] "%(num)d år" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d månad" +msgstr[1] "%(num)d månader" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d veke" +msgstr[1] "%(num)d veker" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dag" +msgstr[1] "%(num)d dagar" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d time" +msgstr[1] "%(num)d timar" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minutt" +msgstr[1] "%(num)d minutt" + +msgid "Forbidden" +msgstr "Forbydd" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-verifikasjon feila. Førespurnad avbrote." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Du ser denne meldinga på grunn av at det ikkje blei sendt nokon \"Referer\" " +"hovud frå din nettlesar, noko denne HTTPS-sida krev. Dette hovudet er eit " +"krav på grunn av sikkerheit, for å hindre at din nettlesar er kapra av " +"tredjepartar. " + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Dersom du har konfigurert nettlesaren din til å deaktiverere \"Referer\"-" +"hovud må du aktivere dei på nytt, i det minste for denne nettsida, eller for " +"HTTPS-tilkoplingar eller for førespurnadar av same opphav. " + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Dersom du brukar -taggen " +"eller inkludera \"Referrer-Policy: no-referrer\" hovud, ver vennleg å fjerne " +"dei. CSRF-vern krev \"Referer\" hovud for å gjennomføre strenge kontrollar " +"av referer. Dersom du har bekymringar for personvern bruk alternativ som for lenkjer til tredepartssider" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Du ser denne meldinga fordi denne nettsida krev ein CSRF informasjonskapsel " +"når du sender inn skjema. Denne informasjonskapselen er eit krav på grunn av " +"sikkerheit, for å forsikre at nettlesaren din ikkje er kapra av " +"tredjepartar. " + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Dersom du har konfigurert nettlesaren din til å deaktivere " +"informasjonskapslar, ver vennleg å aktiver dei på nytt, i det minste for " +"denne nettsida, eller for førespurnader av same opphav. " + +msgid "More information is available with DEBUG=True." +msgstr "Meir informasjon er tilgjengeleg med DEBUG=True." + +msgid "No year specified" +msgstr "Årstal ikkje spesifisert" + +msgid "Date out of range" +msgstr "Dato er utanfor rekkjevidde" + +msgid "No month specified" +msgstr "Månad ikkje spesifisert" + +msgid "No day specified" +msgstr "Dag ikkje spesifisert" + +msgid "No week specified" +msgstr "Veke ikkje spesifisert" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s tilgjengeleg" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Framtidig %(verbose_name_plural)s er ikkje tilgjengeleg fordi %(class_name)s." +"allow_future er sett til False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ugyldig datostreng \"%(datestr)s\" grunna format \"%(format)s\"" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Fann ingen %(verbose_name)s som korresponderte med spørringa" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Sida er ikkje \"last\" og den kan heller ikkje konverterast til eit heiltal. " + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ugyldig side (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tom liste og \"%(class_name)s.allow_empty\" er False." + +msgid "Directory indexes are not allowed here." +msgstr "Mappeindeksar er ikkje tillate her." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" eksisterer ikkje" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Indeks for %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Installasjonen var vellykka! Gratulerer!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Sjå utgjevingsnotat for Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Du ser denne sida fordi DEBUG=True er i innstillingsfila di og du ikkje har konfigurert noka " +"nettadresser." + +msgid "Django Documentation" +msgstr "Django-dokumentasjon" + +msgid "Topics, references, & how-to’s" +msgstr "Tema, referansar, & how-tos" + +msgid "Tutorial: A Polling App" +msgstr "Opplæring: Ein avstemmingsapp" + +msgid "Get started with Django" +msgstr "Kom i gang med Django" + +msgid "Django Community" +msgstr "Django Nettsamfunn" + +msgid "Connect, get help, or contribute" +msgstr "Koble, få hjelp, eller bidra" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nn/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/nn/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/nn/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..45a13a5ef4b270c4f88e62db9d707b342411098c GIT binary patch literal 193 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po new file mode 100644 index 0000000..f3badb7 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/os/LC_MESSAGES/django.po @@ -0,0 +1,1235 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Soslan Khubulov , 2013 +# Soslan Khubulov , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Ossetic (http://www.transifex.com/django/django/language/" +"os/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: os\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Африкаанс" + +msgid "Arabic" +msgstr "Араббаг" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Тӕтӕйраг" + +msgid "Bulgarian" +msgstr "Болгайраг" + +msgid "Belarusian" +msgstr "Беларусаг" + +msgid "Bengali" +msgstr "Бенгалаг" + +msgid "Breton" +msgstr "Бретойнаг" + +msgid "Bosnian" +msgstr "Босниаг" + +msgid "Catalan" +msgstr "Каталайнаг" + +msgid "Czech" +msgstr "Чехаг" + +msgid "Welsh" +msgstr "Уельсаг" + +msgid "Danish" +msgstr "Даниаг" + +msgid "German" +msgstr "Немыцаг" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Грекъаг" + +msgid "English" +msgstr "Англисаг" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "Бритайнаг англисаг" + +msgid "Esperanto" +msgstr "Есперанто" + +msgid "Spanish" +msgstr "Испайнаг" + +msgid "Argentinian Spanish" +msgstr "Аргентинаг испайнаг" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Мексикайнаг Испайнаг" + +msgid "Nicaraguan Spanish" +msgstr "Никарагуайаг испайнаг" + +msgid "Venezuelan Spanish" +msgstr "Венесуелаг испайнаг" + +msgid "Estonian" +msgstr "Эстойнаг" + +msgid "Basque" +msgstr "Баскаг" + +msgid "Persian" +msgstr "Персайнаг" + +msgid "Finnish" +msgstr "Финнаг" + +msgid "French" +msgstr "Францаг" + +msgid "Frisian" +msgstr "Фризаг" + +msgid "Irish" +msgstr "Ирландиаг" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Галициаг" + +msgid "Hebrew" +msgstr "Иврит" + +msgid "Hindi" +msgstr "Хинди" + +msgid "Croatian" +msgstr "Хорватаг" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Венгриаг" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Интерлингва" + +msgid "Indonesian" +msgstr "Индонезиаг" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Исландаг" + +msgid "Italian" +msgstr "Италиаг" + +msgid "Japanese" +msgstr "Япойнаг" + +msgid "Georgian" +msgstr "Гуырдзиаг" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Казахаг" + +msgid "Khmer" +msgstr "Хмераг" + +msgid "Kannada" +msgstr "Каннадаг" + +msgid "Korean" +msgstr "Корейаг" + +msgid "Luxembourgish" +msgstr "Люксембургаг" + +msgid "Lithuanian" +msgstr "Литвайаг" + +msgid "Latvian" +msgstr "Латвийаг" + +msgid "Macedonian" +msgstr "Мӕчъидон" + +msgid "Malayalam" +msgstr "Малайаг" + +msgid "Mongolian" +msgstr "Монголиаг" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "Бурмизаг" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Непалаг" + +msgid "Dutch" +msgstr "Нидерландаг" + +msgid "Norwegian Nynorsk" +msgstr "Норвегийаг Нинорск" + +msgid "Ossetic" +msgstr "Ирон" + +msgid "Punjabi" +msgstr "Пенджабаг" + +msgid "Polish" +msgstr "Полаг" + +msgid "Portuguese" +msgstr "Португалаг" + +msgid "Brazilian Portuguese" +msgstr "Бразилаг португалаг" + +msgid "Romanian" +msgstr "Румынаг" + +msgid "Russian" +msgstr "Уырыссаг" + +msgid "Slovak" +msgstr "Словакиаг" + +msgid "Slovenian" +msgstr "Словенаг" + +msgid "Albanian" +msgstr "Албайнаг" + +msgid "Serbian" +msgstr "Сербаг" + +msgid "Serbian Latin" +msgstr "Латинаг Сербаг" + +msgid "Swedish" +msgstr "Шведаг" + +msgid "Swahili" +msgstr "Суахили" + +msgid "Tamil" +msgstr "Тамилаг" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Thai" +msgstr "Тайаг" + +msgid "Turkish" +msgstr "Туркаг" + +msgid "Tatar" +msgstr "Тӕтӕйраг" + +msgid "Udmurt" +msgstr "Удмуртаг" + +msgid "Ukrainian" +msgstr "Украинаг" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Вьетнамаг" + +msgid "Simplified Chinese" +msgstr "Ӕнцонгонд Китайаг" + +msgid "Traditional Chinese" +msgstr "Традицион Китайаг" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Раст бӕрц бафысс." + +msgid "Enter a valid URL." +msgstr "Раст URL бафысс." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "Раст email адрис бафысс." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Раст IPv4 адрис бафысс." + +msgid "Enter a valid IPv6 address." +msgstr "Раст IPv6 адрис бафысс." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Раст IPv4 кӕнӕ IPv6 адрис бафысс." + +msgid "Enter only digits separated by commas." +msgstr "Бафысс ӕрмӕст нымӕцтӕ, къӕдзгуытӕй дихгонд." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Ацы бӕрц хъуамӕ уа %(limit_value)s (у %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Ацы бӕрц хъуамӕ уа %(limit_value)s, кӕнӕ цъусдӕр." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Ацы бӕрц хъуамӕ уа %(limit_value)s, кӕнӕ цъусдӕр." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Дӕ хъус бадар цӕмӕй ам %(limit_value)d дамгъӕ уӕддӕр уа (ис дзы " +"%(show_value)d)." +msgstr[1] "" +"Дӕ хъус бадар цӕмӕй ам %(limit_value)d дамгъӕйы уӕддӕр уа (ис дзы " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Дӕ хъус бадар цӕмӕй ам %(limit_value)d дамгъӕйӕ фылдӕр ма уа (ис дзы " +"%(show_value)d)." +msgstr[1] "" +"Дӕ хъус бадар цӕмӕй ам %(limit_value)d дамгъӕйӕ фылдӕр ма уа (ис дзы " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Бафысс нымӕц." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Дӕ хъус бадар цӕмӕй иууыл иумӕ %(max)s цифрӕйӕ фылдӕр уой." +msgstr[1] "Дӕ хъус бадар цӕмӕй иууыл иумӕ %(max)s цифрӕйӕ фылдӕр уой." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Дӕ хъус бадар цӕмӕй дӕсон бынӕттӕ %(max)s-ӕй фылдӕр ма уой." +msgstr[1] "Дӕ хъус бадар цӕмӕй дӕсон бынӕттӕ %(max)s-ӕй фылдӕр ма уой." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Дӕ хъус бадар цӕмӕй дӕсон стъӕлфы размӕ %(max)s цифрӕйӕ фылдӕр ма уа." +msgstr[1] "" +"Дӕ хъус бадар цӕмӕй дӕсон стъӕлфы размӕ %(max)s цифрӕйӕ фылдӕр ма уа." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "ӕмӕ" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Ацы быдыр нул ма хъуамӕ уа." + +msgid "This field cannot be blank." +msgstr "Ацы быдыр афтид ма хъуамӕ уа." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s ацы %(field_label)s-имӕ нырид ис." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Быдыры хуыз: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Булон (Бӕлвырд кӕнӕ Мӕнг)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Рӕнхъ (%(max_length)s-ы йонг)" + +msgid "Comma-separated integers" +msgstr "Къӕдзыгӕй хицӕнгонд ӕгас нымӕцтӕ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Бон (ӕнӕ рӕстӕг)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Бон (ӕд рӕстӕг)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Дӕсон нымӕц" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Электрон посты адрис" + +msgid "File path" +msgstr "Файлы фӕт" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Уӕгъд стъӕлфимӕ нымӕц" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Ӕгас нымӕц" + +msgid "Big (8 byte) integer" +msgstr "Стыр (8 байты) ӕгас нымӕц" + +msgid "IPv4 address" +msgstr "IPv4 адрис" + +msgid "IP address" +msgstr "IP адрис" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Булон (Бӕлвырд, Мӕнг кӕнӕ Ницы)" + +msgid "Positive integer" +msgstr "Позитивон ӕгас нымӕц" + +msgid "Positive small integer" +msgstr "Позитивон гыццыл ӕгас нымӕц" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Слаг (ӕппӕты фылдӕр %(max_length)s)" + +msgid "Small integer" +msgstr "Гыццыл ӕгас нымӕц" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Рӕстӕг" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Хом бинарон рардтӕ" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Ныв" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Ӕттагон Амонӕн (хӕстӕг быдырӕй бӕрӕггонд хуыз)" + +msgid "One-to-one relationship" +msgstr "Иуӕн-иу бастдзинад" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Бирӕйӕн-бирӕ бастдзинад" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Ацы быдыр ӕнӕмӕнг у." + +msgid "Enter a whole number." +msgstr "Бафысс ӕнӕхъӕн нымӕц." + +msgid "Enter a valid date." +msgstr "Раст бон бафысс." + +msgid "Enter a valid time." +msgstr "Раст рӕстӕг бафысс." + +msgid "Enter a valid date/time." +msgstr "Раст бон/рӕстӕг бафысс." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ницы файл уыд лӕвӕрд. Абӕрӕг кӕн формӕйы кодкӕнынады хуыз." + +msgid "No file was submitted." +msgstr "Ницы файл уыд лӕвӕрд." + +msgid "The submitted file is empty." +msgstr "Лӕвӕрд файл афтид у." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Дӕ хъус бадар цӕмӕй ацы файлы номы %(max)d дамгъӕйӕ фылдӕр ма уа(ис дзы " +"%(length)d)." +msgstr[1] "" +"Дӕ хъус бадар цӕмӕй ацы файлы номы %(max)d дамгъӕйӕ фылдӕр ма уа(ис дзы " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Дӕ хорзӕхӕй, кӕнӕ бадӕтт файл, кӕнӕ банысан кӕн сыгъдӕг чекбокс. Дыууӕ иумӕ " +"нӕ." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Раст ныв бавгӕн. Ды цы файл бавгӕдтай, уый кӕнӕ ныв нӕ уыд, кӕнӕ хӕлд ныв " +"уыд." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Раст фадат равзар. %(value)s фадӕтты ӕхсӕн нӕй." + +msgid "Enter a list of values." +msgstr "Бафысс мидисты номхыгъд." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Ӕмбӕхст быдыр %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Рад" + +msgid "Delete" +msgstr "Схафын" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Дӕ хорзӕхӕй, %(field)s-ы дывӕр рардтӕ сраст кӕн." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Дӕ хорзӕхӕй, %(field)s-ы дывӕр рардтӕ сраст кӕн. Хъуамӕ уникалон уа." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Дӕ хорзӕхӕй, %(field_name)s-ы дывӕр рардтӕ сраст кӕн. Хъуамӕ %(date_field)s-" +"ы %(lookup)s-ӕн уникалон уа. " + +msgid "Please correct the duplicate values below." +msgstr "Дӕ хорзӕхӕй, бындӕр цы дывӕр рардтӕ ис, уыдон сраст кӕн." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Раст фадат равзар. УКыцы фадат фадӕтты ӕхсӕн нӕй." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Сыгъдӕг" + +msgid "Currently" +msgstr "Ныр" + +msgid "Change" +msgstr "Фӕивын" + +msgid "Unknown" +msgstr "Ӕнӕбӕрӕг" + +msgid "Yes" +msgstr "О" + +msgid "No" +msgstr "Нӕ" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "о,нӕ,гӕнӕн ис" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" +msgstr[1] "%(size)d байты" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s ГБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "ӕ.ф." + +msgid "a.m." +msgstr "ӕ.р." + +msgid "PM" +msgstr "ӔФ" + +msgid "AM" +msgstr "ӔР" + +msgid "midnight" +msgstr "ӕмбисӕхсӕв" + +msgid "noon" +msgstr "ӕмбисбон" + +msgid "Monday" +msgstr "Къуырисӕр" + +msgid "Tuesday" +msgstr "Дыццӕг" + +msgid "Wednesday" +msgstr "Ӕртыццӕг" + +msgid "Thursday" +msgstr "Цыппӕрӕм" + +msgid "Friday" +msgstr "Майрӕмбон" + +msgid "Saturday" +msgstr "Сабат" + +msgid "Sunday" +msgstr "Хуыцаубон" + +msgid "Mon" +msgstr "Крс" + +msgid "Tue" +msgstr "Дцг" + +msgid "Wed" +msgstr "Ӕрт" + +msgid "Thu" +msgstr "Цпр" + +msgid "Fri" +msgstr "Мрб" + +msgid "Sat" +msgstr "Сбт" + +msgid "Sun" +msgstr "Хцб" + +msgid "January" +msgstr "Январь" + +msgid "February" +msgstr "Февраль" + +msgid "March" +msgstr "Мартъи" + +msgid "April" +msgstr "Апрель" + +msgid "May" +msgstr "Май" + +msgid "June" +msgstr "Июнь" + +msgid "July" +msgstr "Июль" + +msgid "August" +msgstr "Август" + +msgid "September" +msgstr "Сентябрь" + +msgid "October" +msgstr "Октябрь" + +msgid "November" +msgstr "Ноябрь" + +msgid "December" +msgstr "Декабрь" + +msgid "jan" +msgstr "янв" + +msgid "feb" +msgstr "фев" + +msgid "mar" +msgstr "мар" + +msgid "apr" +msgstr "апр" + +msgid "may" +msgstr "май" + +msgid "jun" +msgstr "июн" + +msgid "jul" +msgstr "июл" + +msgid "aug" +msgstr "авг" + +msgid "sep" +msgstr "сен" + +msgid "oct" +msgstr "окт" + +msgid "nov" +msgstr "ноя" + +msgid "dec" +msgstr "дек" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Янв." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Фев." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Мартъи" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Апрель" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Май" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Июнь" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Июль" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Сен." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ноя." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дек." + +msgctxt "alt. month" +msgid "January" +msgstr "Январь" + +msgctxt "alt. month" +msgid "February" +msgstr "Февраль" + +msgctxt "alt. month" +msgid "March" +msgstr "Мартъи" + +msgctxt "alt. month" +msgid "April" +msgstr "Апрель" + +msgctxt "alt. month" +msgid "May" +msgstr "Май" + +msgctxt "alt. month" +msgid "June" +msgstr "Июнь" + +msgctxt "alt. month" +msgid "July" +msgstr "Июль" + +msgctxt "alt. month" +msgid "August" +msgstr "Август" + +msgctxt "alt. month" +msgid "September" +msgstr "Сентябрь" + +msgctxt "alt. month" +msgid "October" +msgstr "Октябрь" + +msgctxt "alt. month" +msgid "November" +msgstr "Ноябрь" + +msgctxt "alt. month" +msgid "December" +msgstr "Декабрь" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "кӕнӕ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d аз" +msgstr[1] "%d азы" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d мӕй" +msgstr[1] "%d мӕйы" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d къуыри" +msgstr[1] "%d къуырийы" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d бон" +msgstr[1] "%d боны" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d сахат" +msgstr[1] "%d сахаты" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d минут" +msgstr[1] "%d минуты" + +msgid "0 minutes" +msgstr "0 минуты" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "Аз амынд нӕ уыд" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Мӕй амынд нӕ уыд" + +msgid "No day specified" +msgstr "Бон амынд нӕ уыд" + +msgid "No week specified" +msgstr "Къуыри амынд нӕ уыд" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Ницы %(verbose_name_plural)s ис" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Фидӕн %(verbose_name_plural)s-мӕ бавналӕн нӕй, уымӕн ӕмӕ %(class_name)s." +"allow_future Мӕнг у." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Домӕнӕн ницы %(verbose_name)s ӕмбӕлы" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Мӕнг фарс (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Ам директориты индекстӕ нӕй гӕнӕн." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s-ы индекс" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..a8fa88b4edae2b660b2ccf5d1c5c893083a0d026 GIT binary patch literal 11253 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 B%@P0r literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po new file mode 100644 index 0000000..d71b5f7 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po @@ -0,0 +1,1213 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# A S Alam , 2011,2013,2015 +# Jannis Leidel , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Panjabi (Punjabi) (http://www.transifex.com/django/django/" +"language/pa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pa\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "ਅਫਰੀਕੀ" + +msgid "Arabic" +msgstr "ਅਰਬੀ" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "ਅਜ਼ਰਬਾਈਜਾਨੀ" + +msgid "Bulgarian" +msgstr "ਬੁਲਗਾਰੀਆਈ" + +msgid "Belarusian" +msgstr "ਬੇਲਾਰੂਸੀ" + +msgid "Bengali" +msgstr "ਬੰਗਾਲੀ" + +msgid "Breton" +msgstr "ਬਰੇਟੋਨ" + +msgid "Bosnian" +msgstr "ਬੋਸਨੀਆਈ" + +msgid "Catalan" +msgstr "ਕਾਟਾਲਾਨ" + +msgid "Czech" +msgstr "ਚੈੱਕ" + +msgid "Welsh" +msgstr "ਵੈਲਸ਼" + +msgid "Danish" +msgstr "ਡੈਨਿਸ਼" + +msgid "German" +msgstr "ਜਰਮਨ" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "ਗਰੀਕ" + +msgid "English" +msgstr "ਅੰਗਰੇਜ਼ੀ" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "ਬਰਤਾਨੀਵੀਂ ਅੰਗਰੇਜ਼ੀ" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "ਸਪੇਨੀ" + +msgid "Argentinian Spanish" +msgstr "ਅਰਜਨਟੀਨੀ ਸਪੇਨੀ" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "ਮੈਕਸੀਕਨ ਸਪੇਨੀ" + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "ਈਸਟੋਨੀਆਈ" + +msgid "Basque" +msgstr "ਬਸਕਿਊ" + +msgid "Persian" +msgstr "ਪਰਸ਼ੀਆਈ" + +msgid "Finnish" +msgstr "ਫੈਨਿਸ਼" + +msgid "French" +msgstr "ਫਰੈਂਚ" + +msgid "Frisian" +msgstr "ਫ਼ਾਰਸੀ" + +msgid "Irish" +msgstr "ਆਈਰਸ਼" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "ਗਲੀਸੀਆਈ" + +msgid "Hebrew" +msgstr "ਹੈਬਰਿਊ" + +msgid "Hindi" +msgstr "ਹਿੰਦੀ" + +msgid "Croatian" +msgstr "ਕਰੋਆਟੀਆਈ" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "ਹੰਗਰੀਆਈ" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "ਇੰਡੋਨੇਸ਼ੀਆਈ" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "ਆਈਸਲੈਂਡਿਕ" + +msgid "Italian" +msgstr "ਇਤਾਲਵੀ" + +msgid "Japanese" +msgstr "ਜਾਪਾਨੀ" + +msgid "Georgian" +msgstr "ਜਾਰਜੀਆਈ" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "ਕਜ਼ਾਖ" + +msgid "Khmer" +msgstr "ਖਮੀਰ" + +msgid "Kannada" +msgstr "ਕੰਨੜ" + +msgid "Korean" +msgstr "ਕੋਰੀਆਈ" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "ਲੀਥੁਨੀਆਈ" + +msgid "Latvian" +msgstr "ਲਾਟਵੀਅਨ" + +msgid "Macedonian" +msgstr "ਮੈਕਡੋਨੀਆਈ" + +msgid "Malayalam" +msgstr "ਮਲਿਆਲਮ" + +msgid "Mongolian" +msgstr "ਮੰਗੋਲੀਆਈ" + +msgid "Marathi" +msgstr "ਮਰਾਠੀ" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "ਨੇਪਾਲੀ" + +msgid "Dutch" +msgstr "ਡੱਚ" + +msgid "Norwegian Nynorsk" +msgstr "ਨਾਰਵੇਗੀਅਨ ਨਯਨੋਰਸਕ" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "ਪੰਜਾਬੀ" + +msgid "Polish" +msgstr "ਪੋਲੈਂਡੀ" + +msgid "Portuguese" +msgstr "ਪੁਰਤਗਾਲੀ" + +msgid "Brazilian Portuguese" +msgstr "ਬਰਾਜ਼ੀਲੀ ਪੁਰਤਗਾਲੀ" + +msgid "Romanian" +msgstr "ਰੋਮਾਨੀਆਈ" + +msgid "Russian" +msgstr "ਰੂਸੀ" + +msgid "Slovak" +msgstr "ਸਲੋਵਾਕ" + +msgid "Slovenian" +msgstr "ਸਲੋਵੀਨੀਆਈ" + +msgid "Albanian" +msgstr "ਅਲਬੀਨੀਆਈ" + +msgid "Serbian" +msgstr "ਸਰਬੀਆਈ" + +msgid "Serbian Latin" +msgstr "ਸਰਬੀਆਈ ਲੈਟਿਨ" + +msgid "Swedish" +msgstr "ਸਵੀਡਨੀ" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "ਤਾਮਿਲ" + +msgid "Telugu" +msgstr "ਤੇਲਗੂ" + +msgid "Thai" +msgstr "ਥਾਈ" + +msgid "Turkish" +msgstr "ਤੁਰਕ" + +msgid "Tatar" +msgstr "ਤਤਾਰ" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "ਯੂਕਰੇਨੀ" + +msgid "Urdu" +msgstr "ਉਰਦੂ" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "ਵੀਅਤਨਾਮੀ" + +msgid "Simplified Chinese" +msgstr "ਸਧਾਰਨ ਚੀਨੀ" + +msgid "Traditional Chinese" +msgstr "ਮੂਲ ਚੀਨੀ" + +msgid "Messages" +msgstr "ਸੁਨੇਹੇ" + +msgid "Site Maps" +msgstr "ਸਾਈਟ ਖਾਕੇ" + +msgid "Static Files" +msgstr "ਸਥਿਰ ਫਾਈਲਾਂ" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "ਠੀਕ ਮੁੱਲ ਦਿਓ" + +msgid "Enter a valid URL." +msgstr "ਠੀਕ URL ਦਿਉ।" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "ਢੁੱਕਵਾਂ ਈਮੇਲ ਸਿਰਨਾਵਾਂ ਦਿਉ ਜੀ।" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "" + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "ਨੰਬਰ ਦਿਓ।" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "ਅਤੇ" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "" + +msgid "This field cannot be blank." +msgstr "ਇਹ ਖੇਤਰ ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ ਹੈ।" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "ਖੇਤਰ ਦੀ ਕਿਸਮ: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "ਮਿਤੀ (ਬਿਨਾਂ ਸਮਾਂ)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "ਮਿਤੀ (ਸਮੇਂ ਨਾਲ)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "ਦਸ਼ਮਲਵ ਅੰਕ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "ਅੰਤਰਾਲ" + +msgid "Email address" +msgstr "ਈਮੇਲ ਐਡਰੈੱਸ" + +msgid "File path" +msgstr "ਫਾਇਲ ਪਾਥ" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "ਅੰਕ" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "IPv4 address" +msgstr "IPv4 ਸਿਰਨਾਵਾਂ" + +msgid "IP address" +msgstr "IP ਐਡਰੈੱਸ" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "ਟੈਕਸਟ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "ਸਮਾਂ" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "ਫਾਇਲ" + +msgid "Image" +msgstr "ਚਿੱਤਰ" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "ਇੱਕ-ਤੋਂ-ਇੱਕ ਸਬੰਧ" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "ਕਈ-ਤੋਂ-ਕਈ ਸਬੰਧ" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "ਇਹ ਖੇਤਰ ਲਾਜ਼ਮੀ ਹੈ।" + +msgid "Enter a whole number." +msgstr "ਪੂਰਨ ਨੰਬਰ ਦਿਉ।" + +msgid "Enter a valid date." +msgstr "ਠੀਕ ਮਿਤੀ ਦਿਓ।" + +msgid "Enter a valid time." +msgstr "ਠੀਕ ਸਮਾਂ ਦਿਓ।" + +msgid "Enter a valid date/time." +msgstr "ਠੀਕ ਮਿਤੀ/ਸਮਾਂ ਦਿਓ।" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +msgid "No file was submitted." +msgstr "ਕੋਈ ਫਾਇਲ ਨਹੀਂ ਭੇਜੀ।" + +msgid "The submitted file is empty." +msgstr "ਦਿੱਤੀ ਫਾਇਲ ਖਾਲੀ ਹੈ।" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "ਮੁੱਲ ਦੀ ਲਿਸਟ ਦਿਓ।" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "ਲੜੀ" + +msgid "Delete" +msgstr "ਹਟਾਓ" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "ਸਾਫ਼ ਕਰੋ" + +msgid "Currently" +msgstr "ਮੌਜੂਦਾ" + +msgid "Change" +msgstr "ਬਦਲੋ" + +msgid "Unknown" +msgstr "ਅਣਜਾਣ" + +msgid "Yes" +msgstr "ਹਾਂ" + +msgid "No" +msgstr "ਨਹੀਂ" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "ਹਾਂ,ਨਹੀਂ,ਸ਼ਾਇਦ" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d ਬਾਈਟ" +msgstr[1] "%(size)d ਬਾਈਟ" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "ਸ਼ਾਮ" + +msgid "AM" +msgstr "ਸਵੇਰ" + +msgid "midnight" +msgstr "ਅੱਧੀ-ਰਾਤ" + +msgid "noon" +msgstr "ਨੂਨ" + +msgid "Monday" +msgstr "ਸੋਮਵਾਰ" + +msgid "Tuesday" +msgstr "ਮੰਗਲਵਾਰ" + +msgid "Wednesday" +msgstr "ਬੁੱਧਵਾਰ" + +msgid "Thursday" +msgstr "ਵੀਰਵਾਰ" + +msgid "Friday" +msgstr "ਸ਼ੁੱਕਰਵਾਰ" + +msgid "Saturday" +msgstr "ਸ਼ਨਿੱਚਰਵਾਰ" + +msgid "Sunday" +msgstr "ਐਤਵਾਰ" + +msgid "Mon" +msgstr "ਸੋਮ" + +msgid "Tue" +msgstr "ਮੰਗ" + +msgid "Wed" +msgstr "ਬੁੱਧ" + +msgid "Thu" +msgstr "ਵੀਰ" + +msgid "Fri" +msgstr "ਸ਼ੁੱਕ" + +msgid "Sat" +msgstr "ਸ਼ਨਿੱ" + +msgid "Sun" +msgstr "ਐਤ" + +msgid "January" +msgstr "ਜਨਵਰੀ" + +msgid "February" +msgstr "ਫਰਵਰੀ" + +msgid "March" +msgstr "ਮਾਰਚ" + +msgid "April" +msgstr "ਅਪਰੈਲ" + +msgid "May" +msgstr "ਮਈ" + +msgid "June" +msgstr "ਜੂਨ" + +msgid "July" +msgstr "ਜੁਲਾਈ" + +msgid "August" +msgstr "ਅਗਸਤ" + +msgid "September" +msgstr "ਸਤੰਬਰ" + +msgid "October" +msgstr "ਅਕਤੂਬਰ" + +msgid "November" +msgstr "ਨਵੰਬਰ" + +msgid "December" +msgstr "ਦਸੰਬਰ" + +msgid "jan" +msgstr "ਜਨ" + +msgid "feb" +msgstr "ਫਰ" + +msgid "mar" +msgstr "ਮਾਰ" + +msgid "apr" +msgstr "ਅਪ" + +msgid "may" +msgstr "ਮਈ" + +msgid "jun" +msgstr "ਜੂਨ" + +msgid "jul" +msgstr "ਜੁਲ" + +msgid "aug" +msgstr "ਅਗ" + +msgid "sep" +msgstr "ਸਤੰ" + +msgid "oct" +msgstr "ਅਕ" + +msgid "nov" +msgstr "ਨਵੰ" + +msgid "dec" +msgstr "ਦਸੰ" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "ਜਨ" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ਫਰ" + +msgctxt "abbrev. month" +msgid "March" +msgstr "ਮਾਰ" + +msgctxt "abbrev. month" +msgid "April" +msgstr "ਅਪ" + +msgctxt "abbrev. month" +msgid "May" +msgstr "ਮਈ" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ਜੂਨ" + +msgctxt "abbrev. month" +msgid "July" +msgstr "ਜੁਲ" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ਅਗ" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "ਸਤੰ" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "ਅਕਤੂ" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "ਨਵੰ" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ਦਸੰ" + +msgctxt "alt. month" +msgid "January" +msgstr "ਜਨਵਰੀ" + +msgctxt "alt. month" +msgid "February" +msgstr "ਫਰਵਰੀ" + +msgctxt "alt. month" +msgid "March" +msgstr "ਮਾਰਚ" + +msgctxt "alt. month" +msgid "April" +msgstr "ਅਪਰੈਲ" + +msgctxt "alt. month" +msgid "May" +msgstr "ਮਈ" + +msgctxt "alt. month" +msgid "June" +msgstr "ਜੂਨ" + +msgctxt "alt. month" +msgid "July" +msgstr "ਜੁਲਾਈ" + +msgctxt "alt. month" +msgid "August" +msgstr "ਅਗਸਤ" + +msgctxt "alt. month" +msgid "September" +msgstr "ਸਤੰਬਰ" + +msgctxt "alt. month" +msgid "October" +msgstr "ਅਕਤੂਬਰ" + +msgctxt "alt. month" +msgid "November" +msgstr "ਨਵੰਬਰ" + +msgctxt "alt. month" +msgid "December" +msgstr "ਦਸੰਬਰ" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "ਜਾਂ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d ਸਾਲ" +msgstr[1] "%d ਸਾਲ" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d ਮਹੀਨਾ" +msgstr[1] "%d ਮਹੀਨੇ" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d ਹਫ਼ਤਾ" +msgstr[1] "%d ਹਫ਼ਤੇ" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d ਦਿਨ" +msgstr[1] "%d ਦਿਨ" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d ਘੰਟਾ" +msgstr[1] "%d ਘੰਟੇ" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d ਮਿੰਟ" +msgstr[1] "%d ਮਿੰਟ" + +msgid "0 minutes" +msgstr "0 ਮਿੰਟ" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "ਕੋਈ ਸਾਲ ਨਹੀਂ ਦਿੱਤਾ" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "ਕੋਈ ਮਹੀਨਾ ਨਹੀਂ ਦਿੱਤਾ" + +msgid "No day specified" +msgstr "ਕੋਈ ਦਿਨ ਨਹੀਂ ਦਿੱਤਾ" + +msgid "No week specified" +msgstr "ਕੋਈ ਹਫ਼ਤਾ ਨਹੀਂ ਦਿੱਤਾ" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s ਦਾ ਇੰਡੈਕਸ" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..56a969979b28c5bdec162c85765f88a7b81964fb GIT binary patch literal 30667 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po new file mode 100644 index 0000000..7dc17ae --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po @@ -0,0 +1,1422 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# 8ffa075ab2f53c280beb2c066769d1ac_169beb5 <462ee687bbf3107fab5af73e8cc690d0_217822>, 2014 +# Adam Stachowicz , 2015 +# angularcircle, 2011,2013 +# angularcircle, 2011,2013 +# angularcircle, 2014 +# Dariusz Paluch , 2015 +# Darek, 2022 +# Jannis Leidel , 2011 +# Janusz Harkot , 2014-2015 +# Kacper Krupa , 2013 +# Karol , 2012 +# 0d5641585fd67fbdb97037c19ab83e4c_18c98b0 , 2011 +# 0d5641585fd67fbdb97037c19ab83e4c_18c98b0 , 2011 +# Łukasz Rekucki (lqc) , 2011 +# Maciej Olko , 2016-2021 +# Maciej Olko , 2023 +# Maciej Olko , 2015 +# Mariusz Felisiak , 2020-2021,2023-2024 +# Michał Pasternak , 2013 +# c10516f0462e552b4c3672569f0745a7_cc5cca2 <841826256cd8f47d0e443806a8e56601_19204>, 2012 +# Piotr Meuś , 2014 +# c10516f0462e552b4c3672569f0745a7_cc5cca2 <841826256cd8f47d0e443806a8e56601_19204>, 2012 +# Quadric , 2014 +# Radek Czajka , 2013 +# Radek Czajka , 2013 +# Roman Barczyński, 2012 +# 8ffa075ab2f53c280beb2c066769d1ac_169beb5 <462ee687bbf3107fab5af73e8cc690d0_217822>, 2014 +# Tomasz Kajtoch , 2016-2017 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Mariusz Felisiak , " +"2020-2021,2023-2024\n" +"Language-Team: Polish (http://app.transifex.com/django/django/language/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && " +"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && " +"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +msgid "Afrikaans" +msgstr "afrykanerski" + +msgid "Arabic" +msgstr "arabski" + +msgid "Algerian Arabic" +msgstr "algierski arabski" + +msgid "Asturian" +msgstr "asturyjski" + +msgid "Azerbaijani" +msgstr "azerski" + +msgid "Bulgarian" +msgstr "bułgarski" + +msgid "Belarusian" +msgstr "białoruski" + +msgid "Bengali" +msgstr "bengalski" + +msgid "Breton" +msgstr "bretoński" + +msgid "Bosnian" +msgstr "bośniacki" + +msgid "Catalan" +msgstr "kataloński" + +msgid "Central Kurdish (Sorani)" +msgstr "sorani" + +msgid "Czech" +msgstr "czeski" + +msgid "Welsh" +msgstr "walijski" + +msgid "Danish" +msgstr "duński" + +msgid "German" +msgstr "niemiecki" + +msgid "Lower Sorbian" +msgstr "dolnołużycki" + +msgid "Greek" +msgstr "grecki" + +msgid "English" +msgstr "angielski" + +msgid "Australian English" +msgstr "australijski angielski" + +msgid "British English" +msgstr "brytyjski angielski" + +msgid "Esperanto" +msgstr "esperanto" + +msgid "Spanish" +msgstr "hiszpański" + +msgid "Argentinian Spanish" +msgstr "hiszpański argentyński" + +msgid "Colombian Spanish" +msgstr "hiszpański kolumbijski" + +msgid "Mexican Spanish" +msgstr "hiszpański meksykański" + +msgid "Nicaraguan Spanish" +msgstr "hiszpański nikaraguański" + +msgid "Venezuelan Spanish" +msgstr "hiszpański wenezuelski" + +msgid "Estonian" +msgstr "estoński" + +msgid "Basque" +msgstr "baskijski" + +msgid "Persian" +msgstr "perski" + +msgid "Finnish" +msgstr "fiński" + +msgid "French" +msgstr "francuski" + +msgid "Frisian" +msgstr "fryzyjski" + +msgid "Irish" +msgstr "irlandzki" + +msgid "Scottish Gaelic" +msgstr "Szkocki gaelicki" + +msgid "Galician" +msgstr "galicyjski" + +msgid "Hebrew" +msgstr "hebrajski" + +msgid "Hindi" +msgstr "hindi" + +msgid "Croatian" +msgstr "chorwacki" + +msgid "Upper Sorbian" +msgstr "górnołużycki" + +msgid "Hungarian" +msgstr "węgierski" + +msgid "Armenian" +msgstr "ormiański" + +msgid "Interlingua" +msgstr "interlingua" + +msgid "Indonesian" +msgstr "indonezyjski" + +msgid "Igbo" +msgstr "igbo" + +msgid "Ido" +msgstr "ido" + +msgid "Icelandic" +msgstr "islandzki" + +msgid "Italian" +msgstr "włoski" + +msgid "Japanese" +msgstr "japoński" + +msgid "Georgian" +msgstr "gruziński" + +msgid "Kabyle" +msgstr "kabylski" + +msgid "Kazakh" +msgstr "kazachski" + +msgid "Khmer" +msgstr "khmerski" + +msgid "Kannada" +msgstr "kannada" + +msgid "Korean" +msgstr "koreański" + +msgid "Kyrgyz" +msgstr "kirgiski" + +msgid "Luxembourgish" +msgstr "luksemburski" + +msgid "Lithuanian" +msgstr "litewski" + +msgid "Latvian" +msgstr "łotewski" + +msgid "Macedonian" +msgstr "macedoński" + +msgid "Malayalam" +msgstr "malajski" + +msgid "Mongolian" +msgstr "mongolski" + +msgid "Marathi" +msgstr "marathi" + +msgid "Malay" +msgstr "malajski" + +msgid "Burmese" +msgstr "birmański" + +msgid "Norwegian Bokmål" +msgstr "norweski (bokmål)" + +msgid "Nepali" +msgstr "nepalski" + +msgid "Dutch" +msgstr "holenderski" + +msgid "Norwegian Nynorsk" +msgstr "norweski (nynorsk)" + +msgid "Ossetic" +msgstr "osetyjski" + +msgid "Punjabi" +msgstr "pendżabski" + +msgid "Polish" +msgstr "polski" + +msgid "Portuguese" +msgstr "portugalski" + +msgid "Brazilian Portuguese" +msgstr "portugalski brazylijski" + +msgid "Romanian" +msgstr "rumuński" + +msgid "Russian" +msgstr "rosyjski" + +msgid "Slovak" +msgstr "słowacki" + +msgid "Slovenian" +msgstr "słoweński" + +msgid "Albanian" +msgstr "albański" + +msgid "Serbian" +msgstr "serbski" + +msgid "Serbian Latin" +msgstr "serbski (łaciński)" + +msgid "Swedish" +msgstr "szwedzki" + +msgid "Swahili" +msgstr "suahili" + +msgid "Tamil" +msgstr "tamilski" + +msgid "Telugu" +msgstr "telugu" + +msgid "Tajik" +msgstr "tadżycki" + +msgid "Thai" +msgstr "tajski" + +msgid "Turkmen" +msgstr "turkmeński" + +msgid "Turkish" +msgstr "turecki" + +msgid "Tatar" +msgstr "tatarski" + +msgid "Udmurt" +msgstr "udmurcki" + +msgid "Uyghur" +msgstr "ujgurski" + +msgid "Ukrainian" +msgstr "ukraiński" + +msgid "Urdu" +msgstr "urdu" + +msgid "Uzbek" +msgstr "uzbecki" + +msgid "Vietnamese" +msgstr "wietnamski" + +msgid "Simplified Chinese" +msgstr "chiński uproszczony" + +msgid "Traditional Chinese" +msgstr "chiński tradycyjny" + +msgid "Messages" +msgstr "Wiadomości" + +msgid "Site Maps" +msgstr "Mapy stron" + +msgid "Static Files" +msgstr "Pliki statyczne" + +msgid "Syndication" +msgstr "Syndykacja treści" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Ten numer strony nie jest liczbą całkowitą" + +msgid "That page number is less than 1" +msgstr "Ten numer strony jest mniejszy niż 1" + +msgid "That page contains no results" +msgstr "Ta strona nie zawiera wyników" + +msgid "Enter a valid value." +msgstr "Wpisz poprawną wartość." + +msgid "Enter a valid domain name." +msgstr "Wpisz poprawną nazwę domeny." + +msgid "Enter a valid URL." +msgstr "Wpisz poprawny URL." + +msgid "Enter a valid integer." +msgstr "Wprowadź poprawną liczbę całkowitą." + +msgid "Enter a valid email address." +msgstr "Wprowadź poprawny adres email." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Wpisz poprawny „slug” zawierający litery, cyfry, podkreślenia i myślniki." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Wpisz poprawny „slug” zawierający litery Unicode, cyfry, podkreślenia i " +"myślniki." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Wpisz poprawny adres %(protocol)s. " + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 lub IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Wpisz tylko cyfry oddzielone przecinkami." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Upewnij się, że ta wartość jest %(limit_value)s (jest %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Upewnij się, że ta wartość jest mniejsza lub równa %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Upewnij się, że ta wartość jest większa lub równa %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Upewnij się, że ta wartość jest wielokrotnością wielkości " +"kroku%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Upewnij się, że ta wartość jest wielokrotnością %(limit_value)s, zaczynają " +"od %(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s i tak " +"dalej." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Upewnij się, że ta wartość ma przynajmniej %(limit_value)d znak (obecnie ma " +"%(show_value)d)." +msgstr[1] "" +"Upewnij się, że ta wartość ma przynajmniej %(limit_value)d znaki (obecnie ma " +"%(show_value)d)." +msgstr[2] "" +"Upewnij się, że ta wartość ma przynajmniej %(limit_value)d znaków (obecnie " +"ma %(show_value)d)." +msgstr[3] "" +"Upewnij się, że ta wartość ma przynajmniej %(limit_value)d znaków (obecnie " +"ma %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Upewnij się, że ta wartość ma co najwyżej %(limit_value)d znak (obecnie ma " +"%(show_value)d)." +msgstr[1] "" +"Upewnij się, że ta wartość ma co najwyżej %(limit_value)d znaki (obecnie ma " +"%(show_value)d)." +msgstr[2] "" +"Upewnij się, że ta wartość ma co najwyżej %(limit_value)d znaków (obecnie ma " +"%(show_value)d)." +msgstr[3] "" +"Upewnij się, że ta wartość ma co najwyżej %(limit_value)d znaków (obecnie ma " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Wpisz liczbę." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Upewnij się, że łącznie nie ma więcej niż %(max)s cyfry." +msgstr[1] "Upewnij się, że łącznie nie ma więcej niż %(max)s cyfry." +msgstr[2] "Upewnij się, że łącznie nie ma więcej niż %(max)s cyfr." +msgstr[3] "Upewnij się, że łącznie nie ma więcej niż %(max)s cyfr." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Upewnij się, że liczba ma nie więcej niż %(max)s cyfrę po przecinku." +msgstr[1] "" +"Upewnij się, że liczba ma nie więcej niż %(max)s cyfry po przecinku." +msgstr[2] "Upewnij się, że liczba ma nie więcej niż %(max)s cyfr po przecinku." +msgstr[3] "Upewnij się, że liczba ma nie więcej niż %(max)s cyfr po przecinku." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Upewnij się, że liczba ma nie więcej niż %(max)s cyfrę przed przecinkiem." +msgstr[1] "" +"Upewnij się, że liczba ma nie więcej niż %(max)s cyfry przed przecinkiem." +msgstr[2] "" +"Upewnij się, że liczba ma nie więcej niż %(max)s cyfr przed przecinkiem." +msgstr[3] "" +"Upewnij się, że liczba ma nie więcej niż %(max)s cyfr przed przecinkiem." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Rozszerzenie pliku „%(extension)s” jest niedozwolone. Dozwolone rozszerzenia " +"to: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Znaki null są niedozwolone." + +msgid "and" +msgstr "i" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s z tymi %(field_labels)s już istnieje." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Ograniczenie \"%(name)s\" zostało naruszone." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Wartość %(value)r nie jest poprawnym wyborem." + +msgid "This field cannot be null." +msgstr "To pole nie może być puste." + +msgid "This field cannot be blank." +msgstr "To pole nie może być puste." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Istnieje już %(model_name)s z tą wartością pola %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"Wartość pola %(field_label)s musi być unikatowa dla %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Pole typu: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Wartością „%(value)s” musi być True albo False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Wartością „%(value)s” musi być True, False lub None." + +msgid "Boolean (Either True or False)" +msgstr "Wartość logiczna (True lub False – prawda lub fałsz)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Ciąg znaków (do %(max_length)s znaków)" + +msgid "String (unlimited)" +msgstr "Ciąg znaków (bez limitu)" + +msgid "Comma-separated integers" +msgstr "Liczby całkowite rozdzielone przecinkami" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Wartość „%(value)s” ma nieprawidłowy format daty. Musi być ona w formacie " +"YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Wartość „%(value)s” ma prawidłowy format (YYYY-MM-DD), ale jest " +"nieprawidłową datą." + +msgid "Date (without time)" +msgstr "Data (bez godziny)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Wartość „%(value)s” ma nieprawidłowy format. Musi być ona w formacie YYYY-MM-" +"DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Wartość „%(value)s” ma prawidłowy format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]), ale jest nieprawidłową datą/godziną." + +msgid "Date (with time)" +msgstr "Data (z godziną)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Wartością „%(value)s” musi być liczba dziesiętna." + +msgid "Decimal number" +msgstr "Liczba dziesiętna" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Wartość „%(value)s” ma błędny format. Poprawny format to [DD] [HH:[MM:]]ss[." +"uuuuuu]." + +msgid "Duration" +msgstr "Czas trwania" + +msgid "Email address" +msgstr "Adres e-mail" + +msgid "File path" +msgstr "Ścieżka do pliku" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Wartością „%(value)s” musi być liczba zmiennoprzecinkowa." + +msgid "Floating point number" +msgstr "Liczba zmiennoprzecinkowa" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Wartością „%(value)s” musi być liczba całkowita." + +msgid "Integer" +msgstr "Liczba całkowita" + +msgid "Big (8 byte) integer" +msgstr "Duża liczba całkowita (8 bajtów)" + +msgid "Small integer" +msgstr "Mała liczba całkowita" + +msgid "IPv4 address" +msgstr "adres IPv4" + +msgid "IP address" +msgstr "Adres IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Wartością „%(value)s” musi być None, True lub False." + +msgid "Boolean (Either True, False or None)" +msgstr "Wartość logiczna (True, False, None – prawda, fałsz lub nic)" + +msgid "Positive big integer" +msgstr "Dodatnia duża liczba całkowita" + +msgid "Positive integer" +msgstr "Dodatnia liczba całkowita" + +msgid "Positive small integer" +msgstr "Dodatnia mała liczba całkowita" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (do %(max_length)s znaków)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Wartość „%(value)s” ma nieprawidłowy format. Musi być ona w formacie HH:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Wartość „%(value)s” ma prawidłowy format (HH:MM[:ss[.uuuuuu]]), ale jest " +"nieprawidłową wartością czasu." + +msgid "Time" +msgstr "Czas" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Dane w postaci binarnej" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "Wartość „%(value)s” nie jest poprawnym UUID-em." + +msgid "Universally unique identifier" +msgstr "Uniwersalnie unikalny identyfikator" + +msgid "File" +msgstr "Plik" + +msgid "Image" +msgstr "Plik graficzny" + +msgid "A JSON object" +msgstr "Obiekt JSON" + +msgid "Value must be valid JSON." +msgstr "Wartość musi być poprawnym JSON-em." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s z polem %(field)s o wartości %(value)r nie istnieje." + +msgid "Foreign Key (type determined by related field)" +msgstr "Klucz obcy (typ określony przez pole powiązane)" + +msgid "One-to-one relationship" +msgstr "Powiązanie jeden do jednego" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "powiązanie %(from)s do %(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "powiązania %(from)s do %(to)s" + +msgid "Many-to-many relationship" +msgstr "Powiązanie wiele-do-wielu" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "To pole jest wymagane." + +msgid "Enter a whole number." +msgstr "Wpisz liczbę całkowitą." + +msgid "Enter a valid date." +msgstr "Wpisz poprawną datę." + +msgid "Enter a valid time." +msgstr "Wpisz poprawną godzinę." + +msgid "Enter a valid date/time." +msgstr "Wpisz poprawną datę/godzinę." + +msgid "Enter a valid duration." +msgstr "Wpisz poprawny czas trwania." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Liczba dni musi wynosić między {min_days} a {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nie wysłano żadnego pliku. Sprawdź typ kodowania formularza." + +msgid "No file was submitted." +msgstr "Żaden plik nie został przesłany." + +msgid "The submitted file is empty." +msgstr "Wysłany plik jest pusty." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Upewnij się, że nazwa pliku ma co najwyżej %(max)d znak (obecnie ma " +"%(length)d)." +msgstr[1] "" +"Upewnij się, że nazwa pliku ma co najwyżej %(max)d znaki (obecnie ma " +"%(length)d)." +msgstr[2] "" +"Upewnij się, że nazwa pliku ma co najwyżej %(max)d znaków (obecnie ma " +"%(length)d)." +msgstr[3] "" +"Upewnij się, że nazwa pliku ma co najwyżej %(max)d znaków (obecnie ma " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Prześlij plik lub zaznacz by usunąć, ale nie oba na raz." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Prześlij poprawny plik graficzny. Aktualnie przesłany plik nie jest " +"grafiką lub jest uszkodzony." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Wybierz poprawną wartość. %(value)s nie jest żadną z dostępnych opcji." + +msgid "Enter a list of values." +msgstr "Podaj listę wartości." + +msgid "Enter a complete value." +msgstr "Wprowadź kompletną wartość." + +msgid "Enter a valid UUID." +msgstr "Wpisz poprawny UUID." + +msgid "Enter a valid JSON." +msgstr "Wpisz poprawny JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Ukryte pole %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Brakuje danych ManagementForm lub zostały one naruszone. Brakujące pola: " +"%(field_names)s. Złóż zgłoszenie błędu, jeśli problem się powtarza." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Proszę wysłać co najwyżej %(num)dformularz." +msgstr[1] "Proszę wysłać co najwyżej %(num)d formularze." +msgstr[2] "Proszę wysłać co najwyżej %(num)dformularzy." +msgstr[3] "Proszę wysłać co najwyżej %(num)dformularzy." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Proszę wysłać co najmniej %(num)d formularz." +msgstr[1] "Proszę wysłać co najmniej %(num)dformularze." +msgstr[2] "Proszę wysłać co najmniej %(num)d formularzy." +msgstr[3] "Proszę wysłać co najmniej %(num)d formularzy." + +msgid "Order" +msgstr "Kolejność" + +msgid "Delete" +msgstr "Usuń" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Popraw zduplikowane dane w %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Popraw zduplikowane dane w %(field)s, które muszą być unikalne." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Popraw zduplikowane dane w %(field_name)s, które wymaga unikalności dla " +"%(lookup)s w polu %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Popraw poniższe zduplikowane wartości." + +msgid "The inline value did not match the parent instance." +msgstr "Wartość inline nie pasuje do obiektu rodzica." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Wybierz poprawną wartość. Podana nie jest jednym z dostępnych wyborów." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "„%(pk)s” nie jest poprawną wartością." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s nie mógł zostać zinterpretowany w strefie czasowej " +"%(current_timezone)s; może być niejednoznaczny lub może nie istnieć." + +msgid "Clear" +msgstr "Wyczyść" + +msgid "Currently" +msgstr "Teraz" + +msgid "Change" +msgstr "Zmień" + +msgid "Unknown" +msgstr "Nieznany" + +msgid "Yes" +msgstr "Tak" + +msgid "No" +msgstr "Nie" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "tak,nie,może" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajty" +msgstr[2] "%(size)d bajtów" +msgstr[3] "%(size)d bajtów" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "po południu" + +msgid "a.m." +msgstr "rano" + +msgid "PM" +msgstr "po południu" + +msgid "AM" +msgstr "rano" + +msgid "midnight" +msgstr "północ" + +msgid "noon" +msgstr "południe" + +msgid "Monday" +msgstr "Poniedziałek" + +msgid "Tuesday" +msgstr "Wtorek" + +msgid "Wednesday" +msgstr "Środa" + +msgid "Thursday" +msgstr "Czwartek" + +msgid "Friday" +msgstr "Piątek" + +msgid "Saturday" +msgstr "Sobota" + +msgid "Sunday" +msgstr "Niedziela" + +msgid "Mon" +msgstr "Pon" + +msgid "Tue" +msgstr "Wt" + +msgid "Wed" +msgstr "Śr" + +msgid "Thu" +msgstr "Czw" + +msgid "Fri" +msgstr "Pt" + +msgid "Sat" +msgstr "So" + +msgid "Sun" +msgstr "Nd" + +msgid "January" +msgstr "Styczeń" + +msgid "February" +msgstr "Luty" + +msgid "March" +msgstr "Marzec" + +msgid "April" +msgstr "Kwiecień" + +msgid "May" +msgstr "Maj" + +msgid "June" +msgstr "Czerwiec" + +msgid "July" +msgstr "Lipiec" + +msgid "August" +msgstr "Sierpień" + +msgid "September" +msgstr "Wrzesień" + +msgid "October" +msgstr "Październik" + +msgid "November" +msgstr "Listopad" + +msgid "December" +msgstr "Grudzień" + +msgid "jan" +msgstr "sty" + +msgid "feb" +msgstr "lut" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "kwi" + +msgid "may" +msgstr "maj" + +msgid "jun" +msgstr "cze" + +msgid "jul" +msgstr "lip" + +msgid "aug" +msgstr "sie" + +msgid "sep" +msgstr "wrz" + +msgid "oct" +msgstr "paź" + +msgid "nov" +msgstr "lis" + +msgid "dec" +msgstr "gru" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Sty." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Lut." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mar." + +msgctxt "abbrev. month" +msgid "April" +msgstr "Kwi." + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Cze." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Lip." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Sie." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Wrz." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Paź." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Lis." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Gru" + +msgctxt "alt. month" +msgid "January" +msgstr "stycznia" + +msgctxt "alt. month" +msgid "February" +msgstr "lutego" + +msgctxt "alt. month" +msgid "March" +msgstr "marca" + +msgctxt "alt. month" +msgid "April" +msgstr "kwietnia" + +msgctxt "alt. month" +msgid "May" +msgstr "maja" + +msgctxt "alt. month" +msgid "June" +msgstr "czerwca" + +msgctxt "alt. month" +msgid "July" +msgstr "lipca" + +msgctxt "alt. month" +msgid "August" +msgstr "sierpnia" + +msgctxt "alt. month" +msgid "September" +msgstr "września" + +msgctxt "alt. month" +msgid "October" +msgstr "października" + +msgctxt "alt. month" +msgid "November" +msgstr "listopada" + +msgctxt "alt. month" +msgid "December" +msgstr "grudnia" + +msgid "This is not a valid IPv6 address." +msgstr "To nie jest poprawny adres IPv6." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "lub" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d rok" +msgstr[1] "%(num)d lata" +msgstr[2] "%(num)d lat" +msgstr[3] "%(num)d roku" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d miesiąc" +msgstr[1] "%(num)d miesiące" +msgstr[2] "%(num)d miesięcy" +msgstr[3] "%(num)d miesiąca" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d tydzień" +msgstr[1] "%(num)d tygodnie" +msgstr[2] "%(num)d tygodni" +msgstr[3] "%(num)d tygodnia" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dzień" +msgstr[1] "%(num)d dni" +msgstr[2] "%(num)d dni" +msgstr[3] "%(num)d dnia" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d godzina" +msgstr[1] "%(num)d godziny" +msgstr[2] "%(num)d godzin" +msgstr[3] "%(num)d godziny" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuta" +msgstr[1] "%(num)d minuty" +msgstr[2] "%(num)d minut" +msgstr[3] "%(num)d minut" + +msgid "Forbidden" +msgstr "Dostęp zabroniony" + +msgid "CSRF verification failed. Request aborted." +msgstr "Weryfikacja CSRF nie powiodła się. Żądanie zostało przerwane." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Widzisz tę wiadomość, ponieważ ta witryna HTTPS wymaga, aby przeglądarka " +"wysłała „nagłówek Referer”, a żaden nie został wysłany. Nagłówek ten jest " +"wymagany ze względów bezpieczeństwa, aby upewnić się, że twoja przeglądarka " +"nie została przechwycona przez osoby trzecie." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Jeżeli nagłówki „Referer” w Twojej przeglądarce są wyłączone, to proszę " +"włącz je ponownie. Przynajmniej dla tej strony, połączeń HTTPS lub zapytań " +"typu „same-origin”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Jeśli używasz taga lub " +"umieszczasz nagłówek „Referrer-Policy: no-referrer”, prosimy je usunąć. " +"Ochrona przed atakami CSRF wymaga nagłówka „Referer”, aby wykonać ścisłe " +"sprawdzenie referera HTTP. Jeśli zależy ci na prywatności, użyj alternatyw " +"takich jak dla linków do stron osób trzecich." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Widzisz tą wiadomość, ponieważ ta witryna wymaga ciasteczka CSRF do " +"przesyłania formularza. Ciasteczko to jest wymagane ze względów " +"bezpieczeństwa, aby upewnić się, że Twoja przeglądarka nie została " +"przechwycona przez osoby trzecie." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Jeżeli ciasteczka w Twojej przeglądarce są wyłączone, to proszę włącz je " +"ponownie. Przynajmniej dla tej strony lub żądań typu „same-origin”." + +msgid "More information is available with DEBUG=True." +msgstr "Więcej informacji jest dostępnych po ustawieniu DEBUG=True." + +msgid "No year specified" +msgstr "Nie określono roku" + +msgid "Date out of range" +msgstr "Data poza zakresem" + +msgid "No month specified" +msgstr "Nie określono miesiąca" + +msgid "No day specified" +msgstr "Nie określono dnia" + +msgid "No week specified" +msgstr "Nie określono tygodnia" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s nie są dostępne" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Wyświetlanie %(verbose_name_plural)s z datą przyszłą jest niedostępne, gdyż " +"atrybut '%(class_name)s.allow_future' ma wartość 'False'." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Ciąg znaków „%(datestr)s” jest niezgodny z podanym formatem daty „%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Nie znaleziono %(verbose_name)s spełniających wybrane kryteria" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Podanego numeru strony nie można przekształcić na liczbę całkowitą, nie " +"przyjął on również wartości „last” oznaczającej ostatnią stronę z dostępnego " +"zakresu." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Nieprawidłowy numer strony (%(page_number)s): %(message)s " + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" +"Lista nie zawiera żadnych elementów, a atrybut „%(class_name)s.allow_empty” " +"ma wartość False." + +msgid "Directory indexes are not allowed here." +msgstr "Wyświetlanie zawartości katalogu jest tu niedozwolone." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s” nie istnieje" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Zawartość %(directory)s " + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalacja przebiegła pomyślnie! Gratulacje!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Zobacz informacje o wydaniu dla Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Widzisz tę stronę, ponieważ w swoim pliku ustawień masz DEBUG=True i nie skonfigurowałeś " +"żadnych URL-i." + +msgid "Django Documentation" +msgstr "Dokumentacja Django" + +msgid "Topics, references, & how-to’s" +msgstr "Przewodniki tematyczne, podręczniki i przewodniki „jak to zrobić”" + +msgid "Tutorial: A Polling App" +msgstr "Samouczek: Aplikacja ankietowa" + +msgid "Get started with Django" +msgstr "Pierwsze kroki z Django" + +msgid "Django Community" +msgstr "Społeczność Django" + +msgid "Connect, get help, or contribute" +msgstr "Nawiąż kontakt, uzyskaj pomoc lub wnieś swój wkład" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pl/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/pl/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/pl/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d78388184da9e8f6c4910d138636c33f28cbc5c7 GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFW!N literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/pl/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0cf748a78207041d1c972161fe5a7195ce2634e0 GIT binary patch literal 677 zcmZWmO^=g67=|)zX}jIE8};Cc%N&|Wdv7*ITS=#~iP@7g)m9p3GVl95&-*d+W=Ox^<>>nKD_BT?<9;yGTrEmo(^E2oImBTe z@wkOrSU>^>2w)M3_za!lHfk?8EPdgTM16<)4(_5Z?x7w&N9VZjal?yRyq9%3tOaAT ztUG%wGbl`%NO>({rBK4UyLU1RKJfJFp-@W@k60<8)3 z>ZkunBRH=wPSr>L5Mt9>|*9m5(efyQ$h;;P5c}#C6QBY=^GWwY1 z6^S&GZi{SHmC+(AtAxaxWSgJhyXE_+TvnN~PSOtv&5H1SvRaUFN>=l6PSPaL#_N1M lCz~Rv%F%lFUAis^-sagW_PON?Y5)Lyb4x&K0}=2N{~MgkuwnoJ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pl/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/pl/formats.py new file mode 100644 index 0000000..2ad1bfe --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/pl/formats.py @@ -0,0 +1,30 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j E Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j E Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j E" +SHORT_DATE_FORMAT = "d-m-Y" +SHORT_DATETIME_FORMAT = "d-m-Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' + "%y-%m-%d", # '06-10-25' + # "%d. %B %Y", # '25. października 2006' + # "%d. %b. %Y", # '25. paź. 2006' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = " " +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..2842e75a9579b9f780c7fc51fab3a0ece6603a8b GIT binary patch literal 20657 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, 2012 +# Claudio Fernandes , 2015 +# Jannis Leidel , 2011 +# José Durães , 2014 +# jorgecarleitao , 2014-2015 +# Nuno Mariz , 2011-2013,2015-2018 +# Paulo Köch , 2011 +# Raúl Pedro Fernandes Santos, 2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Portuguese (http://www.transifex.com/django/django/language/" +"pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Africâner" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azerbaijano" + +msgid "Bulgarian" +msgstr "Búlgaro" + +msgid "Belarusian" +msgstr "Bielorusso" + +msgid "Bengali" +msgstr "Bengalês" + +msgid "Breton" +msgstr "Bretão" + +msgid "Bosnian" +msgstr "Bósnio" + +msgid "Catalan" +msgstr "Catalão" + +msgid "Czech" +msgstr "Checo" + +msgid "Welsh" +msgstr "Galês" + +msgid "Danish" +msgstr "Dinamarquês" + +msgid "German" +msgstr "Alemão" + +msgid "Lower Sorbian" +msgstr "Sorbedo inferior" + +msgid "Greek" +msgstr "Grego" + +msgid "English" +msgstr "Inglês" + +msgid "Australian English" +msgstr "Inglês da Austrália" + +msgid "British English" +msgstr "Inglês Britânico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Espanhol" + +msgid "Argentinian Spanish" +msgstr "Espanhol Argentino" + +msgid "Colombian Spanish" +msgstr "Espanhol Colombiano" + +msgid "Mexican Spanish" +msgstr "Espanhol mexicano" + +msgid "Nicaraguan Spanish" +msgstr "Nicarágua Espanhol" + +msgid "Venezuelan Spanish" +msgstr "Espanhol Venezuelano" + +msgid "Estonian" +msgstr "Estónio" + +msgid "Basque" +msgstr "Basco" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Filandês" + +msgid "French" +msgstr "Francês" + +msgid "Frisian" +msgstr "Frisão" + +msgid "Irish" +msgstr "Irlandês" + +msgid "Scottish Gaelic" +msgstr "Escocês Gaélico" + +msgid "Galician" +msgstr "Galaciano" + +msgid "Hebrew" +msgstr "Hebraico" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "Sorbedo superior" + +msgid "Hungarian" +msgstr "Húngaro" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Interlíngua" + +msgid "Indonesian" +msgstr "Indonésio" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandês" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Japonês" + +msgid "Georgian" +msgstr "Georgiano" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Cazaque" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Canarês" + +msgid "Korean" +msgstr "Coreano" + +msgid "Luxembourgish" +msgstr "Luxemburguês" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Letão" + +msgid "Macedonian" +msgstr "Macedónio" + +msgid "Malayalam" +msgstr "Malaiala" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Burmese" +msgstr "Birmanês" + +msgid "Norwegian Bokmål" +msgstr "Norueguês Bokmål" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Holandês" + +msgid "Norwegian Nynorsk" +msgstr "Norueguês (Nynors)" + +msgid "Ossetic" +msgstr "Ossetic" + +msgid "Punjabi" +msgstr "Panjabi" + +msgid "Polish" +msgstr "Polaco" + +msgid "Portuguese" +msgstr "Português" + +msgid "Brazilian Portuguese" +msgstr "Português Brasileiro" + +msgid "Romanian" +msgstr "Romeno" + +msgid "Russian" +msgstr "Russo" + +msgid "Slovak" +msgstr "Eslovaco" + +msgid "Slovenian" +msgstr "Esloveno" + +msgid "Albanian" +msgstr "Albanês" + +msgid "Serbian" +msgstr "Sérvio" + +msgid "Serbian Latin" +msgstr "Sérvio Latim" + +msgid "Swedish" +msgstr "Sueco" + +msgid "Swahili" +msgstr "Suaíli" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Thai" +msgstr "Thai" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurte" + +msgid "Ukrainian" +msgstr "Ucraniano" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chinês Simplificado" + +msgid "Traditional Chinese" +msgstr "Chinês Tradicional" + +msgid "Messages" +msgstr "Mensagens" + +msgid "Site Maps" +msgstr "Mapas do Site" + +msgid "Static Files" +msgstr "Ficheiros Estáticos" + +msgid "Syndication" +msgstr "Syndication" + +msgid "That page number is not an integer" +msgstr "Esse número de página não é um número inteiro" + +msgid "That page number is less than 1" +msgstr "Esse número de página é inferior a 1" + +msgid "That page contains no results" +msgstr "Essa página não contém resultados" + +msgid "Enter a valid value." +msgstr "Introduza um valor válido." + +msgid "Enter a valid URL." +msgstr "Introduza um URL válido." + +msgid "Enter a valid integer." +msgstr "Introduza um número inteiro válido." + +msgid "Enter a valid email address." +msgstr "Introduza um endereço de e-mail válido." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Introduza um endereço IPv4 válido." + +msgid "Enter a valid IPv6 address." +msgstr "Insira um endereço IPv6 válido." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Digite um endereço válido IPv4 ou IPv6." + +msgid "Enter only digits separated by commas." +msgstr "Introduza apenas números separados por vírgulas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Garanta que este valor seja %(limit_value)s (tem %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Garanta que este valor seja menor ou igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Garanta que este valor seja maior ou igual a %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Garanta que este valor tenha pelo menos %(limit_value)d caractere (tem " +"%(show_value)d)." +msgstr[1] "" +"Garanta que este valor tenha pelo menos %(limit_value)d caracteres (tem " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Garanta que este valor tenha no máximo %(limit_value)d caractere (tem " +"%(show_value)d)." +msgstr[1] "" +"Garanta que este valor tenha no máximo %(limit_value)d caracteres (tem " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Introduza um número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Garanta que não tem mais de %(max)s dígito no total." +msgstr[1] "Garanta que não tem mais de %(max)s dígitos no total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Garanta que não tem mais %(max)s casa decimal." +msgstr[1] "Garanta que não tem mais %(max)s casas decimais." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Garanta que não tem mais de %(max)s dígito antes do ponto decimal." +msgstr[1] "Garanta que não tem mais de %(max)s dígitos antes do ponto decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Não são permitidos caracteres nulos." + +msgid "and" +msgstr "e" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s com este %(field_labels)s já existe." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "O valor %(value)r não é uma escolha válida." + +msgid "This field cannot be null." +msgstr "Este campo não pode ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo não pode ser vazio." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s com este %(field_label)s já existe." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s tem de ser único para %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo do tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Pode ser True ou False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (até %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Inteiros separados por virgula" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Data (sem hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Data (com hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Número décimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Duração" + +msgid "Email address" +msgstr "Endereço de e-mail" + +msgid "File path" +msgstr "Caminho do ficheiro" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Número em vírgula flutuante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Inteiro" + +msgid "Big (8 byte) integer" +msgstr "Inteiro grande (8 byte)" + +msgid "IPv4 address" +msgstr "Endereço IPv4" + +msgid "IP address" +msgstr "Endereço IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (Pode ser True, False ou None)" + +msgid "Positive integer" +msgstr "Inteiro positivo" + +msgid "Positive small integer" +msgstr "Pequeno número inteiro positivo" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (até %(max_length)s)" + +msgid "Small integer" +msgstr "Inteiro pequeno" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Dados binários simples" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Ficheiro" + +msgid "Image" +msgstr "Imagem" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "A instância de %(model)s com %(field)s %(value)r não existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Chave Estrangeira (tipo determinado pelo campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relação de um-para-um" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relação de %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relações de %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relação de muitos-para-muitos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Este campo é obrigatório." + +msgid "Enter a whole number." +msgstr "Introduza um número inteiro." + +msgid "Enter a valid date." +msgstr "Introduza uma data válida." + +msgid "Enter a valid time." +msgstr "Introduza uma hora válida." + +msgid "Enter a valid date/time." +msgstr "Introduza uma data/hora válida." + +msgid "Enter a valid duration." +msgstr "Introduza uma duração válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "O número de dias deve ser entre {min_days} e {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"Nenhum ficheiro foi submetido. Verifique o tipo de codificação do formulário." + +msgid "No file was submitted." +msgstr "Nenhum ficheiro submetido." + +msgid "The submitted file is empty." +msgstr "O ficheiro submetido encontra-se vazio." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Garanta que o nome deste ficheiro tenha no máximo %(max)d caractere (tem " +"%(length)d)." +msgstr[1] "" +"Garanta que o nome deste ficheiro tenha no máximo %(max)d caracteres (tem " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Por favor, submeta um ficheiro ou remova a seleção da caixa, não ambos." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Introduza uma imagem válida. O ficheiro que introduziu ou não é uma imagem " +"ou está corrompido." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Selecione uma opção válida. %(value)s não se encontra nas opções disponíveis." + +msgid "Enter a list of values." +msgstr "Introduza uma lista de valores." + +msgid "Enter a complete value." +msgstr "Introduza um valor completo." + +msgid "Enter a valid UUID." +msgstr "Introduza um UUID válido." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "Os dados do ManagementForm estão em falta ou foram adulterados" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Por favor submeta %d ou menos formulários." +msgstr[1] "Por favor submeta %d ou menos formulários." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "Por favor submeta %d ou mais formulários." +msgstr[1] "Por favor submeta %d ou mais formulários." + +msgid "Order" +msgstr "Ordem" + +msgid "Delete" +msgstr "Remover" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor corrija os dados duplicados em %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor corrija os dados duplicados em %(field)s, que deverá ser único." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor corrija os dados duplicados em %(field_name)s que deverá ser único " +"para o %(lookup)s em %(date_field)s.\"" + +msgid "Please correct the duplicate values below." +msgstr "Por favor corrija os valores duplicados abaixo." + +msgid "The inline value did not match the parent instance." +msgstr "O valor em linha não corresponde à instância pai." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Selecione uma opção válida. Esse valor não se encontra opções disponíveis." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Limpar" + +msgid "Currently" +msgstr "Atualmente" + +msgid "Change" +msgstr "Modificar" + +msgid "Unknown" +msgstr "Desconhecido" + +msgid "Yes" +msgstr "Sim" + +msgid "No" +msgstr "Não" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "sim,não,talvez" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "meia-noite" + +msgid "noon" +msgstr "meio-dia" + +msgid "Monday" +msgstr "Segunda-feira" + +msgid "Tuesday" +msgstr "Terça-feira" + +msgid "Wednesday" +msgstr "Quarta-feira" + +msgid "Thursday" +msgstr "Quinta-feira" + +msgid "Friday" +msgstr "Sexta-feira" + +msgid "Saturday" +msgstr "Sábado" + +msgid "Sunday" +msgstr "Domingo" + +msgid "Mon" +msgstr "Seg" + +msgid "Tue" +msgstr "Ter" + +msgid "Wed" +msgstr "Qua" + +msgid "Thu" +msgstr "Qui" + +msgid "Fri" +msgstr "Sex" + +msgid "Sat" +msgstr "Sáb" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "Janeiro" + +msgid "February" +msgstr "Fevereiro" + +msgid "March" +msgstr "Março" + +msgid "April" +msgstr "Abril" + +msgid "May" +msgstr "Maio" + +msgid "June" +msgstr "Junho" + +msgid "July" +msgstr "Julho" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Setembro" + +msgid "October" +msgstr "Outubro" + +msgid "November" +msgstr "Novembro" + +msgid "December" +msgstr "Dezembro" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "fev" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "set" + +msgid "oct" +msgstr "out" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dez" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Fev." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Março" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maio" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Jun." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Jul." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Set." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Out." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dez." + +msgctxt "alt. month" +msgid "January" +msgstr "Janeiro" + +msgctxt "alt. month" +msgid "February" +msgstr "Fevereiro" + +msgctxt "alt. month" +msgid "March" +msgstr "Março" + +msgctxt "alt. month" +msgid "April" +msgstr "Abril" + +msgctxt "alt. month" +msgid "May" +msgstr "Maio" + +msgctxt "alt. month" +msgid "June" +msgstr "Junho" + +msgctxt "alt. month" +msgid "July" +msgstr "Julho" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Setembro" + +msgctxt "alt. month" +msgid "October" +msgstr "Outubro" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembro" + +msgctxt "alt. month" +msgid "December" +msgstr "Dezembro" + +msgid "This is not a valid IPv6 address." +msgstr "Este não é um endereço IPv6 válido." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "ou" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d ano" +msgstr[1] "%d anos" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d mês" +msgstr[1] "%d meses" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d semana" +msgstr[1] "%d semanas" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d dia" +msgstr[1] "%d dias" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d hora" +msgstr[1] "%d horas" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +msgid "0 minutes" +msgstr "0 minutos" + +msgid "Forbidden" +msgstr "Proibido" + +msgid "CSRF verification failed. Request aborted." +msgstr "A verificação de CSRF falhou. Pedido abortado." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Está a ver esta mensagem porque este site requer um cookie CSRF quando " +"submete formulários. Este cookie é requirido por razões de segurança, para " +"garantir que o seu browser não está a ser \"raptado\" por terceiros." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Está disponível mais informação com DEBUG=True." + +msgid "No year specified" +msgstr "Nenhum ano especificado" + +msgid "Date out of range" +msgstr "Data fora do alcance" + +msgid "No month specified" +msgstr "Nenhum mês especificado" + +msgid "No day specified" +msgstr "Nenhum dia especificado" + +msgid "No week specified" +msgstr "Nenhuma semana especificado" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nenhum %(verbose_name_plural)s disponível" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s futuros indisponíveis porque %(class_name)s." +"allow_future é False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Nenhum %(verbose_name)s de acordo com a procura." + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Página inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Índices de diretório não são permitidas aqui." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índice de %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "Django: the Web framework for perfectionists with deadlines." + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Visualizar notas de lançamento do Django " +"%(version)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "A instalação funcionou com sucesso! Parabéns!" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Está a visualizar esta página porque tem DEBUG=True no seu ficheiro settings do Django e não " +"configurou nenhum URLs." + +msgid "Django Documentation" +msgstr "Documentação do Django" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: A Polling App" + +msgid "Get started with Django" +msgstr "Comece com o Django" + +msgid "Django Community" +msgstr "Comunidade Django" + +msgid "Connect, get help, or contribute" +msgstr "Conecte-se, obtenha ajuda ou contribua" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pt/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/pt/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/pt/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bbf9b8b12fdf605fbff54b9bf956fa3678fa87f9 GIT binary patch literal 193 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, 2014 +# Amanda Savluchinske , 2019 +# amcorreia , 2018 +# andrewsmedina , 2014-2015 +# Arthur Silva , 2017 +# bruno.devpod , 2014 +# Camilo B. Moreira , 2017 +# Carlos Cadu “Cadu” Leite , 2020 +# Carlos Cadu “Cadu” Leite , 2016,2019 +# Filipe Cifali , 2016 +# Claudio Rogerio Carvalho Filho , 2020 +# dudanogueira , 2012 +# dudanogueira , 2019 +# Eduardo Felipe Castegnaro , 2024 +# Elyézer Rezende , 2013 +# Fábio C. Barrionuevo da Luz , 2014-2015 +# Felipe Rodrigues , 2016 +# Filipe Cifali , 2019 +# Gladson , 2013 +# fa9e10542e458baef0599ae856e43651_13d2225, 2011-2014 +# Guilherme , 2022 +# Heron Fonsaca, 2022 +# Hugo Tácito , 2024 +# Igor Cavalcante , 2017 +# Jannis Leidel , 2011 +# Jonas Rodrigues, 2023 +# Leonardo Gregianin, 2023 +# Lucas Infante , 2015 +# Luiz Boaretto , 2017 +# Marssal Jr. , 2022 +# Marcelo Moro Brondani , 2018 +# Mariusz Felisiak , 2021 +# Rafael Fontenelle , 2021-2022 +# Samuel Nogueira Bacelar , 2020 +# Sandro , 2011 +# Sergio Garcia , 2015 +# Tânia Andrea , 2017 +# Wiliam Souza , 2015 +# Francisco Petry Rauber , 2018 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Eduardo Felipe Castegnaro , 2024\n" +"Language-Team: Portuguese (Brazil) (http://app.transifex.com/django/django/" +"language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Afrikaans" +msgstr "Africânder" + +msgid "Arabic" +msgstr "Árabe" + +msgid "Algerian Arabic" +msgstr "Árabe Argelino" + +msgid "Asturian" +msgstr "Asturiano" + +msgid "Azerbaijani" +msgstr "Azerbaijão" + +msgid "Bulgarian" +msgstr "Búlgaro" + +msgid "Belarusian" +msgstr "Bielorrussa" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Bretão" + +msgid "Bosnian" +msgstr "Bósnio" + +msgid "Catalan" +msgstr "Catalão" + +msgid "Central Kurdish (Sorani)" +msgstr "Curdo Central (Sorâni)" + +msgid "Czech" +msgstr "Tcheco" + +msgid "Welsh" +msgstr "Galês" + +msgid "Danish" +msgstr "Dinamarquês" + +msgid "German" +msgstr "Alemão" + +msgid "Lower Sorbian" +msgstr "Sorábio Baixo" + +msgid "Greek" +msgstr "Grego" + +msgid "English" +msgstr "Inglês" + +msgid "Australian English" +msgstr "Inglês Australiano" + +msgid "British English" +msgstr "Inglês Britânico" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Espanhol" + +msgid "Argentinian Spanish" +msgstr "Espanhol Argentino" + +msgid "Colombian Spanish" +msgstr "Espanhol Colombiano" + +msgid "Mexican Spanish" +msgstr "Espanhol Mexicano" + +msgid "Nicaraguan Spanish" +msgstr "Espanhol Nicaraguense" + +msgid "Venezuelan Spanish" +msgstr "Espanhol Venuzuelano" + +msgid "Estonian" +msgstr "Estoniano" + +msgid "Basque" +msgstr "Basco" + +msgid "Persian" +msgstr "Persa" + +msgid "Finnish" +msgstr "Finlandês" + +msgid "French" +msgstr "Francês" + +msgid "Frisian" +msgstr "Frísia" + +msgid "Irish" +msgstr "Irlandês" + +msgid "Scottish Gaelic" +msgstr "Gaélico Escocês" + +msgid "Galician" +msgstr "Galiciano" + +msgid "Hebrew" +msgstr "Hebraico" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croata" + +msgid "Upper Sorbian" +msgstr "Sorábio Alto" + +msgid "Hungarian" +msgstr "Húngaro" + +msgid "Armenian" +msgstr "Armênio" + +msgid "Interlingua" +msgstr "Interlíngua" + +msgid "Indonesian" +msgstr "Indonésio" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandês" + +msgid "Italian" +msgstr "Italiano" + +msgid "Japanese" +msgstr "Japonês" + +msgid "Georgian" +msgstr "Georgiano" + +msgid "Kabyle" +msgstr "Cabila" + +msgid "Kazakh" +msgstr "Cazaque" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Canarês" + +msgid "Korean" +msgstr "Coreano" + +msgid "Kyrgyz" +msgstr "Quirguiz" + +msgid "Luxembourgish" +msgstr "Luxemburguês" + +msgid "Lithuanian" +msgstr "Lituano" + +msgid "Latvian" +msgstr "Letão" + +msgid "Macedonian" +msgstr "Macedônio" + +msgid "Malayalam" +msgstr "Malaiala" + +msgid "Mongolian" +msgstr "Mongol" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malaia" + +msgid "Burmese" +msgstr "Birmanês" + +msgid "Norwegian Bokmål" +msgstr "Dano-norueguês" + +msgid "Nepali" +msgstr "Nepalês" + +msgid "Dutch" +msgstr "Neerlandês" + +msgid "Norwegian Nynorsk" +msgstr "Novo Norueguês" + +msgid "Ossetic" +msgstr "Osseto" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polonês" + +msgid "Portuguese" +msgstr "Português" + +msgid "Brazilian Portuguese" +msgstr "Português Brasileiro" + +msgid "Romanian" +msgstr "Romeno" + +msgid "Russian" +msgstr "Russo" + +msgid "Slovak" +msgstr "Eslovaco" + +msgid "Slovenian" +msgstr "Esloveno" + +msgid "Albanian" +msgstr "Albanesa" + +msgid "Serbian" +msgstr "Sérvio" + +msgid "Serbian Latin" +msgstr "Sérvio Latino" + +msgid "Swedish" +msgstr "Sueco" + +msgid "Swahili" +msgstr "Suaíli" + +msgid "Tamil" +msgstr "Tâmil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tadjique" + +msgid "Thai" +msgstr "Tailandês" + +msgid "Turkmen" +msgstr "Turcomano" + +msgid "Turkish" +msgstr "Turco" + +msgid "Tatar" +msgstr "Tatar" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Uigur" + +msgid "Ukrainian" +msgstr "Ucraniano" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbeque" + +msgid "Vietnamese" +msgstr "Vietnamita" + +msgid "Simplified Chinese" +msgstr "Chinês Simplificado" + +msgid "Traditional Chinese" +msgstr "Chinês Tradicional" + +msgid "Messages" +msgstr "Mensagens" + +msgid "Site Maps" +msgstr "Site Maps" + +msgid "Static Files" +msgstr "Arquivos Estáticos" + +msgid "Syndication" +msgstr "Syndication" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Esse número de página não é um número inteiro" + +msgid "That page number is less than 1" +msgstr "Esse número de página é menor que 1" + +msgid "That page contains no results" +msgstr "Essa página não contém resultados" + +msgid "Enter a valid value." +msgstr "Informe um valor válido." + +msgid "Enter a valid domain name." +msgstr "Informe um domínio válido." + +msgid "Enter a valid URL." +msgstr "Informe uma URL válida." + +msgid "Enter a valid integer." +msgstr "Insira um número inteiro válido." + +msgid "Enter a valid email address." +msgstr "Informe um endereço de email válido." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Informe um “slug” válido tendo letras, números, \"underscores\" e hífens." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Informe um “slug” válido tendo letras em Unicode, números, \"underscores\" e " +"hífens." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Insira um endereço %(protocol)s válido." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 ou IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Insira apenas dígitos separados por vírgulas." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Certifique-se de que o valor é %(limit_value)s (ele é %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Certifique-se que este valor seja menor ou igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Certifique-se que este valor seja maior ou igual a %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Certifique-se que este valor seja múltiplo do tamanho do passo " +"%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Certifique-se que este valor seja múltiplo do tamanho do passo " +"%(limit_value)s, começando por %(offset)s, por exemplo %(offset)s, " +"%(valid_value1)s, %(valid_value2)s, e assim por diante." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Certifique-se de que o valor tenha no mínimo %(limit_value)d caractere (ele " +"possui %(show_value)d)." +msgstr[1] "" +"Certifique-se de que o valor tenha no mínimo %(limit_value)d caracteres (ele " +"possui %(show_value)d)." +msgstr[2] "" +"Certifique-se de que o valor tenha no mínimo %(limit_value)d caracteres (ele " +"possui %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Certifique-se de que o valor tenha no máximo %(limit_value)d caractere (ele " +"possui %(show_value)d)." +msgstr[1] "" +"Certifique-se de que o valor tenha no máximo %(limit_value)d caracteres (ele " +"possui %(show_value)d)." +msgstr[2] "" +"Certifique-se de que o valor tenha no máximo %(limit_value)d caracteres (ele " +"possui %(show_value)d)." + +msgid "Enter a number." +msgstr "Informe um número." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Certifique-se de que não tenha mais de %(max)s dígito no total." +msgstr[1] "Certifique-se de que não tenha mais de %(max)s dígitos no total." +msgstr[2] "Certifique-se de que não tenha mais de %(max)s dígitos no total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Certifique-se de que não tenha mais de %(max)s casa decimal." +msgstr[1] "Certifique-se de que não tenha mais de %(max)s casas decimais." +msgstr[2] "Certifique-se de que não tenha mais de %(max)s casas decimais." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Certifique-se de que não tenha mais de %(max)s dígito antes do ponto decimal." +msgstr[1] "" +"Certifique-se de que não tenha mais de %(max)s dígitos antes do ponto " +"decimal." +msgstr[2] "" +"Certifique-se de que não tenha mais de %(max)s dígitos antes do ponto " +"decimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"A extensão de arquivo “%(extension)s” não é permitida. As extensões válidas " +"são: %(allowed_extensions)s ." + +msgid "Null characters are not allowed." +msgstr "Caracteres nulos não são permitidos." + +msgid "and" +msgstr "e" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s com este %(field_labels)s já existe." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Restrição \"%(name)s\" foi violada." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Valor %(value)r não é uma opção válida." + +msgid "This field cannot be null." +msgstr "Este campo não pode ser nulo." + +msgid "This field cannot be blank." +msgstr "Este campo não pode estar vazio." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s com este %(field_label)s já existe." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s deve ser único para %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Campo do tipo: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "o valor “%(value)s” deve ser True ou False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "o valor “%(value)s” deve ser True, False ou None." + +msgid "Boolean (Either True or False)" +msgstr "Booleano (Verdadeiro ou Falso)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (até %(max_length)s)" + +msgid "String (unlimited)" +msgstr "String (ilimitado)" + +msgid "Comma-separated integers" +msgstr "Inteiros separados por vírgula" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"O valor \"%(value)s\" tem um formato de data inválido. Deve ser no formato " +"YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"O valor “%(value)s” tem o formato correto (YYYY-MM-DD) mas uma data inválida." + +msgid "Date (without time)" +msgstr "Data (sem hora)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"O valor “%(value)s” tem um formato inválido. Deve estar no formato YYYY-MM-" +"DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"O valor “%(value)s” está no formato correto. (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) mas é uma data/hora inválida" + +msgid "Date (with time)" +msgstr "Data (com hora)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "O valor “%(value)s” deve ser um número decimal." + +msgid "Decimal number" +msgstr "Número decimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"O valor “%(value)s” está em um formato inválido. Deve ser no formato [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Duração" + +msgid "Email address" +msgstr "Endereço de e-mail" + +msgid "File path" +msgstr "Caminho do arquivo" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "O valor “%(value)s” deve ser um float." + +msgid "Floating point number" +msgstr "Número de ponto flutuante" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "O valor “%(value)s” deve ser inteiro." + +msgid "Integer" +msgstr "Inteiro" + +msgid "Big (8 byte) integer" +msgstr "Inteiro grande (8 byte)" + +msgid "Small integer" +msgstr "Inteiro curto" + +msgid "IPv4 address" +msgstr "Endereço IPv4" + +msgid "IP address" +msgstr "Endereço IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "O valor “%(value)s” deve ser None, True ou False." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleano (Verdadeiro, Falso ou Nada)" + +msgid "Positive big integer" +msgstr "Inteiro grande positivo" + +msgid "Positive integer" +msgstr "Inteiro positivo" + +msgid "Positive small integer" +msgstr "Inteiro curto positivo" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (até %(max_length)s)" + +msgid "Text" +msgstr "Texto" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"O valor “%(value)s” tem um formato inválido. Deve estar no formato HH:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"O valor “%(value)s” está no formato correto (HH:MM[:ss[.uuuuuu]]) mas é uma " +"hora inválida." + +msgid "Time" +msgstr "Hora" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Dados binários bruto" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "O valor “%(value)s” não é um UUID válido" + +msgid "Universally unique identifier" +msgstr "Identificador único universal" + +msgid "File" +msgstr "Arquivo" + +msgid "Image" +msgstr "Imagem" + +msgid "A JSON object" +msgstr "Um objeto JSON" + +msgid "Value must be valid JSON." +msgstr "O valor deve ser um JSON válido." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "A instância de %(model)s com %(field)s %(value)r não existe." + +msgid "Foreign Key (type determined by related field)" +msgstr "Chave Estrangeira (tipo determinado pelo campo relacionado)" + +msgid "One-to-one relationship" +msgstr "Relacionamento um-para-um" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relacionamento %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relacionamentos %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relacionamento muitos-para-muitos" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Este campo é obrigatório." + +msgid "Enter a whole number." +msgstr "Informe um número inteiro." + +msgid "Enter a valid date." +msgstr "Informe uma data válida." + +msgid "Enter a valid time." +msgstr "Informe uma hora válida." + +msgid "Enter a valid date/time." +msgstr "Informe uma data/hora válida." + +msgid "Enter a valid duration." +msgstr "Insira uma duração válida." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "O número de dias deve ser entre {min_days} e {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nenhum arquivo enviado. Verifique o tipo de codificação do formulário." + +msgid "No file was submitted." +msgstr "Nenhum arquivo foi enviado." + +msgid "The submitted file is empty." +msgstr "O arquivo enviado está vazio." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Certifique-se de que o arquivo tenha no máximo %(max)d caractere (ele possui " +"%(length)d)." +msgstr[1] "" +"Certifique-se de que o arquivo tenha no máximo %(max)d caracteres (ele " +"possui %(length)d)." +msgstr[2] "" +"Certifique-se de que o arquivo tenha no máximo %(max)d caracteres (ele " +"possui %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Por favor, envie um arquivo ou marque o checkbox, mas não ambos." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Envie uma imagem válida. O arquivo enviado não é uma imagem ou está " +"corrompido." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Faça uma escolha válida. %(value)s não é uma das escolhas disponíveis." + +msgid "Enter a list of values." +msgstr "Informe uma lista de valores." + +msgid "Enter a complete value." +msgstr "Insira um valor completo." + +msgid "Enter a valid UUID." +msgstr "Insira um UUID válido." + +msgid "Enter a valid JSON." +msgstr "Insira um JSON válido" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Campo oculto %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Dados de ManagementForm estão faltando ou foram adulterados. Campos " +"ausentes: %(field_names)s. Você pode precisar enviar um relatório de bug se " +"o problema persistir." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Por favor, envie no máximo %(num)d formulário." +msgstr[1] "Por favor, envie no máximo %(num)d formulários." +msgstr[2] "Por favor, envie no máximo %(num)d formulários." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Por favor, envie ao menos %(num)d formulário." +msgstr[1] "Por favor, envie ao menos %(num)d formulários." +msgstr[2] "Por favor, envie ao menos %(num)d formulários." + +msgid "Order" +msgstr "Ordem" + +msgid "Delete" +msgstr "Remover" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Por favor, corrija o valor duplicado para %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Por favor, corrija o valor duplicado para %(field)s, o qual deve ser único." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Por favor, corrija o dado duplicado para %(field_name)s, o qual deve ser " +"único para %(lookup)s em %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Por favor, corrija os valores duplicados abaixo." + +msgid "The inline value did not match the parent instance." +msgstr "O valor na linha não correspondeu com a instância pai." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Faça uma escolha válida. Sua escolha não é uma das disponíveis." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” não é um valor válido." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s não pode ser interpretada dentro da fuso horário " +"%(current_timezone)s; está ambíguo ou não existe." + +msgid "Clear" +msgstr "Limpar" + +msgid "Currently" +msgstr "Atualmente" + +msgid "Change" +msgstr "Modificar" + +msgid "Unknown" +msgstr "Desconhecido" + +msgid "Yes" +msgstr "Sim" + +msgid "No" +msgstr "Não" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "sim,não,talvez" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d bytes" +msgstr[2] "%(size)d bytes" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "meia-noite" + +msgid "noon" +msgstr "meio-dia" + +msgid "Monday" +msgstr "Segunda-feira" + +msgid "Tuesday" +msgstr "Terça-feira" + +msgid "Wednesday" +msgstr "Quarta-feira" + +msgid "Thursday" +msgstr "Quinta-feira" + +msgid "Friday" +msgstr "Sexta-feira" + +msgid "Saturday" +msgstr "Sábado" + +msgid "Sunday" +msgstr "Domingo" + +msgid "Mon" +msgstr "Seg" + +msgid "Tue" +msgstr "Ter" + +msgid "Wed" +msgstr "Qua" + +msgid "Thu" +msgstr "Qui" + +msgid "Fri" +msgstr "Sex" + +msgid "Sat" +msgstr "Sab" + +msgid "Sun" +msgstr "Dom" + +msgid "January" +msgstr "Janeiro" + +msgid "February" +msgstr "Fevereiro" + +msgid "March" +msgstr "Março" + +msgid "April" +msgstr "Abril" + +msgid "May" +msgstr "Maio" + +msgid "June" +msgstr "Junho" + +msgid "July" +msgstr "Julho" + +msgid "August" +msgstr "Agosto" + +msgid "September" +msgstr "Setembro" + +msgid "October" +msgstr "Outubro" + +msgid "November" +msgstr "Novembro" + +msgid "December" +msgstr "Dezembro" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "fev" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "abr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "ago" + +msgid "sep" +msgstr "set" + +msgid "oct" +msgstr "out" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dez" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Fev." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Março" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Abril" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maio" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junho" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julho" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ago." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Set." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Out." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dez." + +msgctxt "alt. month" +msgid "January" +msgstr "Janeiro" + +msgctxt "alt. month" +msgid "February" +msgstr "Fevereiro" + +msgctxt "alt. month" +msgid "March" +msgstr "Março" + +msgctxt "alt. month" +msgid "April" +msgstr "Abril" + +msgctxt "alt. month" +msgid "May" +msgstr "Maio" + +msgctxt "alt. month" +msgid "June" +msgstr "Junho" + +msgctxt "alt. month" +msgid "July" +msgstr "Julho" + +msgctxt "alt. month" +msgid "August" +msgstr "Agosto" + +msgctxt "alt. month" +msgid "September" +msgstr "Setembro" + +msgctxt "alt. month" +msgid "October" +msgstr "Outubro" + +msgctxt "alt. month" +msgid "November" +msgstr "Novembro" + +msgctxt "alt. month" +msgid "December" +msgstr "Dezembro" + +msgid "This is not a valid IPv6 address." +msgstr "Este não é um endereço IPv6 válido." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr " %(truncated_text)s…" + +msgid "or" +msgstr "ou" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d ano" +msgstr[1] "%(num)d anos" +msgstr[2] "%(num)d anos" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mês" +msgstr[1] "%(num)d meses" +msgstr[2] "%(num)d meses" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d semana" +msgstr[1] "%(num)d semanas" +msgstr[2] "%(num)d semanas" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dia" +msgstr[1] "%(num)d dias" +msgstr[2] "%(num)d dias" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hora" +msgstr[1] "%(num)d horas" +msgstr[2] "%(num)d horas" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuto" +msgstr[1] "%(num)d minutos" +msgstr[2] "%(num)d minutos" + +msgid "Forbidden" +msgstr "Proibido" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verificação CSRF falhou. Pedido cancelado." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Você está vendo esta mensagem porque este site HTTPS requer que um " +"“cabeçalho Refer” seja enviado pelo seu navegador da web, mas nenhum foi " +"enviado. Este cabeçalho é necessário por motivos de segurança, para garantir " +"que seu navegador não seja invadido por terceiros." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Se você configurou seu browser para desabilitar os cabeçalhos “Referer”, por " +"favor reabilite-os, ao menos para este site, ou para conexões HTTPS, ou para " +"requisições “same-origin”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Se estiver usando a tag ou " +"incluindo o cabeçalho “Referrer-Policy: no-referrer”, por favor remova-os. A " +"proteção CSRF requer o cabeçalho “Referer” para fazer a checagem de " +"referência. Se estiver preocupado com privacidade, use alternativas como para links de sites de terceiros." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Você está vendo esta mensagem, porque este site requer um cookie CSRF no " +"envio de formulários. Este cookie é necessário por razões de segurança, para " +"garantir que o seu browser não está sendo sequestrado por terceiros." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Se você configurou seu browser para desabilitar cookies, por favor reabilite-" +"os, ao menos para este site ou para requisições do tipo \"same-origin\"." + +msgid "More information is available with DEBUG=True." +msgstr "Mais informações estão disponíveis com DEBUG=True." + +msgid "No year specified" +msgstr "Ano não especificado" + +msgid "Date out of range" +msgstr "Data fora de alcance" + +msgid "No month specified" +msgstr "Mês não especificado" + +msgid "No day specified" +msgstr "Dia não especificado" + +msgid "No week specified" +msgstr "Semana não especificada" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nenhum(a) %(verbose_name_plural)s disponível" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s futuros não disponíveis pois %(class_name)s." +"allow_future é False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"String de data com formato inválido “%(datestr)s” dado o formato “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "%(verbose_name)s não encontrado de acordo com a consulta" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Página não é “last”, e também não pode ser convertida para um int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Página inválida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Lista vazia e o \"%(class_name)s.allow_empty\" está como False." + +msgid "Directory indexes are not allowed here." +msgstr "Índices de diretório não são permitidos aqui." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" não existe" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Índice de %(directory)s " + +msgid "The install worked successfully! Congratulations!" +msgstr "A instalação foi com sucesso! Parabéns!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Ver as notas de lançamento do Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Você está vendo esta página pois possui DEBUG=True no seu arquivo de configurações e não " +"configurou nenhuma URL." + +msgid "Django Documentation" +msgstr "Documentação do Django" + +msgid "Topics, references, & how-to’s" +msgstr "Tópicos, referências, & how-to’s" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: Um aplicativo de votação" + +msgid "Get started with Django" +msgstr "Comece a usar Django" + +msgid "Django Community" +msgstr "Comunidade Django" + +msgid "Connect, get help, or contribute" +msgstr "Conecte-se, obtenha ajuda ou contribua" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c07e2748690f0daf78741aad22412aa311912fbc GIT binary patch literal 196 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_|vsFxJacWU< zOnGWfNq&q=esXDUYFT zcYTh&MYdh#4XP}v4sq<@W)OGge)pWiEXcauHbvIAKW@yj6!p7m>We1LNAl)X0SZ%q zFajFW(7+8~Fas=Rp^2MtgpYuOR!n0qrl9=;;TCjo8;)@Yy7(AQY--Red)K@Ve#DQr zn^!i}(R}@yg#S0-e|`6Jo(xNFujO`{k_9mpy|VSNRjNCZK$V;TqL7M$w?AzL&9c9v zyr7N*eI(fBi)Uyk%*vBPx;Ji~8=p|!_(<>3+gmieYmh4$gD&pKlA{D;)6yjecN|UM zH@#|72YpYGtUxynN8K4tx1B6`JJPpR({h4(>dPl|5I5E=yHa|AISxK6$|rpGVAG6= z>pbS!_|^UzhrBN<7n&|z1-3GgEXgq~eCDX8YfFY)V?D#w&lM}Uv`lxR8J9n)75SC6 z<$iWC^4&aI<^D~S6qzq)({&mxirkN*ya=;k6|R$m^VR%|pU;cv-7=hh4T;K!>u?cg z;xt>##3Y-BNhB_d;M@{t*(wc-e7M})a_`d&)=BgMkx%DuNMRTT)gPLr5%ZVh7>+?4 F`UmtR$N>NV literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/formats.py new file mode 100644 index 0000000..96a49b4 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/pt_BR/formats.py @@ -0,0 +1,34 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = r"j \d\e F \d\e Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = r"j \d\e F \d\e Y à\s H:i" +YEAR_MONTH_FORMAT = r"F \d\e Y" +MONTH_DAY_FORMAT = r"j \d\e F" +SHORT_DATE_FORMAT = "d/m/Y" +SHORT_DATETIME_FORMAT = "d/m/Y H:i" +FIRST_DAY_OF_WEEK = 0 # Sunday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + # "%d de %b de %Y", # '24 de Out de 2006' + # "%d de %b, %Y", # '25 Out, 2006' + # "%d de %B de %Y", # '25 de Outubro de 2006' + # "%d de %B, %Y", # '25 de Outubro, 2006' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' + "%d/%m/%y %H:%M:%S", # '25/10/06 14:30:59' + "%d/%m/%y %H:%M:%S.%f", # '25/10/06 14:30:59.000200' + "%d/%m/%y %H:%M", # '25/10/06 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..37e80b0b4ec3010fa30bed19e419a1aa273bf55b GIT binary patch literal 21493 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 XdW%yxk3rtPgHQ^3;=IS`QSZM2GAXOj literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po new file mode 100644 index 0000000..3b83307 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po @@ -0,0 +1,1323 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Abel Radac , 2017 +# Bogdan Mateescu, 2018-2019,2021 +# mihneasim , 2011 +# Daniel Ursache-Dogariu, 2011 +# Denis Darii , 2011,2014 +# Ionel Cristian Mărieș , 2012 +# Jannis Leidel , 2011 +# razvan ionescu , 2015 +# Razvan Stefanescu , 2016-2017 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-01-17 02:13-0600\n" +"PO-Revision-Date: 2023-04-25 06:49+0000\n" +"Last-Translator: Bogdan Mateescu, 2018-2019,2021\n" +"Language-Team: Romanian (http://www.transifex.com/django/django/language/" +"ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabă" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Asturiană" + +msgid "Azerbaijani" +msgstr "Azeră" + +msgid "Bulgarian" +msgstr "Bulgară" + +msgid "Belarusian" +msgstr "Bielorusă" + +msgid "Bengali" +msgstr "Bengaleză" + +msgid "Breton" +msgstr "Bretonă" + +msgid "Bosnian" +msgstr "Bosniacă" + +msgid "Catalan" +msgstr "Catalană" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "Cehă" + +msgid "Welsh" +msgstr "Galeză" + +msgid "Danish" +msgstr "Daneză" + +msgid "German" +msgstr "Germană" + +msgid "Lower Sorbian" +msgstr "Soraba Inferioară" + +msgid "Greek" +msgstr "Greacă" + +msgid "English" +msgstr "Engleză" + +msgid "Australian English" +msgstr "Engleză australiană" + +msgid "British English" +msgstr "Engleză britanică" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spaniolă" + +msgid "Argentinian Spanish" +msgstr "Spaniolă Argentiniană" + +msgid "Colombian Spanish" +msgstr "Spaniolă Columbiană" + +msgid "Mexican Spanish" +msgstr "Spaniolă Mexicană" + +msgid "Nicaraguan Spanish" +msgstr "Spaniolă Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Spaniolă venezueleană" + +msgid "Estonian" +msgstr "Estonă" + +msgid "Basque" +msgstr "Bască" + +msgid "Persian" +msgstr "Persană" + +msgid "Finnish" +msgstr "Finlandeză" + +msgid "French" +msgstr "Franceză" + +msgid "Frisian" +msgstr "Frizian" + +msgid "Irish" +msgstr "Irlandeză" + +msgid "Scottish Gaelic" +msgstr "Galeză Scoțiană" + +msgid "Galician" +msgstr "Galiciană" + +msgid "Hebrew" +msgstr "Ebraică" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Croată" + +msgid "Upper Sorbian" +msgstr "Soraba Superioară" + +msgid "Hungarian" +msgstr "Ungară" + +msgid "Armenian" +msgstr "Armeană" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indoneză" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandeză" + +msgid "Italian" +msgstr "Italiană" + +msgid "Japanese" +msgstr "Japoneză" + +msgid "Georgian" +msgstr "Georgiană" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Kazahă" + +msgid "Khmer" +msgstr "Khmeră" + +msgid "Kannada" +msgstr "Limba kannada" + +msgid "Korean" +msgstr "Koreană" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Luxemburgheză" + +msgid "Lithuanian" +msgstr "Lituaniană" + +msgid "Latvian" +msgstr "Letonă" + +msgid "Macedonian" +msgstr "Macedoneană" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongolă" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Burmeză" + +msgid "Norwegian Bokmål" +msgstr "Norvegiana modernă" + +msgid "Nepali" +msgstr "Nepaleză" + +msgid "Dutch" +msgstr "Olandeză" + +msgid "Norwegian Nynorsk" +msgstr "Norvegiană Nynorsk" + +msgid "Ossetic" +msgstr "Osețiană" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Poloneză" + +msgid "Portuguese" +msgstr "Portugheză" + +msgid "Brazilian Portuguese" +msgstr "Portugheză braziliană" + +msgid "Romanian" +msgstr "Română" + +msgid "Russian" +msgstr "Rusă" + +msgid "Slovak" +msgstr "Slovacă" + +msgid "Slovenian" +msgstr "Slovenă" + +msgid "Albanian" +msgstr "Albaneză" + +msgid "Serbian" +msgstr "Sârbă" + +msgid "Serbian Latin" +msgstr "Sârbă latină" + +msgid "Swedish" +msgstr "Suedeză" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Limba tamila" + +msgid "Telugu" +msgstr "Limba telugu" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tailandeză" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turcă" + +msgid "Tatar" +msgstr "Tătară" + +msgid "Udmurt" +msgstr "Udmurtă" + +msgid "Ukrainian" +msgstr "Ucraineană" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbecă" + +msgid "Vietnamese" +msgstr "Vietnameză" + +msgid "Simplified Chinese" +msgstr "Chineză simplificată" + +msgid "Traditional Chinese" +msgstr "Chineză tradițională" + +msgid "Messages" +msgstr "Mesaje" + +msgid "Site Maps" +msgstr "Harta sit-ului" + +msgid "Static Files" +msgstr "Fișiere statice" + +msgid "Syndication" +msgstr "Sindicalizare" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "Numărul de pagină nu este întreg" + +msgid "That page number is less than 1" +msgstr "Numărul de pagină este mai mic decât 1" + +msgid "That page contains no results" +msgstr "Această pagină nu conține nici un rezultat" + +msgid "Enter a valid value." +msgstr "Introduceți o valoare validă." + +msgid "Enter a valid URL." +msgstr "Introduceți un URL valid." + +msgid "Enter a valid integer." +msgstr "Introduceți un întreg valid." + +msgid "Enter a valid email address." +msgstr "Introduceți o adresă de email validă." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Introduceți un “slug” valid care constă în litere, numere, underscore sau " +"cratime." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Introduceţi o adresă IPv4 validă." + +msgid "Enter a valid IPv6 address." +msgstr "Intoduceți o adresă IPv6 validă." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Introduceți o adresă IPv4 sau IPv6 validă." + +msgid "Enter only digits separated by commas." +msgstr "Introduceţi numai numere separate de virgule." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Asiguraţi-vă că această valoare este %(limit_value)s (este %(show_value)s )." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Asiguraţi-vă că această valoare este mai mică sau egală cu %(limit_value)s ." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Asiguraţi-vă că această valoare este mai mare sau egală cu %(limit_value)s ." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asigurați-vă că această valoare are cel puțin %(limit_value)d caracter (are " +"%(show_value)d)." +msgstr[1] "" +"Asigurați-vă că această valoare are cel puțin %(limit_value)d caractere (are " +"%(show_value)d)." +msgstr[2] "" +"Asigurați-vă că această valoare are cel puțin %(limit_value)d de caractere " +"(are %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Asigurați-vă că această valoare are cel mult %(limit_value)d caracter (are " +"%(show_value)d)." +msgstr[1] "" +"Asigurați-vă că această valoare are cel mult %(limit_value)d caractere (are " +"%(show_value)d)." +msgstr[2] "" +"Asigurați-vă că această valoare are cel mult %(limit_value)d de caractere " +"(are %(show_value)d)." + +msgid "Enter a number." +msgstr "Introduceţi un număr." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Asigurați-vă că nu este mai mult de %(max)s cifră în total." +msgstr[1] "Asigurați-vă că nu sunt mai mult de %(max)s cifre în total." +msgstr[2] "Asigurați-vă că nu sunt mai mult de %(max)s de cifre în total." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Asigurați-vă că nu este mai mult de %(max)s zecimală în total." +msgstr[1] "Asigurați-vă că nu sunt mai mult de %(max)s zecimale în total." +msgstr[2] "Asigurați-vă că nu sunt mai mult de %(max)s de zecimale în total." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Asigurați-vă că nu este mai mult de %(max)s cifră înainte de punctul zecimal." +msgstr[1] "" +"Asigurați-vă că nu sunt mai mult de %(max)s cifre înainte de punctul zecimal." +msgstr[2] "" +"Asigurați-vă că nu sunt mai mult de %(max)s de cifre înainte de punctul " +"zecimal." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Caracterele Null nu sunt permise." + +msgid "and" +msgstr "și" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s cu acest %(field_labels)s există deja." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Valoarea %(value)r nu este o opțiune validă." + +msgid "This field cannot be null." +msgstr "Acest câmp nu poate fi nul." + +msgid "This field cannot be blank." +msgstr "Acest câmp nu poate fi gol." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s cu %(field_label)s deja există." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s trebuie să fie unic(e) pentru %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Câmp de tip: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (adevărat sau fals)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Şir de caractere (cel mult %(max_length)s caractere)" + +msgid "String (unlimited)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "Numere întregi separate de virgule" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Dată (fară oră)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Dată (cu oră)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Număr zecimal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Durată" + +msgid "Email address" +msgstr "Adresă e-mail" + +msgid "File path" +msgstr "Calea fisierului" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Număr cu virgulă" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Întreg" + +msgid "Big (8 byte) integer" +msgstr "Întreg mare (8 octeți)" + +msgid "Small integer" +msgstr "Întreg mic" + +msgid "IPv4 address" +msgstr "Adresă IPv4" + +msgid "IP address" +msgstr "Adresă IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (adevărat, fals sau niciuna)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Întreg pozitiv" + +msgid "Positive small integer" +msgstr "Întreg pozitiv mic" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (până la %(max_length)s)" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Timp" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Date binare brute" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "Identificator unic universal" + +msgid "File" +msgstr "Fișier" + +msgid "Image" +msgstr "Imagine" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Instanța %(model)s cu %(field)s %(value)r inexistentă." + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (tip determinat de câmpul aferent)" + +msgid "One-to-one relationship" +msgstr "Relaţie unul-la-unul" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relație %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relații %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relație multe-la-multe" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Acest câmp este obligatoriu." + +msgid "Enter a whole number." +msgstr "Introduceţi un număr întreg." + +msgid "Enter a valid date." +msgstr "Introduceți o dată validă." + +msgid "Enter a valid time." +msgstr "Introduceți o oră validă." + +msgid "Enter a valid date/time." +msgstr "Introduceți o dată/oră validă." + +msgid "Enter a valid duration." +msgstr "Introduceți o durată validă." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Numărul de zile trebuie să fie cuprins între {min_days} și {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Nici un fișier nu a fost trimis. Verificați tipul fișierului." + +msgid "No file was submitted." +msgstr "Nici un fișier nu a fost trimis." + +msgid "The submitted file is empty." +msgstr "Fișierul încărcat este gol." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Asigurați-vă că numele fișierului are cel mult %(max)d caracter (are " +"%(length)d)." +msgstr[1] "" +"Asigurați-vă că numele fișierului are cel mult %(max)d caractere (are " +"%(length)d)." +msgstr[2] "" +"Asigurați-vă că numele fișierului are cel mult %(max)d de caractere (are " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Fie indicați un fişier, fie bifaţi caseta de selectare, nu ambele." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Încărcaţi o imagine validă. Fişierul încărcat nu era o imagine sau era o " +"imagine coruptă." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Selectați o opțiune validă. %(value)s nu face parte din opțiunile " +"disponibile." + +msgid "Enter a list of values." +msgstr "Introduceți o listă de valori." + +msgid "Enter a complete value." +msgstr "Introduceți o valoare completă." + +msgid "Enter a valid UUID." +msgstr "Introduceți un UUID valid." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Câmp ascuns %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +msgid "Order" +msgstr "Ordine" + +msgid "Delete" +msgstr "Șterge" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Corectaţi datele duplicate pentru %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Corectaţi datele duplicate pentru %(field)s , ce trebuie să fie unic." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Corectaţi datele duplicate pentru %(field_name)s , care trebuie să fie unice " +"pentru %(lookup)s în %(date_field)s ." + +msgid "Please correct the duplicate values below." +msgstr "Corectaţi valorile duplicate de mai jos." + +msgid "The inline value did not match the parent instance." +msgstr "Valoarea în linie nu s-a potrivit cu instanța părinte." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Selectați o opțiune validă. Această opțiune nu face parte din opțiunile " +"disponibile." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Șterge" + +msgid "Currently" +msgstr "În prezent" + +msgid "Change" +msgstr "Schimbă" + +msgid "Unknown" +msgstr "Necunoscut" + +msgid "Yes" +msgstr "Da" + +msgid "No" +msgstr "Nu" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "da,nu,poate" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d octet" +msgstr[1] "%(size)d octeţi" +msgstr[2] "%(size)d de octeţi" + +#, python-format +msgid "%s KB" +msgstr "%s KO" + +#, python-format +msgid "%s MB" +msgstr "%s MO" + +#, python-format +msgid "%s GB" +msgstr "%s GO" + +#, python-format +msgid "%s TB" +msgstr "%s TO" + +#, python-format +msgid "%s PB" +msgstr "%s PO" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "miezul nopții" + +msgid "noon" +msgstr "amiază" + +msgid "Monday" +msgstr "Luni" + +msgid "Tuesday" +msgstr "Marți" + +msgid "Wednesday" +msgstr "Miercuri" + +msgid "Thursday" +msgstr "Joi" + +msgid "Friday" +msgstr "Vineri" + +msgid "Saturday" +msgstr "Sâmbătă" + +msgid "Sunday" +msgstr "Duminică" + +msgid "Mon" +msgstr "Lun" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mie" + +msgid "Thu" +msgstr "Joi" + +msgid "Fri" +msgstr "Vin" + +msgid "Sat" +msgstr "Sâm" + +msgid "Sun" +msgstr "Dum" + +msgid "January" +msgstr "Ianuarie" + +msgid "February" +msgstr "Februarie" + +msgid "March" +msgstr "Martie" + +msgid "April" +msgstr "Aprilie" + +msgid "May" +msgstr "Mai" + +msgid "June" +msgstr "Iunie" + +msgid "July" +msgstr "Iulie" + +msgid "August" +msgstr "August" + +msgid "September" +msgstr "Septembrie" + +msgid "October" +msgstr "Octombrie" + +msgid "November" +msgstr "Noiembrie" + +msgid "December" +msgstr "Decembrie" + +msgid "jan" +msgstr "ian" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "mai" + +msgid "jun" +msgstr "iun" + +msgid "jul" +msgstr "iul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "oct" + +msgid "nov" +msgstr "noi" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ian." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Martie" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Aprilie" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mai" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Iunie" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Iulie" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Oct." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Noie." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Ianuarie" + +msgctxt "alt. month" +msgid "February" +msgstr "Februarie" + +msgctxt "alt. month" +msgid "March" +msgstr "Martie" + +msgctxt "alt. month" +msgid "April" +msgstr "Aprilie" + +msgctxt "alt. month" +msgid "May" +msgstr "Mai" + +msgctxt "alt. month" +msgid "June" +msgstr "Iunie" + +msgctxt "alt. month" +msgid "July" +msgstr "Iulie" + +msgctxt "alt. month" +msgid "August" +msgstr "August" + +msgctxt "alt. month" +msgid "September" +msgstr "Septembrie" + +msgctxt "alt. month" +msgid "October" +msgstr "Octombrie" + +msgctxt "alt. month" +msgid "November" +msgstr "Noiembrie" + +msgctxt "alt. month" +msgid "December" +msgstr "Decembrie" + +msgid "This is not a valid IPv6 address." +msgstr "Aceasta nu este o adresă IPv6 validă." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "sau" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d an" +msgstr[1] "%(num)d ani" +msgstr[2] "%(num)d de ani" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d lună" +msgstr[1] "%(num)d luni" +msgstr[2] "%(num)d de luni" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d săptămână" +msgstr[1] "%(num)d săptămâni" +msgstr[2] "%(num)d de săptămâni" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d zi" +msgstr[1] "%(num)d zile" +msgstr[2] "%(num)d de zile" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d oră" +msgstr[1] "%(num)d ore" +msgstr[2] "%(num)d de ore" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minut" +msgstr[1] "%(num)d minute" +msgstr[2] "%(num)d de minute" + +msgid "Forbidden" +msgstr "Interzis" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verificarea CSRF nereușită. Cerere eșuată." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Vedeți acest mesaj deoarece această pagină web necesită un cookie CSRF la " +"trimiterea formularelor. Acest cookie este necesar din motive de securitate, " +"pentru a se asigura că browserul nu este deturnat de terți." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Mai multe informații sunt disponibile pentru DEBUG=True." + +msgid "No year specified" +msgstr "Niciun an specificat" + +msgid "Date out of range" +msgstr "Dată în afara intervalului" + +msgid "No month specified" +msgstr "Nicio lună specificată" + +msgid "No day specified" +msgstr "Nicio zi specificată" + +msgid "No week specified" +msgstr "Nicio săptămîna specificată" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s nu e disponibil" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Viitorul %(verbose_name_plural)s nu e disponibil deoarece %(class_name)s ." +"allow_future este Fals." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Niciun rezultat pentru %(verbose_name)s care se potrivesc interogării" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Pagină invalidă (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Aici nu sunt permise indexuri la directoare" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index pentru %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalarea a funcționat cu succes! Felicitări!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Vezi notele de lansare pentru Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Vedeți această pagină deoarece DEBUG=True este în fișierul de setări și nu ați " +"configurat niciun URL." + +msgid "Django Documentation" +msgstr "Documentația Django" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: O aplicație de votare" + +msgid "Get started with Django" +msgstr "Începeți cu Django" + +msgid "Django Community" +msgstr "Comunitatea Django" + +msgid "Connect, get help, or contribute" +msgstr "Conectați-vă, obțineți ajutor sau contribuiți" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ro/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ro/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ro/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1bad56439ad9c84332d9890ca4677980d57141a GIT binary patch literal 193 zcmd1j<>g`kf*C(T(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFdh(6a)hf0XwcOwWl7qaIoa!yH!=i0SD9o79XluAtAzI%c*T5z^ckG$ua7! ze<|0V@(-$<`oM7tUBsJtvonv?inQP72w3-jy!8V`5WlOYxjN8%hBw!sU;+`CL?rH@ z4yF)=X+&cNF}RDm_zaz`3C#W^5es+@cn-(`a+pUv?x7y;qdvZHi1DCgZiR*5my|Z! zlw8dxLdB_C1)*fHw3GajtD)X}BH;{Ux@1Kxi91R3kL>1!3F2G;ttZM8LBz*yOqGnN z%|rvN70g7ZkiGPP+AA8MHz0+^o3$s;K}!7UQz_yX~Y?5g3y zvJKfqysI0p&7j(83PWF&?a;7HS33pX96Lq!Ps-5IEZYs6Q{VoRTH_YF?Nm-bv=-r4 zRsDiSbxb#xp8GP-L8Cg;*517yt*s9g^-?$F>(Eh`vMsxo4ROu#9NAPF+Q9UTxoU@3 zw&g8#^XeCoF>oDqd5$kMH(n+eAp%XA`jL{UPNh_MTc#RUvF-Ld{ZPJ z?xOfx1g-$zM*DR-jnn;Vx=rI~n@qEGx=OQMROHg#k4N_7F2#p!@~Qe)^7l|^nkJhM OOS4^;p}RE6l79hC;>5WC literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ro/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ro/formats.py new file mode 100644 index 0000000..5a0c173 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ro/formats.py @@ -0,0 +1,35 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j F Y, H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y, H:i" +FIRST_DAY_OF_WEEK = 1 + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", + "%d.%b.%Y", + "%d %B %Y", + "%A, %d %B %Y", +] +TIME_INPUT_FORMATS = [ + "%H:%M", + "%H:%M:%S", + "%H:%M:%S.%f", +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y, %H:%M", + "%d.%m.%Y, %H:%M:%S", + "%d.%B.%Y, %H:%M", + "%d.%B.%Y, %H:%M:%S", +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..138118e11aa28c868fa9addf50173e2f91ffce0d GIT binary patch literal 38774 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 PQ>K<0{DPDFJ, 2014 +# Anton Bazhanov , 2017 +# Denis Darii , 2011 +# Dimmus , 2011 +# eigrad , 2012 +# Eugene , 2013 +# Eugene Morozov , 2021 +# eXtractor , 2015 +# crazyzubr , 2020 +# Igor Melnyk, 2014 +# Ivan Khomutov , 2017 +# Jannis Leidel , 2011 +# lilo.panic, 2016 +# Mikhail Zholobov , 2013 +# Nikolay Korotkiy , 2018 +# Panasoft, 2021 +# Вася Аникин , 2017 +# SeryiMysh , 2020 +# Алексей Борискин , 2013-2017,2019-2020,2022-2024 +# Bobsans , 2016,2018 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Алексей Борискин , " +"2013-2017,2019-2020,2022-2024\n" +"Language-Team: Russian (http://app.transifex.com/django/django/language/" +"ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" + +msgid "Afrikaans" +msgstr "Бурский" + +msgid "Arabic" +msgstr "Арабский" + +msgid "Algerian Arabic" +msgstr "Алжирский арабский" + +msgid "Asturian" +msgstr "Астурийский" + +msgid "Azerbaijani" +msgstr "Азербайджанский" + +msgid "Bulgarian" +msgstr "Болгарский" + +msgid "Belarusian" +msgstr "Белоруский" + +msgid "Bengali" +msgstr "Бенгальский" + +msgid "Breton" +msgstr "Бретонский" + +msgid "Bosnian" +msgstr "Боснийский" + +msgid "Catalan" +msgstr "Каталанский" + +msgid "Central Kurdish (Sorani)" +msgstr "Центральнокурдский (Сорани)" + +msgid "Czech" +msgstr "Чешский" + +msgid "Welsh" +msgstr "Уэльский" + +msgid "Danish" +msgstr "Датский" + +msgid "German" +msgstr "Немецкий" + +msgid "Lower Sorbian" +msgstr "Нижнелужицкий" + +msgid "Greek" +msgstr "Греческий" + +msgid "English" +msgstr "Английский" + +msgid "Australian English" +msgstr "Австралийский английский" + +msgid "British English" +msgstr "Британский английский" + +msgid "Esperanto" +msgstr "Эсперанто" + +msgid "Spanish" +msgstr "Испанский" + +msgid "Argentinian Spanish" +msgstr "Аргентинский испанский" + +msgid "Colombian Spanish" +msgstr "Колумбийский испанский" + +msgid "Mexican Spanish" +msgstr "Мексиканский испанский" + +msgid "Nicaraguan Spanish" +msgstr "Никарагуанский испанский" + +msgid "Venezuelan Spanish" +msgstr "Венесуэльский Испанский" + +msgid "Estonian" +msgstr "Эстонский" + +msgid "Basque" +msgstr "Баскский" + +msgid "Persian" +msgstr "Персидский" + +msgid "Finnish" +msgstr "Финский" + +msgid "French" +msgstr "Французский" + +msgid "Frisian" +msgstr "Фризский" + +msgid "Irish" +msgstr "Ирландский" + +msgid "Scottish Gaelic" +msgstr "Шотландский гэльский" + +msgid "Galician" +msgstr "Галисийский" + +msgid "Hebrew" +msgstr "Иврит" + +msgid "Hindi" +msgstr "Хинди" + +msgid "Croatian" +msgstr "Хорватский" + +msgid "Upper Sorbian" +msgstr "Верхнелужицкий" + +msgid "Hungarian" +msgstr "Венгерский" + +msgid "Armenian" +msgstr "Армянский" + +msgid "Interlingua" +msgstr "Интерлингва" + +msgid "Indonesian" +msgstr "Индонезийский" + +msgid "Igbo" +msgstr "Игбо" + +msgid "Ido" +msgstr "Идо" + +msgid "Icelandic" +msgstr "Исландский" + +msgid "Italian" +msgstr "Итальянский" + +msgid "Japanese" +msgstr "Японский" + +msgid "Georgian" +msgstr "Грузинский" + +msgid "Kabyle" +msgstr "Кабильский" + +msgid "Kazakh" +msgstr "Казахский" + +msgid "Khmer" +msgstr "Кхмерский" + +msgid "Kannada" +msgstr "Каннада" + +msgid "Korean" +msgstr "Корейский" + +msgid "Kyrgyz" +msgstr "Киргизский" + +msgid "Luxembourgish" +msgstr "Люксембургский" + +msgid "Lithuanian" +msgstr "Литовский" + +msgid "Latvian" +msgstr "Латвийский" + +msgid "Macedonian" +msgstr "Македонский" + +msgid "Malayalam" +msgstr "Малаялам" + +msgid "Mongolian" +msgstr "Монгольский" + +msgid "Marathi" +msgstr "Маратхи" + +msgid "Malay" +msgstr "Малайский" + +msgid "Burmese" +msgstr "Бирманский" + +msgid "Norwegian Bokmål" +msgstr "Норвежский (Букмол)" + +msgid "Nepali" +msgstr "Непальский" + +msgid "Dutch" +msgstr "Голландский" + +msgid "Norwegian Nynorsk" +msgstr "Норвежский (Нюнорск)" + +msgid "Ossetic" +msgstr "Осетинский" + +msgid "Punjabi" +msgstr "Панджаби" + +msgid "Polish" +msgstr "Польский" + +msgid "Portuguese" +msgstr "Португальский" + +msgid "Brazilian Portuguese" +msgstr "Бразильский португальский" + +msgid "Romanian" +msgstr "Румынский" + +msgid "Russian" +msgstr "Русский" + +msgid "Slovak" +msgstr "Словацкий" + +msgid "Slovenian" +msgstr "Словенский" + +msgid "Albanian" +msgstr "Албанский" + +msgid "Serbian" +msgstr "Сербский" + +msgid "Serbian Latin" +msgstr "Сербский (латиница)" + +msgid "Swedish" +msgstr "Шведский" + +msgid "Swahili" +msgstr "Суахили" + +msgid "Tamil" +msgstr "Тамильский" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Tajik" +msgstr "Таджикский" + +msgid "Thai" +msgstr "Тайский" + +msgid "Turkmen" +msgstr "Туркменский" + +msgid "Turkish" +msgstr "Турецкий" + +msgid "Tatar" +msgstr "Татарский" + +msgid "Udmurt" +msgstr "Удмуртский" + +msgid "Uyghur" +msgstr "Уйгурский" + +msgid "Ukrainian" +msgstr "Украинский" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "Узбекский" + +msgid "Vietnamese" +msgstr "Вьетнамский" + +msgid "Simplified Chinese" +msgstr "Упрощенный китайский" + +msgid "Traditional Chinese" +msgstr "Традиционный китайский" + +msgid "Messages" +msgstr "Сообщения" + +msgid "Site Maps" +msgstr "Карта сайта" + +msgid "Static Files" +msgstr "Статические файлы" + +msgid "Syndication" +msgstr "Ленты новостей" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Номер страницы не является натуральным числом" + +msgid "That page number is less than 1" +msgstr "Номер страницы меньше 1" + +msgid "That page contains no results" +msgstr "Страница не содержит результатов" + +msgid "Enter a valid value." +msgstr "Введите правильное значение." + +msgid "Enter a valid domain name." +msgstr "Введите правильное имя домена." + +msgid "Enter a valid URL." +msgstr "Введите правильный URL." + +msgid "Enter a valid integer." +msgstr "Введите правильное число." + +msgid "Enter a valid email address." +msgstr "Введите правильный адрес электронной почты." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Значение должно состоять только из латинских букв, цифр, знаков " +"подчеркивания или дефиса." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Значение должно состоять только из символов входящих в стандарт Юникод, " +"цифр, символов подчёркивания или дефисов." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Введите правильный адрес %(protocol)s." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 или IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Введите цифры, разделенные запятыми." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Убедитесь, что это значение — %(limit_value)s (сейчас оно — %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Убедитесь, что это значение меньше либо равно %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Убедитесь, что это значение больше либо равно %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Убедитесь, что это значение кратно числу %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Убедитесь, что данное значение отстоит от %(offset)s на число, кратное шагу " +"%(limit_value)s, например: %(offset)s, %(valid_value1)s, %(valid_value2)s и " +"так далее." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Убедитесь, что это значение содержит не менее %(limit_value)d символ (сейчас " +"%(show_value)d)." +msgstr[1] "" +"Убедитесь, что это значение содержит не менее %(limit_value)d символов " +"(сейчас %(show_value)d)." +msgstr[2] "" +"Убедитесь, что это значение содержит не менее %(limit_value)d символов " +"(сейчас %(show_value)d)." +msgstr[3] "" +"Убедитесь, что это значение содержит не менее %(limit_value)d символов " +"(сейчас %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Убедитесь, что это значение содержит не более %(limit_value)d символ (сейчас " +"%(show_value)d)." +msgstr[1] "" +"Убедитесь, что это значение содержит не более %(limit_value)d символов " +"(сейчас %(show_value)d)." +msgstr[2] "" +"Убедитесь, что это значение содержит не более %(limit_value)d символов " +"(сейчас %(show_value)d)." +msgstr[3] "" +"Убедитесь, что это значение содержит не более %(limit_value)d символов " +"(сейчас %(show_value)d)." + +msgid "Enter a number." +msgstr "Введите число." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Убедитесь, что вы ввели не более %(max)s цифры." +msgstr[1] "Убедитесь, что вы ввели не более %(max)s цифр." +msgstr[2] "Убедитесь, что вы ввели не более %(max)s цифр." +msgstr[3] "Убедитесь, что вы ввели не более %(max)s цифр." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Убедитесь, что вы ввели не более %(max)s цифры после запятой." +msgstr[1] "Убедитесь, что вы ввели не более %(max)s цифр после запятой." +msgstr[2] "Убедитесь, что вы ввели не более %(max)s цифр после запятой." +msgstr[3] "Убедитесь, что вы ввели не более %(max)s цифр после запятой." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Убедитесь, что вы ввели не более %(max)s цифры перед запятой." +msgstr[1] "Убедитесь, что вы ввели не более %(max)s цифр перед запятой." +msgstr[2] "Убедитесь, что вы ввели не более %(max)s цифр перед запятой." +msgstr[3] "Убедитесь, что вы ввели не более %(max)s цифр перед запятой." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Расширение файлов “%(extension)s” не поддерживается. Разрешенные расширения: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Данные содержат запрещённый символ: ноль-байт" + +msgid "and" +msgstr "и" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" +"%(model_name)s с такими значениями полей %(field_labels)s уже существует." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Нарушено ограничение \"%(name)s\"." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Значения %(value)r нет среди допустимых вариантов." + +msgid "This field cannot be null." +msgstr "Это поле не может иметь значение NULL." + +msgid "This field cannot be blank." +msgstr "Это поле не может быть пустым." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s с таким %(field_label)s уже существует." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"Значение в поле «%(field_label)s» должно быть уникальным для фрагмента " +"«%(lookup_type)s» даты в поле %(date_field_label)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Поле типа %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Значение “%(value)s” должно быть True или False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Значение “%(value)s” должно быть True, False или None." + +msgid "Boolean (Either True or False)" +msgstr "Логическое (True или False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Строка (до %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Строка (неограниченной длины)" + +msgid "Comma-separated integers" +msgstr "Целые, разделенные запятыми" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Значение “%(value)s” имеет неверный формат даты. Оно должно быть в формате " +"YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Значение “%(value)s” имеет корректный формат (YYYY-MM-DD), но это " +"недействительная дата." + +msgid "Date (without time)" +msgstr "Дата (без указания времени)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Значение “%(value)s” имеет неверный формат. Оно должно быть в формате YYYY-" +"MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Значение “%(value)s” имеет корректный формат (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]), но это недействительные дата/время." + +msgid "Date (with time)" +msgstr "Дата (с указанием времени)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Значение “%(value)s” должно быть десятичным числом." + +msgid "Decimal number" +msgstr "Число с фиксированной запятой" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Значение “%(value)s” имеет неверный формат. Оно должно быть в формате [DD] " +"[HH:[MM:]]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Продолжительность" + +msgid "Email address" +msgstr "Адрес электронной почты" + +msgid "File path" +msgstr "Путь к файлу" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Значение “%(value)s” должно быть числом с плавающей точкой." + +msgid "Floating point number" +msgstr "Число с плавающей запятой" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Значение “%(value)s” должно быть целым числом." + +msgid "Integer" +msgstr "Целое" + +msgid "Big (8 byte) integer" +msgstr "Длинное целое (8 байт)" + +msgid "Small integer" +msgstr "Малое целое число" + +msgid "IPv4 address" +msgstr "IPv4 адрес" + +msgid "IP address" +msgstr "IP-адрес" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Значение “%(value)s” должно быть None, True или False." + +msgid "Boolean (Either True, False or None)" +msgstr "Логическое (True, False или None)" + +msgid "Positive big integer" +msgstr "Положительное большое целое число" + +msgid "Positive integer" +msgstr "Положительное целое число" + +msgid "Positive small integer" +msgstr "Положительное малое целое число" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Слаг (до %(max_length)s)" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Значение “%(value)s” имеет неверный формат. Оно должно быть в формате HH:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Значение “%(value)s” имеет корректный формат (HH:MM[:ss[.uuuuuu]]), но это " +"недействительное время." + +msgid "Time" +msgstr "Время" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Необработанные двоичные данные" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "Значение “%(value)s” не является верным UUID-ом." + +msgid "Universally unique identifier" +msgstr "Поле для UUID, универсального уникального идентификатора" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Изображение" + +msgid "A JSON object" +msgstr "JSON-объект" + +msgid "Value must be valid JSON." +msgstr "Значение должно быть корректным JSON-ом." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" +"Объект модели %(model)s со значением поля %(field)s, равным %(value)r, не " +"существует." + +msgid "Foreign Key (type determined by related field)" +msgstr "Внешний Ключ (тип определен по связанному полю)" + +msgid "One-to-one relationship" +msgstr "Связь \"один к одному\"" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Связь %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Связи %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Связь \"многие ко многим\"" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Обязательное поле." + +msgid "Enter a whole number." +msgstr "Введите целое число." + +msgid "Enter a valid date." +msgstr "Введите правильную дату." + +msgid "Enter a valid time." +msgstr "Введите правильное время." + +msgid "Enter a valid date/time." +msgstr "Введите правильную дату и время." + +msgid "Enter a valid duration." +msgstr "Введите правильную продолжительность." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Количество дней должно быть в диапазоне от {min_days} до {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ни одного файла не было отправлено. Проверьте тип кодировки формы." + +msgid "No file was submitted." +msgstr "Ни одного файла не было отправлено." + +msgid "The submitted file is empty." +msgstr "Отправленный файл пуст." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Убедитесь, что это имя файла содержит не более %(max)d символ (сейчас " +"%(length)d)." +msgstr[1] "" +"Убедитесь, что это имя файла содержит не более %(max)d символов (сейчас " +"%(length)d)." +msgstr[2] "" +"Убедитесь, что это имя файла содержит не более %(max)d символов (сейчас " +"%(length)d)." +msgstr[3] "" +"Убедитесь, что это имя файла содержит не более %(max)d символов (сейчас " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Пожалуйста, загрузите файл или поставьте флажок \"Очистить\", но не " +"совершайте оба действия одновременно." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Загрузите правильное изображение. Файл, который вы загрузили, поврежден или " +"не является изображением." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Выберите корректный вариант. %(value)s нет среди допустимых значений." + +msgid "Enter a list of values." +msgstr "Введите список значений." + +msgid "Enter a complete value." +msgstr "Введите весь список значений." + +msgid "Enter a valid UUID." +msgstr "Введите правильный UUID." + +msgid "Enter a valid JSON." +msgstr "Введите корректный JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Скрытое поле %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Данные ManagementForm отсутствуют или были подделаны. Отсутствующие поля: " +"%(field_names)s. Если проблема не исчезнет, вам может потребоваться " +"отправить отчет об ошибке." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Пожалуйста, отправьте не больше %(num)d формы." +msgstr[1] "Пожалуйста, отправьте не больше %(num)d форм." +msgstr[2] "Пожалуйста, отправьте не больше %(num)d форм." +msgstr[3] "Пожалуйста, отправьте не больше %(num)d форм." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Пожалуйста, отправьте %(num)d форму." +msgstr[1] "Пожалуйста, отправьте %(num)d формы." +msgstr[2] "Пожалуйста, отправьте %(num)d форм." +msgstr[3] "Пожалуйста, отправьте %(num)d форм." + +msgid "Order" +msgstr "Порядок" + +msgid "Delete" +msgstr "Удалить" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Пожалуйста, измените повторяющееся значение в поле \"%(field)s\"." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Пожалуйста, измените значение в поле %(field)s, оно должно быть уникальным." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Пожалуйста, измените значение в поле %(field_name)s, оно должно быть " +"уникальным для %(lookup)s в поле %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Пожалуйста, измените повторяющиеся значения ниже." + +msgid "The inline value did not match the parent instance." +msgstr "Значение во вложенной форме не совпадает со значением в базовой форме." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Выберите корректный вариант. Вашего варианта нет среди допустимых значений." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” является неверным значением." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s не может быть интерпретирована в часовом поясе " +"%(current_timezone)s; дата может быть неоднозначной или оказаться " +"несуществующей." + +msgid "Clear" +msgstr "Очистить" + +msgid "Currently" +msgstr "На данный момент" + +msgid "Change" +msgstr "Изменить" + +msgid "Unknown" +msgstr "Неизвестно" + +msgid "Yes" +msgstr "Да" + +msgid "No" +msgstr "Нет" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "да,нет,может быть" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" +msgstr[1] "%(size)d байта" +msgstr[2] "%(size)d байт" +msgstr[3] "%(size)d байт" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s ГБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "п.п." + +msgid "a.m." +msgstr "д.п." + +msgid "PM" +msgstr "ПП" + +msgid "AM" +msgstr "ДП" + +msgid "midnight" +msgstr "полночь" + +msgid "noon" +msgstr "полдень" + +msgid "Monday" +msgstr "Понедельник" + +msgid "Tuesday" +msgstr "Вторник" + +msgid "Wednesday" +msgstr "Среда" + +msgid "Thursday" +msgstr "Четверг" + +msgid "Friday" +msgstr "Пятница" + +msgid "Saturday" +msgstr "Суббота" + +msgid "Sunday" +msgstr "Воскресенье" + +msgid "Mon" +msgstr "Пн" + +msgid "Tue" +msgstr "Вт" + +msgid "Wed" +msgstr "Ср" + +msgid "Thu" +msgstr "Чт" + +msgid "Fri" +msgstr "Пт" + +msgid "Sat" +msgstr "Сб" + +msgid "Sun" +msgstr "Вс" + +msgid "January" +msgstr "Январь" + +msgid "February" +msgstr "Февраль" + +msgid "March" +msgstr "Март" + +msgid "April" +msgstr "Апрель" + +msgid "May" +msgstr "Май" + +msgid "June" +msgstr "Июнь" + +msgid "July" +msgstr "Июль" + +msgid "August" +msgstr "Август" + +msgid "September" +msgstr "Сентябрь" + +msgid "October" +msgstr "Октябрь" + +msgid "November" +msgstr "Ноябрь" + +msgid "December" +msgstr "Декабрь" + +msgid "jan" +msgstr "янв" + +msgid "feb" +msgstr "фев" + +msgid "mar" +msgstr "мар" + +msgid "apr" +msgstr "апр" + +msgid "may" +msgstr "май" + +msgid "jun" +msgstr "июн" + +msgid "jul" +msgstr "июл" + +msgid "aug" +msgstr "авг" + +msgid "sep" +msgstr "сен" + +msgid "oct" +msgstr "окт" + +msgid "nov" +msgstr "ноя" + +msgid "dec" +msgstr "дек" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Янв." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Фев." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Март" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Апрель" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Май" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Июнь" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Июль" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Сен." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ноя." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дек." + +msgctxt "alt. month" +msgid "January" +msgstr "января" + +msgctxt "alt. month" +msgid "February" +msgstr "февраля" + +msgctxt "alt. month" +msgid "March" +msgstr "марта" + +msgctxt "alt. month" +msgid "April" +msgstr "апреля" + +msgctxt "alt. month" +msgid "May" +msgstr "мая" + +msgctxt "alt. month" +msgid "June" +msgstr "июня" + +msgctxt "alt. month" +msgid "July" +msgstr "июля" + +msgctxt "alt. month" +msgid "August" +msgstr "августа" + +msgctxt "alt. month" +msgid "September" +msgstr "сентября" + +msgctxt "alt. month" +msgid "October" +msgstr "октября" + +msgctxt "alt. month" +msgid "November" +msgstr "ноября" + +msgctxt "alt. month" +msgid "December" +msgstr "декабря" + +msgid "This is not a valid IPv6 address." +msgstr "Значение не является корректным адресом IPv6." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "или" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d год" +msgstr[1] "%(num)d года" +msgstr[2] "%(num)d лет" +msgstr[3] "%(num)d лет" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d месяц" +msgstr[1] "%(num)d месяца" +msgstr[2] "%(num)d месяцев" +msgstr[3] "%(num)d месяцев" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d неделя" +msgstr[1] "%(num)d недели" +msgstr[2] "%(num)d недель" +msgstr[3] "%(num)d недель" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d день" +msgstr[1] "%(num)d дня" +msgstr[2] "%(num)d дней" +msgstr[3] "%(num)d дней" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d час" +msgstr[1] "%(num)d часа" +msgstr[2] "%(num)d часов" +msgstr[3] "%(num)d часов" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d минута" +msgstr[1] "%(num)d минуты" +msgstr[2] "%(num)d минут" +msgstr[3] "%(num)d минут" + +msgid "Forbidden" +msgstr "Ошибка доступа" + +msgid "CSRF verification failed. Request aborted." +msgstr "Ошибка проверки CSRF. Запрос отклонён." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Вы видите это сообщение потому что этот сайт работает по защищённому " +"протоколу HTTPS и требует, чтобы при запросе вашим браузером был передан " +"заголовок \"Referer\", но он не был передан. Этот заголовок необходим из " +"соображений безопасности: мы должны убедиться что запрос оправляете именно " +"вы." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Если вы настроили свой браузер таким образом, чтобы запретить ему передавать " +"заголовок “Referer”, пожалуйста, разрешите ему отсылать данный заголовок по " +"крайней мере для данного сайта, или для всех HTTPS-соединений, или для " +"запросов, домен и порт назначения совпадают с доменом и портом текущей " +"страницы." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Если Вы используете HTML-тэг или добавили HTTP-заголовок “Referrer-Policy: no-referrer”, " +"пожалуйста удалите их. CSRF защите необходим заголовок “Referer” для строгой " +"проверки адреса ссылающейся страницы. Если Вы беспокоитесь о приватности, " +"используйте альтернативы, например , для ссылок на " +"сайты третьих лиц." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Вы видите это сообщение, потому что данный сайт требует, чтобы при отправке " +"форм была отправлена и CSRF-cookie. Данный тип cookie необходим по " +"соображениям безопасности, чтобы убедиться, что ваш браузер не был взломан и " +"не выполняет от вашего лица действий, запрограммированных третьими лицами." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Если в вашем браузере отключены cookie, пожалуйста, включите эту функцию " +"вновь, по крайней мере для этого сайта, или для \"same-orign\" запросов." + +msgid "More information is available with DEBUG=True." +msgstr "" +"В отладочном режиме доступно больше информации. Включить отладочный режим " +"можно, установив значение переменной DEBUG=True." + +msgid "No year specified" +msgstr "Не указан год" + +msgid "Date out of range" +msgstr "Дата выходит за пределы диапазона" + +msgid "No month specified" +msgstr "Не указан месяц" + +msgid "No day specified" +msgstr "Не указан день" + +msgid "No week specified" +msgstr "Не указана неделя" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s не доступен" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Будущие %(verbose_name_plural)s недоступны, потому что %(class_name)s." +"allow_future выставлен в значение \"Ложь\"." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"Не удалось распознать строку с датой “%(datestr)s”, в заданном формате " +"“%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Не найден ни один %(verbose_name)s, соответствующий запросу" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Номер страницы не содержит особое значение “last” и его не удалось " +"преобразовать к целому числу." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Неправильная страница (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" +"Список пуст, но “%(class_name)s.allow_empty” выставлено в значение \"Ложь\", " +"что запрещает показывать пустые списки." + +msgid "Directory indexes are not allowed here." +msgstr "Просмотр списка файлов директории здесь не разрешен." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” не существует" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Список файлов директории %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Установка прошла успешно! Поздравляем!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Посмотреть примечания к выпуску для Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Вы видите данную страницу, потому что указали DEBUG=True в файле настроек и не настроили ни одного " +"обработчика URL-адресов." + +msgid "Django Documentation" +msgstr "Документация Django" + +msgid "Topics, references, & how-to’s" +msgstr "Разделы, справочник, & примеры" + +msgid "Tutorial: A Polling App" +msgstr "Руководство: Приложение для голосования" + +msgid "Get started with Django" +msgstr "Начало работы с Django" + +msgid "Django Community" +msgstr "Сообщество Django" + +msgid "Connect, get help, or contribute" +msgstr "Присоединяйтесь, получайте помощь или помогайте в разработке" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ru/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ru/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ru/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d1ee0af5d3a29f791c23ea491a91521ed955f7e2 GIT binary patch literal 193 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po new file mode 100644 index 0000000..e245cb1 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po @@ -0,0 +1,1394 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Adam Zahradník, 2023-2024 +# Jannis Leidel , 2011 +# 18f25ad6fa9930fc67cb11aca9d16a27, 2012-2013 +# Marian Andre , 2013,2015,2017-2018 +# 29cf7e517570e1bc05a1509565db92ae_2a01508, 2011 +# Martin Tóth , 2017,2023 +# Miroslav Bendik , 2023 +# Peter Kuma, 2021 +# Peter Stríž , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Adam Zahradník, 2023-2024\n" +"Language-Team: Slovak (http://app.transifex.com/django/django/language/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n " +">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +msgid "Afrikaans" +msgstr "afrikánsky" + +msgid "Arabic" +msgstr "arabský" + +msgid "Algerian Arabic" +msgstr "alžírsky arabsky" + +msgid "Asturian" +msgstr "astúrsky" + +msgid "Azerbaijani" +msgstr "azerbajdžansky" + +msgid "Bulgarian" +msgstr "bulharsky" + +msgid "Belarusian" +msgstr "bielorusky" + +msgid "Bengali" +msgstr "bengálsky" + +msgid "Breton" +msgstr "bretónsky" + +msgid "Bosnian" +msgstr "bosniansky" + +msgid "Catalan" +msgstr "katalánsky" + +msgid "Central Kurdish (Sorani)" +msgstr "stredná kurdčina (Sorani)" + +msgid "Czech" +msgstr "česky" + +msgid "Welsh" +msgstr "walesky" + +msgid "Danish" +msgstr "dánsky" + +msgid "German" +msgstr "nemecky" + +msgid "Lower Sorbian" +msgstr "dolnolužická srbčina" + +msgid "Greek" +msgstr "grécky" + +msgid "English" +msgstr "anglicky" + +msgid "Australian English" +msgstr "austrálskou angličtinou" + +msgid "British English" +msgstr "britskou angličtinou" + +msgid "Esperanto" +msgstr "esperantsky" + +msgid "Spanish" +msgstr "španielsky" + +msgid "Argentinian Spanish" +msgstr "argentínska španielčina" + +msgid "Colombian Spanish" +msgstr "kolumbijská španielčina" + +msgid "Mexican Spanish" +msgstr "mexická španielčina" + +msgid "Nicaraguan Spanish" +msgstr "nikaragujská španielčina" + +msgid "Venezuelan Spanish" +msgstr "venezuelská španielčina" + +msgid "Estonian" +msgstr "estónsky" + +msgid "Basque" +msgstr "baskicky" + +msgid "Persian" +msgstr "perzsky" + +msgid "Finnish" +msgstr "fínsky" + +msgid "French" +msgstr "francúzsky" + +msgid "Frisian" +msgstr "frízsky" + +msgid "Irish" +msgstr "írsky" + +msgid "Scottish Gaelic" +msgstr "škótska gaelčina" + +msgid "Galician" +msgstr "galícijsky" + +msgid "Hebrew" +msgstr "hebrejsky" + +msgid "Hindi" +msgstr "hindsky" + +msgid "Croatian" +msgstr "chorvátsky" + +msgid "Upper Sorbian" +msgstr "hornolužická srbčina" + +msgid "Hungarian" +msgstr "maďarsky" + +msgid "Armenian" +msgstr "arménsky" + +msgid "Interlingua" +msgstr "interlinguánsky" + +msgid "Indonesian" +msgstr "indonézsky" + +msgid "Igbo" +msgstr "igbožsky" + +msgid "Ido" +msgstr "ido" + +msgid "Icelandic" +msgstr "islandsky" + +msgid "Italian" +msgstr "taliansky" + +msgid "Japanese" +msgstr "japonsky" + +msgid "Georgian" +msgstr "gruzínsky" + +msgid "Kabyle" +msgstr "kabylsky" + +msgid "Kazakh" +msgstr "kazašsky" + +msgid "Khmer" +msgstr "kmérsky" + +msgid "Kannada" +msgstr "kannadsky" + +msgid "Korean" +msgstr "kórejsky" + +msgid "Kyrgyz" +msgstr "kirgizsky" + +msgid "Luxembourgish" +msgstr "luxembursky" + +msgid "Lithuanian" +msgstr "litovsky" + +msgid "Latvian" +msgstr "lotyšsky" + +msgid "Macedonian" +msgstr "macedónsky" + +msgid "Malayalam" +msgstr "malajalámsky" + +msgid "Mongolian" +msgstr "mongolsky" + +msgid "Marathi" +msgstr "maráthsky" + +msgid "Malay" +msgstr "malajčina" + +msgid "Burmese" +msgstr "barmsky" + +msgid "Norwegian Bokmål" +msgstr "nórsky (Bokmål)" + +msgid "Nepali" +msgstr "nepálsky" + +msgid "Dutch" +msgstr "holandsky" + +msgid "Norwegian Nynorsk" +msgstr "nórsky (Nynorsk)" + +msgid "Ossetic" +msgstr "osetsky" + +msgid "Punjabi" +msgstr "pandžábsky" + +msgid "Polish" +msgstr "poľsky" + +msgid "Portuguese" +msgstr "portugalsky" + +msgid "Brazilian Portuguese" +msgstr "portugalsky (Brazília)" + +msgid "Romanian" +msgstr "rumunsky" + +msgid "Russian" +msgstr "rusky" + +msgid "Slovak" +msgstr "slovensky" + +msgid "Slovenian" +msgstr "slovinsky" + +msgid "Albanian" +msgstr "albánsky" + +msgid "Serbian" +msgstr "srbsky" + +msgid "Serbian Latin" +msgstr "srbsky (Latin)" + +msgid "Swedish" +msgstr "švédsky" + +msgid "Swahili" +msgstr "svahilsky" + +msgid "Tamil" +msgstr "tamilsky" + +msgid "Telugu" +msgstr "telugsky" + +msgid "Tajik" +msgstr "tadžiksky" + +msgid "Thai" +msgstr "thajsky" + +msgid "Turkmen" +msgstr "turkménsky" + +msgid "Turkish" +msgstr "turecky" + +msgid "Tatar" +msgstr "tatársky" + +msgid "Udmurt" +msgstr "udmurtsky" + +msgid "Uyghur" +msgstr "ujgursky" + +msgid "Ukrainian" +msgstr "ukrajinsky" + +msgid "Urdu" +msgstr "urdsky" + +msgid "Uzbek" +msgstr "uzbecky" + +msgid "Vietnamese" +msgstr "vietnamsky" + +msgid "Simplified Chinese" +msgstr "čínsky (zjednodušene)" + +msgid "Traditional Chinese" +msgstr "čínsky (tradične)" + +msgid "Messages" +msgstr "Správy" + +msgid "Site Maps" +msgstr "Mapy Sídla" + +msgid "Static Files" +msgstr "Statické Súbory" + +msgid "Syndication" +msgstr "Syndikácia" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Číslo stránky nie je celé číslo" + +msgid "That page number is less than 1" +msgstr "Číslo stránky je menšie ako 1" + +msgid "That page contains no results" +msgstr "Stránka neobsahuje žiadne výsledky" + +msgid "Enter a valid value." +msgstr "Zadajte platnú hodnotu." + +msgid "Enter a valid domain name." +msgstr "Zadajte platný názov domény." + +msgid "Enter a valid URL." +msgstr "Zadajte platnú URL adresu." + +msgid "Enter a valid integer." +msgstr "Zadajte platné celé číslo." + +msgid "Enter a valid email address." +msgstr "Zadajte platnú e-mailovú adresu." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Zadajte platnú skratku pozostávajúcu z písmen, čísel, podčiarkovníkov alebo " +"pomlčiek." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Zadajte platnú skratku pozostávajúcu z písmen Unicode, čísel, " +"podčiarkovníkov alebo pomlčiek." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Zadajte platnú %(protocol)s adresu." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 alebo IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Zadajte len číslice oddelené čiarkami." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Uistite sa, že táto hodnota je %(limit_value)s (je to %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Uistite sa, že táto hodnota je menšia alebo rovná %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Uistite sa, že hodnota je väčšia alebo rovná %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Uistite sa, že táto hodnota je násobkom %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Uistite sa, že táto hodnota je násobkom %(limit_value)s, začínajúc od " +"%(offset)s, t.j. %(offset)s, %(valid_value1)s, %(valid_value2)s, atď." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Uistite sa, že zadaná hodnota má najmenej %(limit_value)d znak (má " +"%(show_value)d)." +msgstr[1] "" +"Uistite sa, že zadaná hodnota má najmenej %(limit_value)d znaky (má " +"%(show_value)d)." +msgstr[2] "" +"Uistite sa, že zadaná hodnota má najmenej %(limit_value)d znakov (má " +"%(show_value)d)." +msgstr[3] "" +"Uistite sa, že zadaná hodnota má najmenej %(limit_value)d znakov (má " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Uistite sa, že táto hodnota má najviac %(limit_value)d znak (má " +"%(show_value)d)." +msgstr[1] "" +"Uistite sa, že táto hodnota má najviac %(limit_value)d znaky (má " +"%(show_value)d)." +msgstr[2] "" +"Uistite sa, že táto hodnota má najviac %(limit_value)d znakov (má " +"%(show_value)d)." +msgstr[3] "" +"Uistite sa, že táto hodnota má najviac %(limit_value)d znakov (má " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Zadajte číslo." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Uistite sa, že nie je zadaných celkovo viac ako %(max)s číslica." +msgstr[1] "Uistite sa, že nie je zadaných celkovo viac ako %(max)s číslice." +msgstr[2] "Uistite sa, že nie je zadaných celkovo viac ako %(max)s číslic." +msgstr[3] "Uistite sa, že nie je zadaných celkovo viac ako %(max)s číslic." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Uistite sa, že nie je zadané viac ako %(max)s desatinné miesto." +msgstr[1] "Uistite sa, že nie sú zadané viac ako %(max)s desatinné miesta." +msgstr[2] "Uistite sa, že nie je zadaných viac ako %(max)s desatinných miest." +msgstr[3] "Uistite sa, že nie je zadaných viac ako %(max)s desatinných miest." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Uistite sa, že nie je zadaných viac ako %(max)s číslica pred desatinnou " +"čiarkou." +msgstr[1] "" +"Uistite sa, že nie sú zadané viac ako %(max)s číslice pred desatinnou " +"čiarkou." +msgstr[2] "" +"Uistite sa, že nie je zadaných viac ako %(max)s číslic pred desatinnou " +"čiarkou." +msgstr[3] "" +"Uistite sa, že nie je zadaných viac ako %(max)s číslic pred desatinnou " +"čiarkou." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Prípona súboru „%(extension)s“ nie je povolená. Povolené prípony sú: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Znaky NULL nie sú povolené." + +msgid "and" +msgstr "a" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s s týmto %(field_labels)s už existuje." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Obmedzenie „%(name)s“ je porušené." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Hodnota %(value)r nie je platná možnosť." + +msgid "This field cannot be null." +msgstr "Toto pole nemôže byť prázdne." + +msgid "This field cannot be blank." +msgstr "Toto pole nemôže byť prázdne." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s s týmto %(field_label)s už existuje." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s musí byť jedinečné pre %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Pole typu: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Hodnota „%(value)s“ musí byť True alebo False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Hodnota „%(value)s“ musí byť True, False alebo None." + +msgid "Boolean (Either True or False)" +msgstr "Logická hodnota (buď True alebo False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Reťazec (až do %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Reťazec (neobmedzený)" + +msgid "Comma-separated integers" +msgstr "Celé čísla oddelené čiarkou" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Hodnota „%(value)s“ má neplatný tvar dátumu. Musí byť v tvare YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Hodnota „%(value)s“ je v správnom tvare (YYYY-MM-DD), ale je to neplatný " +"dátum." + +msgid "Date (without time)" +msgstr "Dátum (bez času)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Hodnota „%(value)s“ má neplatný tvar. Musí byť v tvare YYYY-MM-DD HH:MM[:" +"ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Hodnota „%(value)s“ je v správnom tvare (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]), ale je to neplatný dátum/čas." + +msgid "Date (with time)" +msgstr "Dátum (a čas)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Hodnota „%(value)s“ musí byť desatinné číslo." + +msgid "Decimal number" +msgstr "Desatinné číslo" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Hodnota „%(value)s“ má neplatný tvar. Musí byť v tvare [DD] [[HH:]MM:]ss[." +"uuuuuu]." + +msgid "Duration" +msgstr "Doba trvania" + +msgid "Email address" +msgstr "E-mailová adresa" + +msgid "File path" +msgstr "Cesta k súboru" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Hodnota „%(value)s“ musí byť desatinné číslo." + +msgid "Floating point number" +msgstr "Číslo s plávajúcou desatinnou čiarkou" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Hodnota „%(value)s“ musí byť celé číslo." + +msgid "Integer" +msgstr "Celé číslo" + +msgid "Big (8 byte) integer" +msgstr "Veľké celé číslo (8 bajtov)" + +msgid "Small integer" +msgstr "Malé celé číslo" + +msgid "IPv4 address" +msgstr "IPv4 adresa" + +msgid "IP address" +msgstr "IP adresa" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Hodnota „%(value)s“ musí byť buď None, True alebo False." + +msgid "Boolean (Either True, False or None)" +msgstr "Logická hodnota (buď True, False alebo None)" + +msgid "Positive big integer" +msgstr "Veľké kladné celé číslo" + +msgid "Positive integer" +msgstr "Kladné celé číslo" + +msgid "Positive small integer" +msgstr "Malé kladné celé číslo" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Identifikátor (najviac %(max_length)s)" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Hodnota „%(value)s“ má neplatný tvar. Musí byť v tvare HH:MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Hodnota „%(value)s“ je v správnom tvare (HH:MM[:ss[.uuuuuu]]), ale je to " +"neplatný čas." + +msgid "Time" +msgstr "Čas" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Binárne údaje" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "„%(value)s“ nie je platné UUID." + +msgid "Universally unique identifier" +msgstr "Všeobecne jedinečný identifikátor" + +msgid "File" +msgstr "Súbor" + +msgid "Image" +msgstr "Obrázok" + +msgid "A JSON object" +msgstr "Objekt typu JSON" + +msgid "Value must be valid JSON." +msgstr "Hodnota musí byť v platnom formáte JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Inštancia modelu %(model)s s %(field)s %(value)r neexistuje." + +msgid "Foreign Key (type determined by related field)" +msgstr "Cudzí kľúč (typ určuje pole v relácii)" + +msgid "One-to-one relationship" +msgstr "Typ relácie: jedna k jednej" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "vzťah: %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "vzťahy: %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Typ relácie: M ku N" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Toto pole je povinné." + +msgid "Enter a whole number." +msgstr "Zadajte celé číslo." + +msgid "Enter a valid date." +msgstr "Zadajte platný dátum." + +msgid "Enter a valid time." +msgstr "Zadajte platný čas." + +msgid "Enter a valid date/time." +msgstr "Zadajte platný dátum/čas." + +msgid "Enter a valid duration." +msgstr "Zadajte platnú dobu trvania." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Počet dní musí byť medzi {min_days} a {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Súbor nebol odoslaný. Skontrolujte typ kódovania vo formulári." + +msgid "No file was submitted." +msgstr "Žiaden súbor nebol odoslaný." + +msgid "The submitted file is empty." +msgstr "Odoslaný súbor je prázdny." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Uistite sa, že názov súboru má najviac %(max)d znak (má %(length)d)." +msgstr[1] "" +"Uistite sa, že názov súboru má najviac %(max)d znaky (má %(length)d)." +msgstr[2] "" +"Uistite sa, že názov súboru má najviac %(max)d znakov (má %(length)d)." +msgstr[3] "" +"Uistite sa, že názov súboru má najviac %(max)d znakov (má %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Odošlite prosím súbor alebo zaškrtnite políčko pre vymazanie vstupného poľa, " +"nie oboje." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Nahrajte platný obrázok. Súbor, ktorý ste odoslali nebol obrázok alebo bol " +"poškodený." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Vyberte platnú voľbu. %(value)s nepatrí medzi dostupné možnosti." + +msgid "Enter a list of values." +msgstr "Zadajte zoznam hodnôt." + +msgid "Enter a complete value." +msgstr "Zadajte úplnú hodnotu." + +msgid "Enter a valid UUID." +msgstr "Zadajte platné UUID." + +msgid "Enter a valid JSON." +msgstr "Zadajte platný JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Skryté pole %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Dáta ManagementForm chýbajú alebo boli zmanipulované. Chýbajúce polia: " +"%(field_names)s. Možno budete musieť túto chybu nahlásiť, ak sa bude naďalej " +"vyskytovať." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Prosím, odošlite najviac %(num)d formulár." +msgstr[1] "Prosím, odošlite najviac %(num)d formuláre." +msgstr[2] "Prosím, odošlite najviac %(num)d formulárov." +msgstr[3] "Prosím, odošlite najviac %(num)d formulárov." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Prosím, odošlite aspoň %(num)d formulár." +msgstr[1] "Prosím, odošlite aspoň %(num)d formuláre." +msgstr[2] "Prosím, odošlite aspoň %(num)d formulárov." +msgstr[3] "Prosím, odošlite aspoň %(num)d formulárov." + +msgid "Order" +msgstr "Poradie" + +msgid "Delete" +msgstr "Odstrániť" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Prosím, opravte duplicitné údaje pre %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Údaje pre %(field)s musia byť jedinečné, prosím, opravte duplikáty." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Údaje pre %(field_name)s musia byť jedinečné pre %(lookup)s v " +"%(date_field)s, prosím, opravte duplikáty." + +msgid "Please correct the duplicate values below." +msgstr "Prosím, opravte nižšie uvedené duplicitné hodnoty. " + +msgid "The inline value did not match the parent instance." +msgstr "Vnorená hodnota sa nezhoduje s nadradenou inštanciou." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Vyberte platnú možnosť. Vybraná položka nepatrí medzi dostupné možnosti." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "„%(pk)s“ nie je platná hodnota." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"Hodnota %(datetime)s v časovej zóne %(current_timezone)s sa nedá " +"interpretovať; môže byť nejednoznačná alebo nemusí existovať." + +msgid "Clear" +msgstr "Vymazať" + +msgid "Currently" +msgstr "Súčasne" + +msgid "Change" +msgstr "Zmeniť" + +msgid "Unknown" +msgstr "Neznámy" + +msgid "Yes" +msgstr "Áno" + +msgid "No" +msgstr "Nie" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "áno,nie,možno" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajty" +msgstr[2] "%(size)d bajtov" +msgstr[3] "%(size)d bajtov" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "popoludní" + +msgid "a.m." +msgstr "predpoludním" + +msgid "PM" +msgstr "popoludní" + +msgid "AM" +msgstr "predpoludním" + +msgid "midnight" +msgstr "polnoc" + +msgid "noon" +msgstr "poludnie" + +msgid "Monday" +msgstr "pondelok" + +msgid "Tuesday" +msgstr "utorok" + +msgid "Wednesday" +msgstr "streda" + +msgid "Thursday" +msgstr "štvrtok" + +msgid "Friday" +msgstr "piatok" + +msgid "Saturday" +msgstr "sobota" + +msgid "Sunday" +msgstr "nedeľa" + +msgid "Mon" +msgstr "po" + +msgid "Tue" +msgstr "ut" + +msgid "Wed" +msgstr "st" + +msgid "Thu" +msgstr "št" + +msgid "Fri" +msgstr "pi" + +msgid "Sat" +msgstr "so" + +msgid "Sun" +msgstr "ne" + +msgid "January" +msgstr "január" + +msgid "February" +msgstr "február" + +msgid "March" +msgstr "marec" + +msgid "April" +msgstr "apríl" + +msgid "May" +msgstr "máj" + +msgid "June" +msgstr "jún" + +msgid "July" +msgstr "júl" + +msgid "August" +msgstr "august" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "október" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "december" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "máj" + +msgid "jun" +msgstr "jún" + +msgid "jul" +msgstr "júl" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "mar." + +msgctxt "abbrev. month" +msgid "April" +msgstr "apr." + +msgctxt "abbrev. month" +msgid "May" +msgstr "máj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "jún" + +msgctxt "abbrev. month" +msgid "July" +msgstr "júl" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sep." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dec." + +msgctxt "alt. month" +msgid "January" +msgstr "január" + +msgctxt "alt. month" +msgid "February" +msgstr "február" + +msgctxt "alt. month" +msgid "March" +msgstr "marec" + +msgctxt "alt. month" +msgid "April" +msgstr "apríl" + +msgctxt "alt. month" +msgid "May" +msgstr "máj" + +msgctxt "alt. month" +msgid "June" +msgstr "jún" + +msgctxt "alt. month" +msgid "July" +msgstr "júl" + +msgctxt "alt. month" +msgid "August" +msgstr "august" + +msgctxt "alt. month" +msgid "September" +msgstr "september" + +msgctxt "alt. month" +msgid "October" +msgstr "október" + +msgctxt "alt. month" +msgid "November" +msgstr "november" + +msgctxt "alt. month" +msgid "December" +msgstr "december" + +msgid "This is not a valid IPv6 address." +msgstr "Toto nieje platná IPv6 adresa." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "alebo" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d rok" +msgstr[1] "%(num)d roky" +msgstr[2] "%(num)d rokov" +msgstr[3] "%(num)d rokov" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mesiac" +msgstr[1] "%(num)d mesiace" +msgstr[2] "%(num)d mesiacov" +msgstr[3] "%(num)d mesiacov" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d týždeň" +msgstr[1] "%(num)d týždne" +msgstr[2] "%(num)d týždňov" +msgstr[3] "%(num)d týždňov" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d deň" +msgstr[1] "%(num)d dni" +msgstr[2] "%(num)d dní" +msgstr[3] "%(num)d dní" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d hodina" +msgstr[1] "%(num)d hodiny" +msgstr[2] "%(num)d hodín" +msgstr[3] "%(num)d hodiny" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minúta" +msgstr[1] "%(num)d minúty" +msgstr[2] "%(num)d minút" +msgstr[3] "%(num)d minúty" + +msgid "Forbidden" +msgstr "Zakázané (Forbidden)" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF verifikázia zlyhala. Požiadavka bola prerušená." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Túto správu vidíte, pretože táto stránka na protokole HTTPS vyžaduje, aby " +"váš prehliadač zaslal hlavičku „Referer„, k čomu nedošlo. Táto hlavička je " +"vyžadovaná z bezpečnostných dôvodov pre kontrolu toho, že sa prehliadača " +"nezmocnila tretia strana." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ak ste vo vašom prehliadači vypli hlavičky „Referer“, tak ich prosím " +"zapnite, alebo aspoň pre túto stránku, alebo pre HTTPS pripojenia, alebo pre " +"požiadavky „same-origin“." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Ak používate tag , alebo " +"vkladáte hlavičku „Referrer-Policy: no-referrer“, prosím odstránte ich. " +"Ochrana CSRF vyžaduje hlavičku „Referer“ na striktnú kontrolu. Ak máte obavy " +"o súkromie, použite alternatívy ako pre linky na " +"iné stránky." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Túto správu vidíte, pretože táto lokalita vyžaduje CSRF cookie pri " +"odosielaní formulárov. Toto cookie je potrebné na zabezpečenie toho, že váš " +"prehliadač nie je zneužitý - „hijack“." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ak ste vypli cookies vo vašom prehliadači, tak ich prosím zapnite, aspoň pre " +"túto stránku, alebo pre požiadavky „same-origin“." + +msgid "More information is available with DEBUG=True." +msgstr "Viac informácií bude dostupných s DEBUG=True." + +msgid "No year specified" +msgstr "Nešpecifikovaný rok" + +msgid "Date out of range" +msgstr "Dátum je mimo rozsahu" + +msgid "No month specified" +msgstr "Nešpecifikovaný mesiac" + +msgid "No day specified" +msgstr "Nešpecifikovaný deň" + +msgid "No week specified" +msgstr "Nešpecifikovaný týždeň" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s nie sú dostupné" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Budúce %(verbose_name_plural)s nie sú dostupné pretože %(class_name)s." +"allow_future má hodnotu False. " + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Neplatný dátumový reťazec „%(datestr)s“ pre formát „%(format)s“" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" +"Nebol nájdený žiadny %(verbose_name)s zodpovedajúci databázovému dopytu" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" +"Stránka nemá hodnotu „last“ a taktiež nie je možné prekonvertovať hodnotu na " +"celé číslo." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Nesprávna stránka (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Zoznam je prázdny a hodnota „%(class_name)s.allow_empty“ je False." + +msgid "Directory indexes are not allowed here." +msgstr "Výpis adresárov tu nieje povolený." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s“ neexistuje" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Výpis %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Inštalácia prebehla úspešne! Gratulujeme!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Zobraziť poznámky k vydaniu pre Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Táto stránka sa zobrazuje pretože máte DEBUG=True v súbore s nastaveniami a nie sú " +"nakonfigurované žiadne URL." + +msgid "Django Documentation" +msgstr "Dokumentácia Django" + +msgid "Topics, references, & how-to’s" +msgstr "Témy, referencie a návody" + +msgid "Tutorial: A Polling App" +msgstr "Tutoriál: Aplikácia „Hlasovania“" + +msgid "Get started with Django" +msgstr "Začíname s Django" + +msgid "Django Community" +msgstr "Komunita Django" + +msgid "Connect, get help, or contribute" +msgstr "Spojte sa, získajte pomoc, alebo prispejte" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sk/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/sk/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sk/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..264766a59837b81a9284f1441ae1c50b0c5520fe GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFW-Q literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sk/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ecdffd5adb975ecddd515e603f55e3a18dcae0e7 GIT binary patch literal 679 zcmZXR&u`i=6vq?dK!DPYYTIGEaPa|Yggct1Wlex+O@i`6Q>;i)76(L|kO~J)K{;P>S;C|ENHg;-ur&u^Rq4Iolc9Rmji%7(ERL2d}Sa4YS$s>vSCiP9+LM_}zZG3`GaL3{Lr)B+0?u~nX zDNIJovh^%_EEX6A43r|4GubbjJI9g_JUzTGloG@;%w*^vqAiWK1DFjUruptZ--FW; zG)B-VU;c+=I4@6+=@b9%kv;V8$Adtf+3%pXs<>J>wroRjQQOsxgE(WED(L!}Vuyxh zy3_rJ7tcyn{5|P9Q_FV4YS&l)&{4awZab{f53O zs@jEaD3_t5%@kX4EgPM?Q_FJ{Q?0Nw(=$G4b~v#uZ>F1*TW&4Vr|-;Dd@%|BfUly}A|J;2YCcT!I7*Wt oxgO5*bruywzS;hg-e)=9q{#>Nx#SHs006!^B_K6`2zZJA1L|+E=l}o! literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sk/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/sk/formats.py new file mode 100644 index 0000000..31d4912 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/sk/formats.py @@ -0,0 +1,30 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. F Y" +TIME_FORMAT = "G:i" +DATETIME_FORMAT = "j. F Y G:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y G:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' + "%y-%m-%d", # '06-10-25' + # "%d. %B %Y", # '25. October 2006' + # "%d. %b. %Y", # '25. Oct. 2006' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..10e198e53145f6d58615ee404923da398aa1a240 GIT binary patch literal 23147 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po new file mode 100644 index 0000000..4b5f932 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po @@ -0,0 +1,1351 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Andrej Marsetič, 2022-2023 +# iElectric , 2011-2012 +# Jannis Leidel , 2011 +# Jure Cuhalev , 2012-2013 +# Marko Zabreznik , 2016 +# Primoz Verdnik , 2017 +# zejn , 2013,2016-2017 +# zejn , 2011-2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-04 06:49+0000\n" +"Last-Translator: Andrej Marsetič, 2022-2023\n" +"Language-Team: Slovenian (http://app.transifex.com/django/django/language/" +"sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" + +msgid "Afrikaans" +msgstr "Afrikanščina" + +msgid "Arabic" +msgstr "Arabščina" + +msgid "Algerian Arabic" +msgstr "alžirska arabščina" + +msgid "Asturian" +msgstr "Asturijski jezik" + +msgid "Azerbaijani" +msgstr "Azerbajdžanščina" + +msgid "Bulgarian" +msgstr "Bolgarščina" + +msgid "Belarusian" +msgstr "Belorusko" + +msgid "Bengali" +msgstr "Bengalščina" + +msgid "Breton" +msgstr "Bretonščina" + +msgid "Bosnian" +msgstr "Bosanščina" + +msgid "Catalan" +msgstr "Katalonščina" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "Češčina" + +msgid "Welsh" +msgstr "Valežanski jezik" + +msgid "Danish" +msgstr "Danščina" + +msgid "German" +msgstr "Nemščina" + +msgid "Lower Sorbian" +msgstr "Dolnjelužiška srbščina" + +msgid "Greek" +msgstr "Grščina" + +msgid "English" +msgstr "Angleščina" + +msgid "Australian English" +msgstr "Avstralska angleščina" + +msgid "British English" +msgstr "Britanska Angleščina" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Španščina" + +msgid "Argentinian Spanish" +msgstr "Argentinska španščina" + +msgid "Colombian Spanish" +msgstr "Kolumbijska španščina" + +msgid "Mexican Spanish" +msgstr "Mehiška španščina" + +msgid "Nicaraguan Spanish" +msgstr "Nikaragvijska španščina" + +msgid "Venezuelan Spanish" +msgstr "Španščina (Venezuela)" + +msgid "Estonian" +msgstr "Estonščina" + +msgid "Basque" +msgstr "Baskovščina" + +msgid "Persian" +msgstr "Perzijščina" + +msgid "Finnish" +msgstr "Finščina" + +msgid "French" +msgstr "Francoščina" + +msgid "Frisian" +msgstr "Frizijščina" + +msgid "Irish" +msgstr "Irščina" + +msgid "Scottish Gaelic" +msgstr "Škotska gelščina" + +msgid "Galician" +msgstr "Galičanski jezik" + +msgid "Hebrew" +msgstr "Hebrejski jezik" + +msgid "Hindi" +msgstr "Hindujščina" + +msgid "Croatian" +msgstr "Hrvaščina" + +msgid "Upper Sorbian" +msgstr "Gornjelužiška srbščina" + +msgid "Hungarian" +msgstr "Madžarščina" + +msgid "Armenian" +msgstr "armenščina" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonezijski" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Jezik Ido" + +msgid "Icelandic" +msgstr "Islandski jezik" + +msgid "Italian" +msgstr "Italijanščina" + +msgid "Japanese" +msgstr "Japonščina" + +msgid "Georgian" +msgstr "Gruzijščina" + +msgid "Kabyle" +msgstr "Kabilski jezik" + +msgid "Kazakh" +msgstr "Kazaščina" + +msgid "Khmer" +msgstr "Kmerščina" + +msgid "Kannada" +msgstr "Kanareščina" + +msgid "Korean" +msgstr "Korejščina" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Luksemburščina" + +msgid "Lithuanian" +msgstr "Litvanščina" + +msgid "Latvian" +msgstr "Latvijščina" + +msgid "Macedonian" +msgstr "Makedonščina" + +msgid "Malayalam" +msgstr "Malajalščina" + +msgid "Mongolian" +msgstr "Mongolščina" + +msgid "Marathi" +msgstr "Jezik Marathi" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Burmanski jezik" + +msgid "Norwegian Bokmål" +msgstr "Norveški jezik" + +msgid "Nepali" +msgstr "Nepalščina" + +msgid "Dutch" +msgstr "Nizozemščina" + +msgid "Norwegian Nynorsk" +msgstr "Norveščina Nynorsk" + +msgid "Ossetic" +msgstr "Osetski jezik" + +msgid "Punjabi" +msgstr "Pandžabščina" + +msgid "Polish" +msgstr "Poljščina" + +msgid "Portuguese" +msgstr "Portugalščina" + +msgid "Brazilian Portuguese" +msgstr "Brazilska portugalščina" + +msgid "Romanian" +msgstr "Romunščina" + +msgid "Russian" +msgstr "Ruščina" + +msgid "Slovak" +msgstr "Slovaščina" + +msgid "Slovenian" +msgstr "Slovenščina" + +msgid "Albanian" +msgstr "Albanščina" + +msgid "Serbian" +msgstr "Srbščina" + +msgid "Serbian Latin" +msgstr "Srbščina v latinici" + +msgid "Swedish" +msgstr "Švedščina" + +msgid "Swahili" +msgstr "Svahili" + +msgid "Tamil" +msgstr "Tamilščina" + +msgid "Telugu" +msgstr "Teluščina" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tajski jezik" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Turščina" + +msgid "Tatar" +msgstr "Tatarščina" + +msgid "Udmurt" +msgstr "Udmurski jezik" + +msgid "Uyghur" +msgstr "" + +msgid "Ukrainian" +msgstr "Ukrajinščina" + +msgid "Urdu" +msgstr "Jezik Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Vietnamščina" + +msgid "Simplified Chinese" +msgstr "Poenostavljena kitajščina" + +msgid "Traditional Chinese" +msgstr "Tradicionalna kitajščina" + +msgid "Messages" +msgstr "Sporočila" + +msgid "Site Maps" +msgstr "Zemljevid spletnega mesta" + +msgid "Static Files" +msgstr "Statične datoteke" + +msgid "Syndication" +msgstr "Sindiciranje" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Število te strani ni naravno število" + +msgid "That page number is less than 1" +msgstr "Število te strani je manj kot 1" + +msgid "That page contains no results" +msgstr "Ta stran nima zadetkov" + +msgid "Enter a valid value." +msgstr "Vnesite veljavno vrednost." + +msgid "Enter a valid URL." +msgstr "Vnesite veljaven URL naslov." + +msgid "Enter a valid integer." +msgstr "Vnesite veljavno celo število." + +msgid "Enter a valid email address." +msgstr "Vnesite veljaven e-poštni naslov." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Vnesite veljaven IPv4 naslov." + +msgid "Enter a valid IPv6 address." +msgstr "Vnesite veljaven IPv6 naslov." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Vnesite veljaven IPv4 ali IPv6 naslov." + +msgid "Enter only digits separated by commas." +msgstr "Vnesite samo števila, ločena z vejicami." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Poskrbite, da bo ta vrednost %(limit_value)s. Trenutno je %(show_value)s." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Poskrbite, da bo ta vrednost manj kot ali natanko %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Poskrbite, da bo ta vrednost večja ali enaka %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Preverite, da ima ta vrednost vsaj %(limit_value)d znak (trenutno ima " +"%(show_value)d)." +msgstr[1] "" +"Preverite, da ima ta vrednost vsaj %(limit_value)d znaka (trenutno ima " +"%(show_value)d)." +msgstr[2] "" +"Preverite, da ima ta vrednost vsaj %(limit_value)d znake (trenutno ima " +"%(show_value)d)." +msgstr[3] "" +"Preverite, da ima ta vrednost vsaj %(limit_value)d znakov (trenutno ima " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Preverite, da ima ta vrednost največ %(limit_value)d znak (trenutno ima " +"%(show_value)d)." +msgstr[1] "" +"Preverite, da ima ta vrednost največ %(limit_value)d znaka (trenutno ima " +"%(show_value)d)." +msgstr[2] "" +"Preverite, da ima ta vrednost največ %(limit_value)d znake (trenutno ima " +"%(show_value)d)." +msgstr[3] "" +"Preverite, da ima ta vrednost največ %(limit_value)d znakov (trenutno ima " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Vnesite število." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Poskrbite, da skupno ne bo več kot %(max)s števka." +msgstr[1] "Poskrbite, da skupno ne bosta več kot %(max)s števki." +msgstr[2] "Poskrbite, da skupno ne bojo več kot %(max)s števke." +msgstr[3] "Poskrbite, da skupno ne bo več kot %(max)s števk." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Poskrbite, da skupno ne bo več kot %(max)s decimalnih mesto." +msgstr[1] "Poskrbite, da skupno ne bosta več kot %(max)s decimalnih mesti." +msgstr[2] "Poskrbite, da skupno ne bo več kot %(max)s decimalnih mest." +msgstr[3] "Poskrbite, da skupno ne bo več kot %(max)s decimalnih mest." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Poskrbite, da skupno ne bo več kot %(max)s števka pred decimalno vejico." +msgstr[1] "" +"Poskrbite, da skupno ne bosta več kot %(max)s števki pred decimalno vejico." +msgstr[2] "" +"Poskrbite, da skupno ne bo več kot %(max)s števk pred decimalno vejico." +msgstr[3] "" +"Poskrbite, da skupno ne bo več kot %(max)s števk pred decimalno vejico." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Znak null ni dovoljen." + +msgid "and" +msgstr "in" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s s tem %(field_labels)s že obstaja." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Vrednost %(value)r ni veljavna izbira." + +msgid "This field cannot be null." +msgstr "To polje ne more biti prazno." + +msgid "This field cannot be blank." +msgstr "To polje ne more biti prazno." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s s tem %(field_label)s že obstaja." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s mora biti enolična za %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Polje tipa: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” vrednost mora biti Da ali Ne." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolova vrednost (True ali False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Niz znakov (vse do %(max_length)s)" + +msgid "String (unlimited)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "Z vejico ločena cela števila (integer)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” vrednost ima neveljavno obliko datuma. Biti mora v obliki LLLL-" +"MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” vrednost ima pravilno obliko (LLLL-MM-DD), vendar je neveljaven " +"datum." + +msgid "Date (without time)" +msgstr "Datum (brez ure)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Datum (z uro)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Decimalno število" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Trajanje" + +msgid "Email address" +msgstr "E-poštni naslov" + +msgid "File path" +msgstr "Pot do datoteke" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” vrednost mora biti decimalno število." + +msgid "Floating point number" +msgstr "Število s plavajočo vejico" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” vrednost mora biti celo število." + +msgid "Integer" +msgstr "Celo število (integer)" + +msgid "Big (8 byte) integer" +msgstr "Velika (8 bajtna) cela števila " + +msgid "Small integer" +msgstr "Celo število" + +msgid "IPv4 address" +msgstr "IPv4 naslov" + +msgid "IP address" +msgstr "IP naslov" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” vrednost mora biti Nič, Da ali Ne." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolova vrednost (True, False ali None)" + +msgid "Positive big integer" +msgstr "Pozitivno veliko celo število" + +msgid "Positive integer" +msgstr "Pozitivno celo število" + +msgid "Positive small integer" +msgstr "Pozitivno celo število (do 64 tisoč)" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Okrajšava naslova (do največ %(max_length)s znakov)" + +msgid "Text" +msgstr "Besedilo" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Čas" + +msgid "URL" +msgstr "URL (spletni naslov)" + +msgid "Raw binary data" +msgstr "Surovi binarni podatki" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Datoteka" + +msgid "Image" +msgstr "Slika" + +msgid "A JSON object" +msgstr "JSON objekt" + +msgid "Value must be valid JSON." +msgstr "Vrednost mora biti veljaven JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" +"Instanca %(model)s s poljem %(field)s, ki ustreza %(value)r, ne obstaja." + +msgid "Foreign Key (type determined by related field)" +msgstr "Tuji ključ (tip odvisen od povezanega polja)" + +msgid "One-to-one relationship" +msgstr "Relacija ena-na-ena" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relacija %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relacija %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Relacija več-na-več" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "To polje je obvezno." + +msgid "Enter a whole number." +msgstr "Vnesite celo število." + +msgid "Enter a valid date." +msgstr "Vnesite veljaven datum." + +msgid "Enter a valid time." +msgstr "Vnesite veljaven čas." + +msgid "Enter a valid date/time." +msgstr "Vnesite veljaven datum/čas." + +msgid "Enter a valid duration." +msgstr "Vnesite veljavno obdobje trajanja." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Datoteka ni bila poslana. Preverite nabor znakov v formi." + +msgid "No file was submitted." +msgstr "Poslali niste nobene datoteke." + +msgid "The submitted file is empty." +msgstr "Poslana datoteka je prazna." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Poskrbite, da bo imelo to ime datoteke največ %(max)d znak (trenutno ima " +"%(length)d)." +msgstr[1] "" +"Poskrbite, da bo imelo to ime datoteke največ %(max)d znaka (trenutno ima " +"%(length)d)." +msgstr[2] "" +"Poskrbite, da bo imelo to ime datoteke največ %(max)d znake (trenutno ima " +"%(length)d)." +msgstr[3] "" +"Poskrbite, da bo imelo to ime datoteke največ %(max)d znakov (trenutno ima " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Prosim oddaj datoteko ali izberi počisti okvir, ampak ne oboje hkrati." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Naložite veljavno sliko. Naložena datoteka ni bila slika ali pa je bila le-" +"ta okvarjena." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Izberite veljavno možnost. %(value)s ni med ponujenimi izbirami." + +msgid "Enter a list of values." +msgstr "Vnesite seznam vrednosti." + +msgid "Enter a complete value." +msgstr "Vnesite popolno vrednost." + +msgid "Enter a valid UUID." +msgstr "Vnesite veljaven UUID." + +msgid "Enter a valid JSON." +msgstr "Vnesite veljaven JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Skrito polje %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +msgid "Order" +msgstr "Razvrsti" + +msgid "Delete" +msgstr "Izbriši" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Prosimo, odpravite podvojene vrednosti za %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Prosimo popravite podvojene vrednosti za %(field)s, ki morajo biti unikatne." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Prosimo popravite podvojene vrednosti za polje %(field_name)s, ki mora biti " +"edinstveno za %(lookup)s po %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Prosimo odpravite podvojene vrednosti spodaj." + +msgid "The inline value did not match the parent instance." +msgstr "Vrednost se ne ujema s povezanim vnosom." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Izberite veljavno možnost. Te možnosti ni med ponujenimi izbirami." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Počisti" + +msgid "Currently" +msgstr "Trenutno" + +msgid "Change" +msgstr "Spremeni" + +msgid "Unknown" +msgstr "Neznano" + +msgid "Yes" +msgstr "Da" + +msgid "No" +msgstr "Ne" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "da,ne,morda" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajta" +msgstr[2] "%(size)d bajti" +msgstr[3] "%(size)d bajtov" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "polnoč" + +msgid "noon" +msgstr "poldne" + +msgid "Monday" +msgstr "ponedeljek" + +msgid "Tuesday" +msgstr "torek" + +msgid "Wednesday" +msgstr "sreda" + +msgid "Thursday" +msgstr "četrtek" + +msgid "Friday" +msgstr "petek" + +msgid "Saturday" +msgstr "sobota" + +msgid "Sunday" +msgstr "nedelja" + +msgid "Mon" +msgstr "pon" + +msgid "Tue" +msgstr "tor" + +msgid "Wed" +msgstr "sre" + +msgid "Thu" +msgstr "čet" + +msgid "Fri" +msgstr "pet" + +msgid "Sat" +msgstr "sob" + +msgid "Sun" +msgstr "ned" + +msgid "January" +msgstr "januar" + +msgid "February" +msgstr "februar" + +msgid "March" +msgstr "marec" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "maj" + +msgid "June" +msgstr "junij" + +msgid "July" +msgstr "julij" + +msgid "August" +msgstr "avgust" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "december" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "maj" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "avg" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Marec" + +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Junij" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Julij" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Avg." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +msgctxt "alt. month" +msgid "March" +msgstr "Marec" + +msgctxt "alt. month" +msgid "April" +msgstr "April" + +msgctxt "alt. month" +msgid "May" +msgstr "Maj" + +msgctxt "alt. month" +msgid "June" +msgstr "Junij" + +msgctxt "alt. month" +msgid "July" +msgstr "Julij" + +msgctxt "alt. month" +msgid "August" +msgstr "Avgust" + +msgctxt "alt. month" +msgid "September" +msgstr "September" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "November" + +msgctxt "alt. month" +msgid "December" +msgstr "December" + +msgid "This is not a valid IPv6 address." +msgstr "To ni veljaven IPv6 naslov." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "ali" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d leto" +msgstr[1] "%(num)d leti" +msgstr[2] "%(num)d let" +msgstr[3] "%(num)d let" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mesec" +msgstr[1] "%(num)d meseca " +msgstr[2] "%(num)d mesecev" +msgstr[3] "%(num)d mesecev" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d teden" +msgstr[1] "%(num)d tedna" +msgstr[2] "%(num)d tednov" +msgstr[3] "%(num)d tednov" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dan" +msgstr[1] "%(num)d dneva" +msgstr[2] "%(num)d dni" +msgstr[3] "%(num)d dni" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d uro" +msgstr[1] "%(num)d uri" +msgstr[2] "%(num)d ure" +msgstr[3] "%(num)d ur" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minuto" +msgstr[1] "%(num)d minuti" +msgstr[2] "%(num)d minute" +msgstr[3] "%(num)d minut" + +msgid "Forbidden" +msgstr "Prepovedano" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF preverjanje ni uspelo. Zahtevek preklican." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"To obvestilo vidite, ker ta spletna stran zahteva CSRF piškotek, ko " +"pošiljate obrazce. Piškotek je potreben zaradi varnosti, da se zagotovi, da " +"ste zahtevek res naredili vi." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Če ste brskalnik konfigurirali tako, da onemogoča piškotke, jih znova " +"omogočite za to spletno mesto ali za zahteve »istega izvora«." + +msgid "More information is available with DEBUG=True." +msgstr "Več informacij je na voljo, če nastavite DEBUG=True." + +msgid "No year specified" +msgstr "Leto ni vnešeno" + +msgid "Date out of range" +msgstr "Datum ni znotraj veljavnega obsega." + +msgid "No month specified" +msgstr "Mesec ni vnešen" + +msgid "No day specified" +msgstr "Dan ni vnešen" + +msgid "No week specified" +msgstr "Teden ni vnešen" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Na voljo ni noben %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Prihodnje %(verbose_name_plural)s niso na voljo, ker je vrednost " +"%(class_name)s.allow_future False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Noben %(verbose_name)s ne ustreza poizvedbi" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Stran ni »zadnja«, niti je ni mogoče pretvoriti v število." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Neveljavna stran (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Prikaz vsebine mape ni dovoljen." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” ne obstaja" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Vsebina mape %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Namestitev se je uspešno izvedla! Čestitke!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Oglejte si obvestila ob izdaji za Django " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"To stran vidite, ker imate nastavljeno DEBUG=True v vaši settings.py datoteki in ker nimate " +"nastavljenih URL-jev." + +msgid "Django Documentation" +msgstr "Django Dokumentacija" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "Vodič: aplikacija anketa" + +msgid "Get started with Django" +msgstr "Začnite z Djangom" + +msgid "Django Community" +msgstr "Django Skupnost" + +msgid "Connect, get help, or contribute" +msgstr "Spoznajte nove ljudi, poiščite pomoč in prispevajte " diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sl/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/sl/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sl/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..207189850c6f5e9df9a1ae4b6871e72a7a5818c2 GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFqzMo5Tyuw@raWUwmpC*5|} zU&^+t{6UpfXB^u=QV@6UJ$KGLNIM;tK+n&=?qbyI;oDGF!h!~5yJZkf`d^hM8 zy`#qq>R8anf?d3Qg+yUqT-51F+`Se{R22^ti_fR3i7(JWtkU95d5KcJ`VYkN8T&`rZpkHY11 zB}?9s^la6%oS?euyAsuwn`oAeXL^A-3BD@I7tr5pnlW{q!+JKjIvu0Vd$Mw)>C#SnrGUN*D8m|6Xv4UI6bf=ne`CS-lIU%G+BKanqlZZO)}&^g}&`) literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sl/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/sl/formats.py new file mode 100644 index 0000000..c3e96bb --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/sl/formats.py @@ -0,0 +1,44 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "d. F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j. F Y. H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "j. M. Y" +SHORT_DATETIME_FORMAT = "j.n.Y. H:i" +FIRST_DAY_OF_WEEK = 0 + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' + "%d-%m-%Y", # '25-10-2006' + "%d. %m. %Y", # '25. 10. 2006' + "%d. %m. %y", # '25. 10. 06' +] + +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' + "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' + "%d.%m.%y %H:%M", # '25.10.06 14:30' + "%d-%m-%Y %H:%M:%S", # '25-10-2006 14:30:59' + "%d-%m-%Y %H:%M:%S.%f", # '25-10-2006 14:30:59.000200' + "%d-%m-%Y %H:%M", # '25-10-2006 14:30' + "%d. %m. %Y %H:%M:%S", # '25. 10. 2006 14:30:59' + "%d. %m. %Y %H:%M:%S.%f", # '25. 10. 2006 14:30:59.000200' + "%d. %m. %Y %H:%M", # '25. 10. 2006 14:30' + "%d. %m. %y %H:%M:%S", # '25. 10. 06 14:30:59' + "%d. %m. %y %H:%M:%S.%f", # '25. 10. 06 14:30:59.000200' + "%d. %m. %y %H:%M", # '25. 10. 06 14:30' +] + +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..b6de2d0425bd6c30bb7f2a8ed113a3dc932a6a57 GIT binary patch literal 28679 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 idCU45>#fU&?LaD-rKmY+yEj{R-)CsrN_{Oq, 2011-2014 +# Besnik Bleta , 2020-2024 +# Besnik Bleta , 2015-2019 +# Jannis Leidel , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Besnik Bleta , 2020-2024\n" +"Language-Team: Albanian (http://app.transifex.com/django/django/language/" +"sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabe" + +msgid "Algerian Arabic" +msgstr "Arabishte Algjeriane" + +msgid "Asturian" +msgstr "Asturiase" + +msgid "Azerbaijani" +msgstr "Azerbaixhanase" + +msgid "Bulgarian" +msgstr "Bulgare" + +msgid "Belarusian" +msgstr "Bjelloruse" + +msgid "Bengali" +msgstr "Bengaleze" + +msgid "Breton" +msgstr "Bretone" + +msgid "Bosnian" +msgstr "Boshnjake" + +msgid "Catalan" +msgstr "Katalane" + +msgid "Central Kurdish (Sorani)" +msgstr "Kurdishte e Qendrës (Sorani)" + +msgid "Czech" +msgstr "Çeke" + +msgid "Welsh" +msgstr "Uellsiane" + +msgid "Danish" +msgstr "Daneze" + +msgid "German" +msgstr "Gjermane" + +msgid "Lower Sorbian" +msgstr "Sorbiane e Poshtme" + +msgid "Greek" +msgstr "Greke" + +msgid "English" +msgstr "Angleze" + +msgid "Australian English" +msgstr "Angleze Australiane" + +msgid "British English" +msgstr "Angleze Britanike" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spanjolle" + +msgid "Argentinian Spanish" +msgstr "Spanjolle Argjentinase" + +msgid "Colombian Spanish" +msgstr "Spanjolle Kolumbiane" + +msgid "Mexican Spanish" +msgstr "Spanjolle Meksikane" + +msgid "Nicaraguan Spanish" +msgstr "Spanjolle Nikaraguane" + +msgid "Venezuelan Spanish" +msgstr "Spanjolle Venezuelane" + +msgid "Estonian" +msgstr "Estoneze" + +msgid "Basque" +msgstr "Baske" + +msgid "Persian" +msgstr "Persiane" + +msgid "Finnish" +msgstr "Finlandeze" + +msgid "French" +msgstr "Frënge" + +msgid "Frisian" +msgstr "Frisiane" + +msgid "Irish" +msgstr "Irlandeze" + +msgid "Scottish Gaelic" +msgstr "Skoceze Gaelike" + +msgid "Galician" +msgstr "Galike" + +msgid "Hebrew" +msgstr "Hebraishte" + +msgid "Hindi" +msgstr "Indiane" + +msgid "Croatian" +msgstr "Kroate" + +msgid "Upper Sorbian" +msgstr "Sorbiane e Sipërme" + +msgid "Hungarian" +msgstr "Hungareze" + +msgid "Armenian" +msgstr "Armenisht" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indoneziane" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandeze" + +msgid "Italian" +msgstr "Italiane" + +msgid "Japanese" +msgstr "Japoneze" + +msgid "Georgian" +msgstr "Gjeorgjiane" + +msgid "Kabyle" +msgstr "Kabilase" + +msgid "Kazakh" +msgstr "Kazake" + +msgid "Khmer" +msgstr "Khmere" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreane" + +msgid "Kyrgyz" +msgstr "Kirgize" + +msgid "Luxembourgish" +msgstr "Luksemburgase" + +msgid "Lithuanian" +msgstr "Lituaneze" + +msgid "Latvian" +msgstr "Letoneze" + +msgid "Macedonian" +msgstr "Maqedone" + +msgid "Malayalam" +msgstr "Malajalame" + +msgid "Mongolian" +msgstr "Mongoliane" + +msgid "Marathi" +msgstr "Marati" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Burmeze" + +msgid "Norwegian Bokmål" +msgstr "Norvegjeze Bokmal" + +msgid "Nepali" +msgstr "Nepaleze" + +msgid "Dutch" +msgstr "Holandeze" + +msgid "Norwegian Nynorsk" +msgstr "Norvegjeze Nynorsk" + +msgid "Ossetic" +msgstr "Osetishte" + +msgid "Punjabi" +msgstr "Panxhabe" + +msgid "Polish" +msgstr "Polake" + +msgid "Portuguese" +msgstr "Portugeze" + +msgid "Brazilian Portuguese" +msgstr "Portugeze Braziliane" + +msgid "Romanian" +msgstr "Rumune" + +msgid "Russian" +msgstr "Ruse" + +msgid "Slovak" +msgstr "Sllovake " + +msgid "Slovenian" +msgstr "Slovene" + +msgid "Albanian" +msgstr "Shqipe" + +msgid "Serbian" +msgstr "Serbe" + +msgid "Serbian Latin" +msgstr "Serbe Latine" + +msgid "Swedish" +msgstr "Suedeze" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamileze" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Taxhike" + +msgid "Thai" +msgstr "Tajlandeze" + +msgid "Turkmen" +msgstr "Turkmene" + +msgid "Turkish" +msgstr "Turke" + +msgid "Tatar" +msgstr "Tatare" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Ujgure" + +msgid "Ukrainian" +msgstr "Ukrainase" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbeke" + +msgid "Vietnamese" +msgstr "Vietnameze" + +msgid "Simplified Chinese" +msgstr "Kineze e Thjeshtuar" + +msgid "Traditional Chinese" +msgstr "Kineze Tradicionale" + +msgid "Messages" +msgstr "Mesazhe" + +msgid "Site Maps" +msgstr "Harta Sajti" + +msgid "Static Files" +msgstr "Kartela Statike" + +msgid "Syndication" +msgstr "" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Ai numër faqeje s’është numër i plotë" + +msgid "That page number is less than 1" +msgstr "Ai numër faqeje është më i vogël se 1" + +msgid "That page contains no results" +msgstr "Ajo faqe s’përmban përfundime" + +msgid "Enter a valid value." +msgstr "Jepni një vlerë të vlefshme." + +msgid "Enter a valid domain name." +msgstr "Jepni një emër të vlefshëm përkatësie." + +msgid "Enter a valid URL." +msgstr "Jepni një URL të vlefshme." + +msgid "Enter a valid integer." +msgstr "Jepni një numër të plotë të vlefshëm." + +msgid "Enter a valid email address." +msgstr "Jepni një adresë email të vlefshme." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Jepni një “slug” të vlefshëm, të përbërë nga shkronja, numra, nëvija ose " +"vija në mes." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Jepni një “slug” të vlefshëm, të përbërë nga shkronja, numra, nënvija ose " +"vija ndarëse Unikod." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Jepni një adresë %(protocol)s të vlefshme." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4, ose IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Jepni vetëm shifra të ndara nga presje." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Siguroni që kjo vlerë të jetë %(limit_value)s (është %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Siguroni që kjo vlerë të jetë më e vogël ose baras me %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Siguroni që kjo vlerë është më e madhe ose baras me %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Garantoni që vlera të jetë një shumëfish i madhësisë së hapit " +"%(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Garantoni që kjo vlerë të jetë një shumëfish i madhësisë %(limit_value)s, " +"duke filluar nga %(offset)s, p.sh., %(offset)s, %(valid_value1)s, " +"%(valid_value2)s, e me radhë." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Sigurohuni që kjo vlerë ka të paktën %(limit_value)d shenjë (ka " +"%(show_value)d)." +msgstr[1] "" +"Sigurohuni që kjo vlerë ka të paktën %(limit_value)d shenja (ka " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Sigurohuni që kjo vlerë ka të shumtën %(limit_value)d shenjë (ka " +"%(show_value)d)." +msgstr[1] "" +"Sigurohuni që kjo vlerë ka të shumtën %(limit_value)d shenja (ka " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Jepni një numër." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Sigurohuni që s’ka më tepër se %(max)s shifër gjithsej." +msgstr[1] "Sigurohuni që s’ka më tepër se %(max)s shifra gjithsej." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Sigurohuni që s’ka më shumë se %(max)s vend dhjetor." +msgstr[1] "Sigurohuni që s’ka më shumë se %(max)s vende dhjetore." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Sigurohuni që s’ka më tepër se %(max)s shifër para presjes dhjetore." +msgstr[1] "" +"Sigurohuni që s’ka më tepër se %(max)s shifra para presjes dhjetore." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Zgjatimi “%(extension)s” për kartela nuk lejohet. Zgjatime të lejuara janë: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Nuk lejohen shenja null." + +msgid "and" +msgstr "dhe " + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Ka tashmë %(model_name)s me këtë %(field_labels)s." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Është cenuar kufizimi “%(name)s”." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Vlera %(value)r s’është zgjedhje e vlefshme." + +msgid "This field cannot be null." +msgstr "Kjo fushë s’mund të përmbajë shenja null." + +msgid "This field cannot be blank." +msgstr "Kjo fushë s’mund të jetë e paplotësuar." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Ka tashmë një %(model_name)s me këtë %(field_label)s." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s duhet të jetë unike për %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Fushë e llojit: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Vlera “%(value)s” duhet të jetë ose True, ose False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Vlera për “%(value)s” duhet të jetë ose True, ose False, ose None." + +msgid "Boolean (Either True or False)" +msgstr "Buleane (Ose True, ose False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Varg (deri në %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Varg (i pakufizuar)" + +msgid "Comma-separated integers" +msgstr "Numra të plotë të ndarë me presje" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Vlera “%(value)s” ka një format të pavlefshëm datash. Duhet të jetë në " +"formatin YYYY-MM-DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Vlera “%(value)s” ka formatin e saktë (YYYY-MM-DD), por është datë e " +"pavlefshme." + +msgid "Date (without time)" +msgstr "Datë (pa kohë)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Vlera “'%(value)s” ka një format të pavlefshëm. Duhet të jetë në formatin " +"YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Vlera “%(value)s” ka format të saktë (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]), " +"por është datë/kohë e pavlefshme." + +msgid "Date (with time)" +msgstr "Datë (me kohë)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Vlera “%(value)s” duhet të jetë një numër dhjetor." + +msgid "Decimal number" +msgstr "Numër dhjetor" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Vlera “%(value)s” ka format të pavlefshëm. Duhet të jetë në formatin [DD] " +"[HH:[MM:]]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Kohëzgjatje" + +msgid "Email address" +msgstr "Adresë email" + +msgid "File path" +msgstr "Shteg kartele" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Vlera “%(value)s” duhet të jetë numër i plotë." + +msgid "Integer" +msgstr "Numër i plotë" + +msgid "Big (8 byte) integer" +msgstr "Numër i plotë i madh (8 bajte)" + +msgid "Small integer" +msgstr "Numër i plotë i vogël" + +msgid "IPv4 address" +msgstr "Adresë IPv4" + +msgid "IP address" +msgstr "Adresë IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Vlera “%(value)s” duhet të jetë ose None, ose True, ose False." + +msgid "Boolean (Either True, False or None)" +msgstr "Buleane (Ose True, ose False, ose None)" + +msgid "Positive big integer" +msgstr "Numër i plotë pozitiv i madh" + +msgid "Positive integer" +msgstr "Numër i plotë pozitiv" + +msgid "Positive small integer" +msgstr "Numër i plotë pozitiv i vogël" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Identifikues (deri në %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Vlera “%(value)s” ka format të pavlefshëm. Duhet të jetë në formatin HH:MM[:" +"ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Vlera “%(value)s” ka formatin e saktë (HH:MM[:ss[.uuuuuu]]) por është kohë e " +"pavlefshme." + +msgid "Time" +msgstr "Kohë" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Të dhëna dyore të papërpunuara" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” s’është UUID i vlefshëm." + +msgid "Universally unique identifier" +msgstr "Identifikues universalisht unik" + +msgid "File" +msgstr "Kartelë" + +msgid "Image" +msgstr "Figurë" + +msgid "A JSON object" +msgstr "Objekt JSON" + +msgid "Value must be valid JSON." +msgstr "Vlera duhet të jetë JSON i vlefshëm." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Instanca %(model)s me %(field)s %(value)r s’ekziston." + +msgid "Foreign Key (type determined by related field)" +msgstr "Kyç i Jashtëm (lloj i përcaktuar nga fusha përkatëse)" + +msgid "One-to-one relationship" +msgstr "Marrëdhënie një-për-një" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Marrëdhënie %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Marrëdhënie %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Marrëdhënie shumë-për-shumë" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Kjo fushë është e domosdoshme." + +msgid "Enter a whole number." +msgstr "Jepni një numër të tërë." + +msgid "Enter a valid date." +msgstr "Jepni një datë të vlefshme." + +msgid "Enter a valid time." +msgstr "Jepni një kohë të vlefshme." + +msgid "Enter a valid date/time." +msgstr "Jepni një datë/kohë të vlefshme." + +msgid "Enter a valid duration." +msgstr "Jepni një kohëzgjatje të vlefshme." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Numri i ditëve duhet të jetë mes {min_days} dhe {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" +"S’u parashtrua ndonjë kartelë. Kontrolloni llojin e kodimit te formulari." + +msgid "No file was submitted." +msgstr "S’u parashtrua kartelë." + +msgid "The submitted file is empty." +msgstr "Kartela e parashtruar është e zbrazët." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Sigurohuni që ky emër kartele ka të shumtën %(max)d shenjë (it has " +"%(length)d)." +msgstr[1] "" +"Sigurohuni që ky emër kartele ka të shumtën %(max)d shenja (it has " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Ju lutemi, ose parashtroni një kartelë, ose i vini shenjë kutizës për " +"spastrim, jo që të dyja." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Ngarkoni një figurë të vlefshme. Kartela që ngarkuat ose nuk qe figurë, ose " +"qe figurë e dëmtuar." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Përzgjidhni një zgjedhje të vlefshme. %(value)s s’është një nga zgjedhjet e " +"mundshme." + +msgid "Enter a list of values." +msgstr "Jepni një listë vlerash." + +msgid "Enter a complete value." +msgstr "Jepni një vlerë të plotë." + +msgid "Enter a valid UUID." +msgstr "Jepni një UUID të vlefshëm." + +msgid "Enter a valid JSON." +msgstr "Jepni një JSON të vlefshëm." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Fushë e fshehur %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Mungojnë të dhëna ManagementForm, ose në to janë futur hundët. Fusha që " +"mungojnë: %(field_names)s. Nëse problemi vazhdon, mund të duhet të " +"parashtroni një raport të mete." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Ju lutemi, parashtroni e shumta %(num)d formular." +msgstr[1] "Ju lutemi, parashtroni e shumta %(num)d formularë." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Ju lutemi, parashtroni të paktën %(num)d formular." +msgstr[1] "Ju lutemi, parashtroni të paktën %(num)d formularë." + +msgid "Order" +msgstr "Renditi" + +msgid "Delete" +msgstr "Fshije" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ju lutemi, ndreqni të dhënat e përsëdytura për %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Ju lutemi, ndreqni të dhënat e përsëdytura për %(field)s, të cilat duhet të " +"jenë unike." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Ju lutemi, ndreqni të dhënat e përsëdytura për %(field_name)s të cilat duhet " +"të jenë unike për %(lookup)s te %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Ju lutemi, ndreqni më poshtë vlerat e përsëdytura." + +msgid "The inline value did not match the parent instance." +msgstr "Vlera e brendshme s’u përputh me instancën prind." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Përzgjidhni një zgjedhje të vlefshme. Ajo zgjedhje nuk është një nga " +"zgjedhjet e mundshme." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” s’është vlerë e vlefshme." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s s’u interpretua dot brenda zonës kohore %(current_timezone)s; " +"mund të jetë e dykuptimtë, ose mund të mos ekzistojë." + +msgid "Clear" +msgstr "Spastroje" + +msgid "Currently" +msgstr "Tani" + +msgid "Change" +msgstr "Ndryshoje" + +msgid "Unknown" +msgstr "E panjohur" + +msgid "Yes" +msgstr "Po" + +msgid "No" +msgstr "Jo" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "po,jo,ndoshta" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajte" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "mesnatë" + +msgid "noon" +msgstr "mesditë" + +msgid "Monday" +msgstr "E hënë" + +msgid "Tuesday" +msgstr "E martë" + +msgid "Wednesday" +msgstr "E mërkurë" + +msgid "Thursday" +msgstr "E enjte" + +msgid "Friday" +msgstr "E premte" + +msgid "Saturday" +msgstr "E shtunë" + +msgid "Sunday" +msgstr "E dielë" + +msgid "Mon" +msgstr "Hën" + +msgid "Tue" +msgstr "Mar" + +msgid "Wed" +msgstr "Mër" + +msgid "Thu" +msgstr "Enj" + +msgid "Fri" +msgstr "Pre" + +msgid "Sat" +msgstr "Sht" + +msgid "Sun" +msgstr "Die" + +msgid "January" +msgstr "Janar" + +msgid "February" +msgstr "Shkurt" + +msgid "March" +msgstr "Mars" + +msgid "April" +msgstr "Prill" + +msgid "May" +msgstr "Maj" + +msgid "June" +msgstr "Qershor" + +msgid "July" +msgstr "Korrik" + +msgid "August" +msgstr "Gusht" + +msgid "September" +msgstr "Shtator" + +msgid "October" +msgstr "Tetor" + +msgid "November" +msgstr "Nëntor" + +msgid "December" +msgstr "Dhjetor" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "shk" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "pri" + +msgid "may" +msgstr "maj" + +msgid "jun" +msgstr "qer" + +msgid "jul" +msgstr "kor" + +msgid "aug" +msgstr "gus" + +msgid "sep" +msgstr "sht" + +msgid "oct" +msgstr "tet" + +msgid "nov" +msgstr "nën" + +msgid "dec" +msgstr "dhj" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Shk." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mars" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Prill" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Qershor" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Korrik" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Gus." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Shta." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Tet." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nën." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dhj." + +msgctxt "alt. month" +msgid "January" +msgstr "Janar" + +msgctxt "alt. month" +msgid "February" +msgstr "Shkurt" + +msgctxt "alt. month" +msgid "March" +msgstr "Mars" + +msgctxt "alt. month" +msgid "April" +msgstr "Prill" + +msgctxt "alt. month" +msgid "May" +msgstr "Maj" + +msgctxt "alt. month" +msgid "June" +msgstr "Qershor" + +msgctxt "alt. month" +msgid "July" +msgstr "Korrik" + +msgctxt "alt. month" +msgid "August" +msgstr "Gusht" + +msgctxt "alt. month" +msgid "September" +msgstr "Shtator" + +msgctxt "alt. month" +msgid "October" +msgstr "Tetor" + +msgctxt "alt. month" +msgid "November" +msgstr "Nëntor" + +msgctxt "alt. month" +msgid "December" +msgstr "Dhjetor" + +msgid "This is not a valid IPv6 address." +msgstr "Kjo s’është adresë IPv6 e vlefshme." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ose" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d vit" +msgstr[1] "%(num)d vjet" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d muaj" +msgstr[1] "%(num)d muaj" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d javë" +msgstr[1] "%(num)d javë" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d ditë" +msgstr[1] "%(num)d ditë" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d orë" +msgstr[1] "%(num)d orë" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minutë" +msgstr[1] "%(num)d minuta" + +msgid "Forbidden" +msgstr "E ndaluar" + +msgid "CSRF verification failed. Request aborted." +msgstr "Verifikimi CSRF dështoi. Kërkesa u ndërpre." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Këtë mesazh po e shihni ngaqë ky sajt HTTPS e ka të domosdoshme dërgimin e " +"“Referer header” te shfletuesi juaj, por s’u dërgua ndonjë i tillë. Kjo krye " +"është e domosdoshme për arsye sigurie, për të bërë të mundur që shfletuesi " +"juaj të mos komprometohet nga palë të treta." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Nëse e keni formësuar shfletuesin tuaj të çaktivizojë kryet “Referer”, ju " +"lutemi, riaktivizojini, ose për lidhje HTTPS, ose për kërkesa “same-origin”." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Nëse përdorni etiketën " +"etiketën ose përfshini kryet “Referrer-Policy: no-referrer”, ju lutemi, " +"hiqini. Mbrojtja CSRF lyp që kryet “Referer” të kryejnë kontroll strikt " +"referuesi. Nëse shqetësoheni për privatësinë, për lidhje te sajte palësh të " +"treta përdorni alternativa si ." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Këtë mesazh po e shihni ngaqë ky sajt lyp një cookie CSRF, kur parashtrohen " +"formularë. Kjo cookie është e domosdoshme për arsye sigurie, për të bërë të " +"mundur që shfletuesi juaj të mos komprometohet nga palë të treta." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Nëse e keni formësuar shfletuesin tuaj të çaktivizojë cookie-t, ju lutemi, " +"riaktivizojini, të paktën për këtë sajt, ose për kërkesa “same-origin”." + +msgid "More information is available with DEBUG=True." +msgstr "Më tepër të dhëna mund të gjeni me DEBUG=True." + +msgid "No year specified" +msgstr "Nuk është caktuar vit" + +msgid "Date out of range" +msgstr "Datë jashtë intervali" + +msgid "No month specified" +msgstr "Nuk është caktuar muaj" + +msgid "No day specified" +msgstr "Nuk është caktuar ditë" + +msgid "No week specified" +msgstr "Nuk është caktuar javë" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nuk ka %(verbose_name_plural)s të përcaktuar" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s i ardhshëm jo i passhëm, ngaqë %(class_name)s." +"allow_future është False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"U dha varg i pavlefshëm date “%(datestr)s” formati i dhënë “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "S’u gjetën %(verbose_name)s me përputhje" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Faqja nuk është “last”, as mund të shndërrohet në një int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Faqe e pavlefshme (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Listë e zbrazët dhe “%(class_name)s.allow_empty” është False." + +msgid "Directory indexes are not allowed here." +msgstr "Këtu s’lejohen tregues drejtorish." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” s’ekziston" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Tregues i %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Instalimi funksionoi me sukses! Përgëzime!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Shihni shënimet për hedhjen në qarkullim të " +"Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Po e shihni këtë faqe ngaqë te kartela juaj e rregullimeve gjendet DEBUG=True dhe s’keni formësuar " +"ndonjë URL." + +msgid "Django Documentation" +msgstr "Dokumentim i Django-s" + +msgid "Topics, references, & how-to’s" +msgstr "Tema, referenca, & how-to" + +msgid "Tutorial: A Polling App" +msgstr "Përkujdesore: Një Aplikacion Për Sondazhe" + +msgid "Get started with Django" +msgstr "Si t’ia filloni me Django-n" + +msgid "Django Community" +msgstr "Bashkësia Django" + +msgid "Connect, get help, or contribute" +msgstr "Lidhuni, merrni ndihmë, ose jepni ndihmesë" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sq/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/sq/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sq/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..915356e0a053a78dbb2b61e0563b55fb6ea6f594 GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF6Oram`U&0jd))RX zimQ$-w)Vm~oOABw!o9rHIR~;{KWEvy0>HD8PV145@+@s$!LDSfe`D zX#+QCGXT9-ty5!YM75ro3lr7qL90t+SnE;0=+iyC-a&KPYvQ(zLMIt|zKcTK4#)1V z=|&Fn6W5!DqhtT_$Jr=4Cf#7<`C)Rpq-#5av5O{2;5;B7g`SVE!jU%%(A56R-ax6! zOTKBJ4sPO^V5Nw+EU$QM^K?_NRVCt#iHh)~B%A!7o-7_?v8Y&oP0}YKr((J!tBhMI sU(KzYrzB^Vc(&%eEJ!8H^~z>% literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sq/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/sq/formats.py new file mode 100644 index 0000000..c7ed92e --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/sq/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "d F Y" +TIME_FORMAT = "g.i.A" +# DATETIME_FORMAT = +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "Y-m-d" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..ce850cd15eecb45d7f80468bf0b848564b3ae33c GIT binary patch literal 35035 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 ZsLio@KGP;aQH>2%4, 2018-2019 +# Igor Jerosimić, 2019-2021,2023-2024 +# Jannis Leidel , 2011 +# Janos Guljas , 2011-2012 +# Mariusz Felisiak , 2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Igor Jerosimić, 2019-2021,2023-2024\n" +"Language-Team: Serbian (http://app.transifex.com/django/django/language/" +"sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +msgid "Afrikaans" +msgstr "африкански" + +msgid "Arabic" +msgstr "арапски" + +msgid "Algerian Arabic" +msgstr "Алжирски арапски" + +msgid "Asturian" +msgstr "астуријски" + +msgid "Azerbaijani" +msgstr "азербејџански" + +msgid "Bulgarian" +msgstr "бугарски" + +msgid "Belarusian" +msgstr "белоруски" + +msgid "Bengali" +msgstr "бенгалски" + +msgid "Breton" +msgstr "бретонски" + +msgid "Bosnian" +msgstr "босански" + +msgid "Catalan" +msgstr "каталонски" + +msgid "Central Kurdish (Sorani)" +msgstr "централнокурдски (сорани)" + +msgid "Czech" +msgstr "чешки" + +msgid "Welsh" +msgstr "велшки" + +msgid "Danish" +msgstr "дански" + +msgid "German" +msgstr "немачки" + +msgid "Lower Sorbian" +msgstr "доњолужичкосрпски" + +msgid "Greek" +msgstr "грчки" + +msgid "English" +msgstr "енглески" + +msgid "Australian English" +msgstr "аустралијски енглески" + +msgid "British English" +msgstr "британски енглески" + +msgid "Esperanto" +msgstr "есперанто" + +msgid "Spanish" +msgstr "шпански" + +msgid "Argentinian Spanish" +msgstr "аргентински шпански" + +msgid "Colombian Spanish" +msgstr "колумбијски шпански" + +msgid "Mexican Spanish" +msgstr "мексички шпански" + +msgid "Nicaraguan Spanish" +msgstr "никарагвански шпански" + +msgid "Venezuelan Spanish" +msgstr "венецуелански шпански" + +msgid "Estonian" +msgstr "естонски" + +msgid "Basque" +msgstr "баскијски" + +msgid "Persian" +msgstr "персијски" + +msgid "Finnish" +msgstr "фински" + +msgid "French" +msgstr "француски" + +msgid "Frisian" +msgstr "фризијски" + +msgid "Irish" +msgstr "ирски" + +msgid "Scottish Gaelic" +msgstr "шкотски гелски" + +msgid "Galician" +msgstr "галицијски" + +msgid "Hebrew" +msgstr "хебрејски" + +msgid "Hindi" +msgstr "хинду" + +msgid "Croatian" +msgstr "хрватски" + +msgid "Upper Sorbian" +msgstr "горњолужичкосрпски" + +msgid "Hungarian" +msgstr "мађарски" + +msgid "Armenian" +msgstr "јерменски" + +msgid "Interlingua" +msgstr "интерлингва" + +msgid "Indonesian" +msgstr "индонежански" + +msgid "Igbo" +msgstr "Игбо" + +msgid "Ido" +msgstr "идо" + +msgid "Icelandic" +msgstr "исландски" + +msgid "Italian" +msgstr "италијански" + +msgid "Japanese" +msgstr "јапански" + +msgid "Georgian" +msgstr "грузијски" + +msgid "Kabyle" +msgstr "кабилски" + +msgid "Kazakh" +msgstr "казашки" + +msgid "Khmer" +msgstr "кмерски" + +msgid "Kannada" +msgstr "канада" + +msgid "Korean" +msgstr "корејски" + +msgid "Kyrgyz" +msgstr "Киргиски" + +msgid "Luxembourgish" +msgstr "луксембуршки" + +msgid "Lithuanian" +msgstr "литвански" + +msgid "Latvian" +msgstr "латвијски" + +msgid "Macedonian" +msgstr "македонски" + +msgid "Malayalam" +msgstr "малајаламски" + +msgid "Mongolian" +msgstr "монголски" + +msgid "Marathi" +msgstr "маратхи" + +msgid "Malay" +msgstr "малајски" + +msgid "Burmese" +msgstr "бурмански" + +msgid "Norwegian Bokmål" +msgstr "норвешки књижевни" + +msgid "Nepali" +msgstr "непалски" + +msgid "Dutch" +msgstr "холандски" + +msgid "Norwegian Nynorsk" +msgstr "норвешки нови" + +msgid "Ossetic" +msgstr "осетински" + +msgid "Punjabi" +msgstr "панџаби" + +msgid "Polish" +msgstr "пољски" + +msgid "Portuguese" +msgstr "португалски" + +msgid "Brazilian Portuguese" +msgstr "бразилски португалски" + +msgid "Romanian" +msgstr "румунски" + +msgid "Russian" +msgstr "руски" + +msgid "Slovak" +msgstr "словачки" + +msgid "Slovenian" +msgstr "словеначки" + +msgid "Albanian" +msgstr "албански" + +msgid "Serbian" +msgstr "српски" + +msgid "Serbian Latin" +msgstr "српски (латиница)" + +msgid "Swedish" +msgstr "шведски" + +msgid "Swahili" +msgstr "свахили" + +msgid "Tamil" +msgstr "тамилски" + +msgid "Telugu" +msgstr "телугу" + +msgid "Tajik" +msgstr "Таџики" + +msgid "Thai" +msgstr "тајландски" + +msgid "Turkmen" +msgstr "Туркменски" + +msgid "Turkish" +msgstr "турски" + +msgid "Tatar" +msgstr "татарски" + +msgid "Udmurt" +msgstr "удмуртски" + +msgid "Uyghur" +msgstr "Ујгури" + +msgid "Ukrainian" +msgstr "украјински" + +msgid "Urdu" +msgstr "урду" + +msgid "Uzbek" +msgstr "Узбекистански" + +msgid "Vietnamese" +msgstr "вијетнамски" + +msgid "Simplified Chinese" +msgstr "поједностављени кинески" + +msgid "Traditional Chinese" +msgstr "традиционални кинески" + +msgid "Messages" +msgstr "Poruke" + +msgid "Site Maps" +msgstr "Мапе сајта" + +msgid "Static Files" +msgstr "Статички фајлови" + +msgid "Syndication" +msgstr "Удруживање садржаја" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Задати број стране није цео број" + +msgid "That page number is less than 1" +msgstr "Задати број стране је мањи од 1" + +msgid "That page contains no results" +msgstr "Тражена страна не садржи резултате" + +msgid "Enter a valid value." +msgstr "Унесите исправну вредност." + +msgid "Enter a valid domain name." +msgstr "Унесите исправно име домена." + +msgid "Enter a valid URL." +msgstr "Унесите исправан URL." + +msgid "Enter a valid integer." +msgstr "Унесите исправан цео број." + +msgid "Enter a valid email address." +msgstr "Унесите исправну и-мејл адресу." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Унесите исрпаван „слаг“, који се састоји од слова, бројки, доњих црта или " +"циртица." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Унесите исправан \"слаг\", који се састоји од Уникод слова, бројки, доњих " +"црта или цртица." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Унесите исправну адресу %(protocol)s." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 или IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Унесите само цифре раздвојене запетама." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Ово поље мора да буде %(limit_value)s (тренутно има %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Ова вредност мора да буде мања од %(limit_value)s. или тачно толико." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Ова вредност мора бити већа од %(limit_value)s или тачно толико." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Ова вредност мора да умножак величине корака %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Уверите се да је ова вредност вишекратник величине корака %(limit_value)s, " +"почевши од %(offset)s, нпр. %(offset)s, %(valid_value1)s, %(valid_value2)s, " +"и тако даље." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ово поље мора да има најмање %(limit_value)d карактер (тренутно има " +"%(show_value)d)." +msgstr[1] "" +"Ово поље мора да има најмање %(limit_value)d карактера (тренутно има " +"%(show_value)d)." +msgstr[2] "" +"Ово поље мора да има најмање %(limit_value)d карактера (тренутно има " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ово поље не сме да има више од %(limit_value)d карактера (тренутно има " +"%(show_value)d)." +msgstr[1] "" +"Ово поље не сме да има више од %(limit_value)d карактера (тренутно има " +"%(show_value)d)." +msgstr[2] "" +"Ово поље не сме да има више од %(limit_value)d карактера (тренутно има " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Унесите број." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Укупно не може бити више од %(max)s цифре." +msgstr[1] "Укупно не може бити више од %(max)s цифре." +msgstr[2] "Укупно не може бити више од %(max)s цифара." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Не може бити више од %(max)s децимале." +msgstr[1] "Не може бити више од %(max)s децимале." +msgstr[2] "Не може бити више од %(max)s децимала." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Не може бити више од %(max)s цифре пре децималног зареза." +msgstr[1] "Не може бити више од %(max)s цифре пре децималног зареза." +msgstr[2] "Не може бити више од %(max)s цифара пре децималног зареза." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Екстензија датотеке \"%(extension)s\" није дозвољена. Дозвољене су следеће " +"екстензије: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "'Null' карактери нису дозвољени." + +msgid "and" +msgstr "и" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s са пољем %(field_labels)s већ постоји." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Ограничење „%(name)s“ је прекршено." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Вредност %(value)r није валидна." + +msgid "This field cannot be null." +msgstr "Ово поље не може бити 'null'." + +msgid "This field cannot be blank." +msgstr "Ово поље не може да остане празно." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s са пољем %(field_label)s већ постоји." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s мора бити јединствен(a) за %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Поље типа: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Вредност \"%(value)s\" мора бити True или False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "\"%(value)s\" вредност мора бити True, False или None." + +msgid "Boolean (Either True or False)" +msgstr "Булова вредност (True или False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Стринг са макс. дужином %(max_length)s" + +msgid "String (unlimited)" +msgstr "Стринг (неограниченo)" + +msgid "Comma-separated integers" +msgstr "Цели бројеви раздвојени запетама" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"Вредност \"%(value)s\" нема исправан формат датума. Мора бити у формату ГГГГ-" +"ММ-ДД." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Вредност \"%(value)s\" има исправан формат (ГГГГ-ММ-ДД) али то није исправан " +"датум." + +msgid "Date (without time)" +msgstr "Датум (без времена)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Вредност \"%(value)s\" нема исправан формат. Мора бити у формату ГГГГ-ММ-ДД " +"ЧЧ:ММ[:сс[.uuuuuu]][TZ] ." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"Вредност \"%(value)s\" има исправан формат (ГГГГ-ММ-ДД ЧЧ:ММ[:сс[.uuuuuu]]" +"[TZ]) али то није исправан датум/време." + +msgid "Date (with time)" +msgstr "Датум (са временом)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Вредност \"%(value)s\" мора бити децимални број." + +msgid "Decimal number" +msgstr "Децимални број" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"Вредност \"%(value)s\" нема исправан формат. Мора бити у формату [ДД] [ЧЧ:" +"[ММ:]]сс[.uuuuuu]." + +msgid "Duration" +msgstr "Временски интервал" + +msgid "Email address" +msgstr "Имејл адреса" + +msgid "File path" +msgstr "Путања фајла" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Вредност \"%(value)s\" мора бити број са покретним зарезом." + +msgid "Floating point number" +msgstr "Број са покретним зарезом" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Вредност \"%(value)s\" мора бити цео број." + +msgid "Integer" +msgstr "Цео број" + +msgid "Big (8 byte) integer" +msgstr "Велики (8 бајтова) цео број" + +msgid "Small integer" +msgstr "Мали цео број" + +msgid "IPv4 address" +msgstr "IPv4 адреса" + +msgid "IP address" +msgstr "IP адреса" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Вредност \"%(value)s\" мора бити None, True или False." + +msgid "Boolean (Either True, False or None)" +msgstr "Булова вредност (True, False или None)" + +msgid "Positive big integer" +msgstr "Велик позитиван цео број" + +msgid "Positive integer" +msgstr "Позитиван цео број" + +msgid "Positive small integer" +msgstr "Позитиван мали цео број" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Слаг са макс. дужином %(max_length)s" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Вредност \"%(value)s\" нема исправан формат. Мора бити у формату ЧЧ:ММ[:сс[." +"uuuuuu]] ." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Вредност \"%(value)s\" има исправан формат (ЧЧ:ММ[:сс[.uuuuuu]]) али то није " +"исправно време." + +msgid "Time" +msgstr "Време" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Сирови бинарни подаци" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" није исправан UUID." + +msgid "Universally unique identifier" +msgstr "Универзално јединствени идентификатор" + +msgid "File" +msgstr "Фајл" + +msgid "Image" +msgstr "Слика" + +msgid "A JSON object" +msgstr "JSON објекат" + +msgid "Value must be valid JSON." +msgstr "Вредност мора бити исправан JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(model)s инстанца са вредношћу %(value)r у пољу %(field)s не постоји." + +msgid "Foreign Key (type determined by related field)" +msgstr "Спољни кључ (тип је одређен асоцираном колоном)" + +msgid "One-to-one relationship" +msgstr "Релација један на један" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Релација %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Релације %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Релација више на више" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Ово поље се мора попунити." + +msgid "Enter a whole number." +msgstr "Унесите цео број." + +msgid "Enter a valid date." +msgstr "Унесите исправан датум." + +msgid "Enter a valid time." +msgstr "Унесите исправно време" + +msgid "Enter a valid date/time." +msgstr "Унесите исправан датум/време." + +msgid "Enter a valid duration." +msgstr "Унесите исправан временски интервал." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Број дана мора бити између {min_days} и {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Фајл није пребачен. Проверите тип енкодирања на форми." + +msgid "No file was submitted." +msgstr "Фајл није пребачен." + +msgid "The submitted file is empty." +msgstr "Пребачени фајл је празан." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Име фајла не може имати више од %(max)d карактера (тренутно има %(length)d)." +msgstr[1] "" +"Име фајла не може имати више од %(max)d карактера (тренутно има %(length)d)." +msgstr[2] "" +"Име фајла не може имати више од %(max)d карактера (тренутно има %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Може се само послати фајл или избрисати, не оба." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Пребаците исправан фајл. Фајл који је пребачен или није слика, или је " +"оштећен." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"%(value)s није међу понуђеним вредностима. Одаберите једну од понуђених." + +msgid "Enter a list of values." +msgstr "Унесите листу вредности." + +msgid "Enter a complete value." +msgstr "Унесите комплетну вредност." + +msgid "Enter a valid UUID." +msgstr "Унесите исправан UUID." + +msgid "Enter a valid JSON." +msgstr "Унесите исправан JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Скривено поље %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"Подаци од ManagementForm недостају или су покварени. Поља која недостају: " +"%(field_names)s. Можда ће бити потребно да пријавите грешку ако се проблем " +"настави." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Молим проследите највише %(num)d форму." +msgstr[1] "Молим проследите највише %(num)d форме." +msgstr[2] "Молим проследите највише %(num)d форми." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Молим проследите најмање %(num)d форму." +msgstr[1] "Молим проследите најмање %(num)d форме." +msgstr[2] "Молим проследите најмање %(num)d форми." + +msgid "Order" +msgstr "Редослед" + +msgid "Delete" +msgstr "Обриши" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Исправите вредност за поље %(field)s - оно мора бити јединствено." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Исправите вредности за поља %(field)s - њихова комбинација мора бити " +"јединствена." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Иправите вредност за поље %(field_name)s, оно мора бити јединствено за " +"%(lookup)s у %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Исправите дуплиране вредности доле." + +msgid "The inline value did not match the parent instance." +msgstr "Директно унета вредност не одговара инстанци родитеља." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Одабрана вредност није међу понуђенима. Одаберите једну од понуђених." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" није исправна вредност." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"Време %(datetime)s се не може протумачити у временској зони " +"%(current_timezone)s; можда је двосмислено или не постоји." + +msgid "Clear" +msgstr "Очисти" + +msgid "Currently" +msgstr "Тренутно" + +msgid "Change" +msgstr "Измени" + +msgid "Unknown" +msgstr "Непознато" + +msgid "Yes" +msgstr "Да" + +msgid "No" +msgstr "Не" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "да,не,можда" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d бајт" +msgstr[1] "%(size)d бајта" +msgstr[2] "%(size)d бајтова" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "по п." + +msgid "a.m." +msgstr "пре п." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "поноћ" + +msgid "noon" +msgstr "подне" + +msgid "Monday" +msgstr "понедељак" + +msgid "Tuesday" +msgstr "уторак" + +msgid "Wednesday" +msgstr "среда" + +msgid "Thursday" +msgstr "четвртак" + +msgid "Friday" +msgstr "петак" + +msgid "Saturday" +msgstr "субота" + +msgid "Sunday" +msgstr "недеља" + +msgid "Mon" +msgstr "пон." + +msgid "Tue" +msgstr "уто." + +msgid "Wed" +msgstr "сре." + +msgid "Thu" +msgstr "чет." + +msgid "Fri" +msgstr "пет." + +msgid "Sat" +msgstr "суб." + +msgid "Sun" +msgstr "нед." + +msgid "January" +msgstr "јануар" + +msgid "February" +msgstr "фебруар" + +msgid "March" +msgstr "март" + +msgid "April" +msgstr "април" + +msgid "May" +msgstr "мај" + +msgid "June" +msgstr "јун" + +msgid "July" +msgstr "јул" + +msgid "August" +msgstr "август" + +msgid "September" +msgstr "септембар" + +msgid "October" +msgstr "октобар" + +msgid "November" +msgstr "новембар" + +msgid "December" +msgstr "децембар" + +msgid "jan" +msgstr "јан." + +msgid "feb" +msgstr "феб." + +msgid "mar" +msgstr "мар." + +msgid "apr" +msgstr "апр." + +msgid "may" +msgstr "мај." + +msgid "jun" +msgstr "јун." + +msgid "jul" +msgstr "јул." + +msgid "aug" +msgstr "ауг." + +msgid "sep" +msgstr "сеп." + +msgid "oct" +msgstr "окт." + +msgid "nov" +msgstr "нов." + +msgid "dec" +msgstr "дец." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Јан." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Феб." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Март" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Април" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Мај" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Јун" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Јул" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Септ." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Нов." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дец." + +msgctxt "alt. month" +msgid "January" +msgstr "Јануар" + +msgctxt "alt. month" +msgid "February" +msgstr "Фебруар" + +msgctxt "alt. month" +msgid "March" +msgstr "Март" + +msgctxt "alt. month" +msgid "April" +msgstr "Април" + +msgctxt "alt. month" +msgid "May" +msgstr "Мај" + +msgctxt "alt. month" +msgid "June" +msgstr "Јун" + +msgctxt "alt. month" +msgid "July" +msgstr "Јул" + +msgctxt "alt. month" +msgid "August" +msgstr "Август" + +msgctxt "alt. month" +msgid "September" +msgstr "Септембар" + +msgctxt "alt. month" +msgid "October" +msgstr "Октобар" + +msgctxt "alt. month" +msgid "November" +msgstr "Новембар" + +msgctxt "alt. month" +msgid "December" +msgstr "Децембар" + +msgid "This is not a valid IPv6 address." +msgstr "Ово није валидна IPv6 адреса." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "или" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d година" +msgstr[1] "%(num)d године" +msgstr[2] "%(num)d година" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d месец" +msgstr[1] "%(num)d месеца" +msgstr[2] "%(num)d месеци" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d недеља" +msgstr[1] "%(num)d недеље" +msgstr[2] "%(num)d недеља" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d дан" +msgstr[1] "%(num)d дана" +msgstr[2] "%(num)d дана" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d сат" +msgstr[1] "%(num)d сата" +msgstr[2] "%(num)d сати" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d минут" +msgstr[1] "%(num)d минута" +msgstr[2] "%(num)d минута" + +msgid "Forbidden" +msgstr "Забрањено" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF верификација није прошла. Захтев одбијен." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Ова порука је приказана јер овај HTTPS сајт захтева да \"Referer header\" " +"буде послат од стране вашег интернет прегледача, што тренутно није случај. " +"Поменуто заглавље је потребно из безбедоносних разлога, да би се осигурало " +"да ваш прегледач није под контролом трећих лица." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Ако сте подесили интернет прегледач да не шаље \"Referer\" заглавља, поново " +"их укључите, барем за овај сајт, или за HTTPS конекције, или за \"same-" +"origin\" захтеве." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Ако користите таг или " +"\"Referrer-Policy: no-referrer\" заглавље, молимо да их уклоните. CSRF " +"заштита захтева \"Referer\" заглавље да би се обавила стриктна \"referrer\" " +"провера. Уколико вас брине приватност, користите алтернативе као за линкове ка другим сајтовима." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Ова порука је приказана јер овај сајт захтева CSRF куки када се прослеђују " +"подаци из форми. Овај куки је потребан из сигурносних разлога, да би се " +"осигурало да ваш претраживач није под контролом трећих лица." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Ако је ваш интернет прегедач подешен да онемогући колачиће, молимо да их " +"укључите, барем за овај сајт, или за \"same-origin\" захтеве." + +msgid "More information is available with DEBUG=True." +msgstr "Више информација је доступно са DEBUG=True." + +msgid "No year specified" +msgstr "Година није назначена" + +msgid "Date out of range" +msgstr "Датум ван опсега" + +msgid "No month specified" +msgstr "Месец није назначен" + +msgid "No day specified" +msgstr "Дан није назначен" + +msgid "No week specified" +msgstr "Недеља није назначена" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Недоступни објекти %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Опција „future“ није доступна за „%(verbose_name_plural)s“ јер " +"%(class_name)s.allow_future има вредност False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Неисправан датум „%(datestr)s“ за формат „%(format)s“" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Ниједан објекат класе %(verbose_name)s није нађен датим упитом." + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Страница није последња, нити може бити конвертована у тип \"int\"." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Неисправна страна (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Празна листа и „%(class_name)s.allow_empty“ има вредност False." + +msgid "Directory indexes are not allowed here." +msgstr "Индекси директоријума нису дозвољени овде." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s“ не постоји" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Индекс директоријума %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Инсталација је прошла успешно. Честитке!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Погледајте напомене уз издање за Ђанго " +"%(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Ова страна је приказана јер је DEBUG=True у вашим подешавањима и нисте конфигурисали " +"ниједан URL." + +msgid "Django Documentation" +msgstr "Ђанго документација" + +msgid "Topics, references, & how-to’s" +msgstr "Теме, референце, & како-да" + +msgid "Tutorial: A Polling App" +msgstr "Упутство: апликација за гласање" + +msgid "Get started with Django" +msgstr "Почните са Ђангом" + +msgid "Django Community" +msgstr "Ђанго заједница" + +msgid "Connect, get help, or contribute" +msgstr "Повежите се, потражите помоћ или дајте допринос" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sr/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/sr/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sr/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0e35064395c24ecb830b81fe01a9994f24f2fee GIT binary patch literal 193 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, 2020 +# Danijela Popović, 2022 +# Igor Jerosimić, 2019-2021,2023-2024 +# Jannis Leidel , 2011 +# Janos Guljas , 2011-2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Igor Jerosimić, 2019-2021,2023-2024\n" +"Language-Team: Serbian (Latin) (http://app.transifex.com/django/django/language/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: conf/global_settings.py:52 +msgid "Afrikaans" +msgstr "afrikanski" + +#: conf/global_settings.py:53 +msgid "Arabic" +msgstr "arapski" + +#: conf/global_settings.py:54 +msgid "Algerian Arabic" +msgstr "Alžirski arapski" + +#: conf/global_settings.py:55 +msgid "Asturian" +msgstr "asturijski" + +#: conf/global_settings.py:56 +msgid "Azerbaijani" +msgstr "azerbejdžanski" + +#: conf/global_settings.py:57 +msgid "Bulgarian" +msgstr "bugarski" + +#: conf/global_settings.py:58 +msgid "Belarusian" +msgstr "beloruski" + +#: conf/global_settings.py:59 +msgid "Bengali" +msgstr "bengalski" + +#: conf/global_settings.py:60 +msgid "Breton" +msgstr "bretonski" + +#: conf/global_settings.py:61 +msgid "Bosnian" +msgstr "bosanski" + +#: conf/global_settings.py:62 +msgid "Catalan" +msgstr "katalonski" + +#: conf/global_settings.py:63 +msgid "Central Kurdish (Sorani)" +msgstr "centralnokurdski (sorani)" + +#: conf/global_settings.py:64 +msgid "Czech" +msgstr "češki" + +#: conf/global_settings.py:65 +msgid "Welsh" +msgstr "velški" + +#: conf/global_settings.py:66 +msgid "Danish" +msgstr "danski" + +#: conf/global_settings.py:67 +msgid "German" +msgstr "nemački" + +#: conf/global_settings.py:68 +msgid "Lower Sorbian" +msgstr "donjolužičkosrpski" + +#: conf/global_settings.py:69 +msgid "Greek" +msgstr "grčki" + +#: conf/global_settings.py:70 +msgid "English" +msgstr "engleski" + +#: conf/global_settings.py:71 +msgid "Australian English" +msgstr "australijski engleski" + +#: conf/global_settings.py:72 +msgid "British English" +msgstr "britanski engleski" + +#: conf/global_settings.py:73 +msgid "Esperanto" +msgstr "esperanto" + +#: conf/global_settings.py:74 +msgid "Spanish" +msgstr "španski" + +#: conf/global_settings.py:75 +msgid "Argentinian Spanish" +msgstr "argentinski španski" + +#: conf/global_settings.py:76 +msgid "Colombian Spanish" +msgstr "kolumbijski španski" + +#: conf/global_settings.py:77 +msgid "Mexican Spanish" +msgstr "meksički španski" + +#: conf/global_settings.py:78 +msgid "Nicaraguan Spanish" +msgstr "nikaragvanski španski" + +#: conf/global_settings.py:79 +msgid "Venezuelan Spanish" +msgstr "venecuelanski španski" + +#: conf/global_settings.py:80 +msgid "Estonian" +msgstr "estonski" + +#: conf/global_settings.py:81 +msgid "Basque" +msgstr "baskijski" + +#: conf/global_settings.py:82 +msgid "Persian" +msgstr "persijski" + +#: conf/global_settings.py:83 +msgid "Finnish" +msgstr "finski" + +#: conf/global_settings.py:84 +msgid "French" +msgstr "francuski" + +#: conf/global_settings.py:85 +msgid "Frisian" +msgstr "frizijski" + +#: conf/global_settings.py:86 +msgid "Irish" +msgstr "irski" + +#: conf/global_settings.py:87 +msgid "Scottish Gaelic" +msgstr "škotski galski" + +#: conf/global_settings.py:88 +msgid "Galician" +msgstr "galski" + +#: conf/global_settings.py:89 +msgid "Hebrew" +msgstr "hebrejski" + +#: conf/global_settings.py:90 +msgid "Hindi" +msgstr "hindu" + +#: conf/global_settings.py:91 +msgid "Croatian" +msgstr "hrvatski" + +#: conf/global_settings.py:92 +msgid "Upper Sorbian" +msgstr "gornjolužičkosrpski" + +#: conf/global_settings.py:93 +msgid "Hungarian" +msgstr "mađarski" + +#: conf/global_settings.py:94 +msgid "Armenian" +msgstr "jermenski" + +#: conf/global_settings.py:95 +msgid "Interlingua" +msgstr "interlingva" + +#: conf/global_settings.py:96 +msgid "Indonesian" +msgstr "indonežanski" + +#: conf/global_settings.py:97 +msgid "Igbo" +msgstr "Igbo" + +#: conf/global_settings.py:98 +msgid "Ido" +msgstr "ido" + +#: conf/global_settings.py:99 +msgid "Icelandic" +msgstr "islandski" + +#: conf/global_settings.py:100 +msgid "Italian" +msgstr "italijanski" + +#: conf/global_settings.py:101 +msgid "Japanese" +msgstr "japanski" + +#: conf/global_settings.py:102 +msgid "Georgian" +msgstr "gruzijski" + +#: conf/global_settings.py:103 +msgid "Kabyle" +msgstr "kabilski" + +#: conf/global_settings.py:104 +msgid "Kazakh" +msgstr "kazaški" + +#: conf/global_settings.py:105 +msgid "Khmer" +msgstr "kambodijski" + +#: conf/global_settings.py:106 +msgid "Kannada" +msgstr "kanada" + +#: conf/global_settings.py:107 +msgid "Korean" +msgstr "korejski" + +#: conf/global_settings.py:108 +msgid "Kyrgyz" +msgstr "Kirgiski" + +#: conf/global_settings.py:109 +msgid "Luxembourgish" +msgstr "luksemburški" + +#: conf/global_settings.py:110 +msgid "Lithuanian" +msgstr "litvanski" + +#: conf/global_settings.py:111 +msgid "Latvian" +msgstr "latvijski" + +#: conf/global_settings.py:112 +msgid "Macedonian" +msgstr "makedonski" + +#: conf/global_settings.py:113 +msgid "Malayalam" +msgstr "malajalamski" + +#: conf/global_settings.py:114 +msgid "Mongolian" +msgstr "mongolski" + +#: conf/global_settings.py:115 +msgid "Marathi" +msgstr "marathi" + +#: conf/global_settings.py:116 +msgid "Malay" +msgstr "malajski" + +#: conf/global_settings.py:117 +msgid "Burmese" +msgstr "burmanski" + +#: conf/global_settings.py:118 +msgid "Norwegian Bokmål" +msgstr "norveški književni" + +#: conf/global_settings.py:119 +msgid "Nepali" +msgstr "nepalski" + +#: conf/global_settings.py:120 +msgid "Dutch" +msgstr "holandski" + +#: conf/global_settings.py:121 +msgid "Norwegian Nynorsk" +msgstr "norveški novi" + +#: conf/global_settings.py:122 +msgid "Ossetic" +msgstr "osetinski" + +#: conf/global_settings.py:123 +msgid "Punjabi" +msgstr "Pandžabi" + +#: conf/global_settings.py:124 +msgid "Polish" +msgstr "poljski" + +#: conf/global_settings.py:125 +msgid "Portuguese" +msgstr "portugalski" + +#: conf/global_settings.py:126 +msgid "Brazilian Portuguese" +msgstr "brazilski portugalski" + +#: conf/global_settings.py:127 +msgid "Romanian" +msgstr "rumunski" + +#: conf/global_settings.py:128 +msgid "Russian" +msgstr "ruski" + +#: conf/global_settings.py:129 +msgid "Slovak" +msgstr "slovački" + +#: conf/global_settings.py:130 +msgid "Slovenian" +msgstr "slovenački" + +#: conf/global_settings.py:131 +msgid "Albanian" +msgstr "albanski" + +#: conf/global_settings.py:132 +msgid "Serbian" +msgstr "srpski" + +#: conf/global_settings.py:133 +msgid "Serbian Latin" +msgstr "srpski (latinica)" + +#: conf/global_settings.py:134 +msgid "Swedish" +msgstr "švedski" + +#: conf/global_settings.py:135 +msgid "Swahili" +msgstr "svahili" + +#: conf/global_settings.py:136 +msgid "Tamil" +msgstr "tamilski" + +#: conf/global_settings.py:137 +msgid "Telugu" +msgstr "telugu" + +#: conf/global_settings.py:138 +msgid "Tajik" +msgstr "Tadžiki" + +#: conf/global_settings.py:139 +msgid "Thai" +msgstr "tajlandski" + +#: conf/global_settings.py:140 +msgid "Turkmen" +msgstr "Turkmenski" + +#: conf/global_settings.py:141 +msgid "Turkish" +msgstr "turski" + +#: conf/global_settings.py:142 +msgid "Tatar" +msgstr "tatarski" + +#: conf/global_settings.py:143 +msgid "Udmurt" +msgstr "udmurtski" + +#: conf/global_settings.py:144 +msgid "Uyghur" +msgstr "Ujgur" + +#: conf/global_settings.py:145 +msgid "Ukrainian" +msgstr "ukrajinski" + +#: conf/global_settings.py:146 +msgid "Urdu" +msgstr "Urdu" + +#: conf/global_settings.py:147 +msgid "Uzbek" +msgstr "Uzbekistanski" + +#: conf/global_settings.py:148 +msgid "Vietnamese" +msgstr "vijetnamski" + +#: conf/global_settings.py:149 +msgid "Simplified Chinese" +msgstr "novokineski" + +#: conf/global_settings.py:150 +msgid "Traditional Chinese" +msgstr "starokineski" + +#: contrib/messages/apps.py:15 +msgid "Messages" +msgstr "Poruke" + +#: contrib/sitemaps/apps.py:8 +msgid "Site Maps" +msgstr "Mape sajta" + +#: contrib/staticfiles/apps.py:9 +msgid "Static Files" +msgstr "Statičke datoteke" + +#: contrib/syndication/apps.py:7 +msgid "Syndication" +msgstr "Udruživanje sadržaja" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +#: core/paginator.py:30 +msgid "…" +msgstr "…" + +#: core/paginator.py:32 +msgid "That page number is not an integer" +msgstr "Zadati broj strane nije ceo broj" + +#: core/paginator.py:33 +msgid "That page number is less than 1" +msgstr "Zadati broj strane je manji od 1" + +#: core/paginator.py:34 +msgid "That page contains no results" +msgstr "Tražena strana ne sadrži rezultate" + +#: core/validators.py:22 +msgid "Enter a valid value." +msgstr "Unesite ispravnu vrednost." + +#: core/validators.py:70 +msgid "Enter a valid domain name." +msgstr "Unesite ispravno ime domena." + +#: core/validators.py:104 forms/fields.py:759 +msgid "Enter a valid URL." +msgstr "Unesite ispravan URL." + +#: core/validators.py:165 +msgid "Enter a valid integer." +msgstr "Unesite ispravan ceo broj." + +#: core/validators.py:176 +msgid "Enter a valid email address." +msgstr "Unesite ispravnu e-mail adresu." + +#. Translators: "letters" means latin letters: a-z and A-Z. +#: core/validators.py:259 +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "Unesite isrpavan „slag“, koji se sastoji od slova, brojki, donjih crta ili cirtica." + +#: core/validators.py:267 +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or" +" hyphens." +msgstr "Unesite ispravan \"slag\", koji se sastoji od Unikod slova, brojki, donjih crta ili crtica." + +#: core/validators.py:327 core/validators.py:336 core/validators.py:350 +#: db/models/fields/__init__.py:2219 +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Unesite ispravnu adresu %(protocol)s." + +#: core/validators.py:329 +msgid "IPv4" +msgstr "IPv4" + +#: core/validators.py:338 utils/ipv6.py:30 +msgid "IPv6" +msgstr "IPv6" + +#: core/validators.py:352 +msgid "IPv4 or IPv6" +msgstr "IPv4 ili IPv6" + +#: core/validators.py:341 +msgid "Enter only digits separated by commas." +msgstr "Unesite samo brojke razdvojene zapetama." + +#: core/validators.py:347 +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Ovo polje mora da bude %(limit_value)s (trenutno ima %(show_value)s)." + +#: core/validators.py:382 +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Ova vrednost mora da bude manja od %(limit_value)s. ili tačno toliko." + +#: core/validators.py:391 +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Ova vrednost mora biti veća od %(limit_value)s ili tačno toliko." + +#: core/validators.py:400 +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Ova vrednost mora da umnožak veličine koraka %(limit_value)s." + +#: core/validators.py:407 +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "Uverite se da je ova vrednost višestruka od veličine koraka %(limit_value)s, počevši od %(offset)s, npr. %(offset)s, %(valid_value1)s, %(valid_value2)s, itd." + +#: core/validators.py:439 +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "Ovo polje mora da ima najmanje %(limit_value)d karakter (trenutno ima %(show_value)d)." +msgstr[1] "Ovo polje mora da ima najmanje %(limit_value)d karaktera (trenutno ima %(show_value)d)." +msgstr[2] "Ovo polje mora da ima %(limit_value)d najmanje karaktera (trenutno ima %(show_value)d )." + +#: core/validators.py:457 +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "Ovo polje ne sme da ima više od %(limit_value)d karaktera (trenutno ima %(show_value)d)." +msgstr[1] "Ovo polje ne sme da ima više od %(limit_value)d karaktera (trenutno ima %(show_value)d)." +msgstr[2] "Ovo polje ne sme da ima više od %(limit_value)d karaktera (trenutno ima %(show_value)d)." + +#: core/validators.py:480 forms/fields.py:354 forms/fields.py:393 +msgid "Enter a number." +msgstr "Unesite broj." + +#: core/validators.py:482 +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Ukupno ne može biti više od %(max)s cifre." +msgstr[1] "Ukupno ne može biti više od %(max)s cifre." +msgstr[2] "Ukupno ne može biti više od %(max)s cifara." + +#: core/validators.py:487 +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Ne može biti više od %(max)s decimale." +msgstr[1] "Ne može biti više od %(max)s decimale." +msgstr[2] "Ne može biti više od %(max)s decimala." + +#: core/validators.py:492 +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Ne može biti više od %(max)s cifre pre decimalnog zapisa." +msgstr[1] "Ne može biti više od %(max)s cifre pre decimalnog zapisa." +msgstr[2] "Ne može biti više od %(max)s cifara pre decimalnog zapisa." + +#: core/validators.py:563 +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "Ekstenzija datoteke \"%(extension)s\" nije dozvoljena. Dozvoljene su sledeće ekstenzije: %(allowed_extensions)s." + +#: core/validators.py:624 +msgid "Null characters are not allowed." +msgstr "'Null' karakteri nisu dozvoljeni." + +#: db/models/base.py:1465 forms/models.py:902 +msgid "and" +msgstr "i" + +#: db/models/base.py:1467 +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s sa poljem %(field_labels)s već postoji." + +#: db/models/constraints.py:20 +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Ograničenje „%(name)s“ je prekršeno." + +#: db/models/fields/__init__.py:128 +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Vrednost %(value)r nije validna." + +#: db/models/fields/__init__.py:129 +msgid "This field cannot be null." +msgstr "Ovo polje ne može da ostane prazno." + +#: db/models/fields/__init__.py:130 +msgid "This field cannot be blank." +msgstr "Ovo polje ne može da ostane prazno." + +#: db/models/fields/__init__.py:131 +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s sa ovom vrednošću %(field_label)s već postoji." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#: db/models/fields/__init__.py:135 +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "%(field_label)s mora biti jedinstven(a) za %(date_field_label)s %(lookup_type)s." + +#: db/models/fields/__init__.py:174 +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Polje tipa: %(field_type)s" + +#: db/models/fields/__init__.py:1157 +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Vrednost \"%(value)s\" mora biti True ili False." + +#: db/models/fields/__init__.py:1158 +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "\"%(value)s\" vrednost mora biti True, False ili None." + +#: db/models/fields/__init__.py:1160 +msgid "Boolean (Either True or False)" +msgstr "Bulova vrednost (True ili False)" + +#: db/models/fields/__init__.py:1210 +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "String (najviše %(max_length)s znakova)" + +#: db/models/fields/__init__.py:1212 +msgid "String (unlimited)" +msgstr "String (neograničeno)" + +#: db/models/fields/__init__.py:1316 +msgid "Comma-separated integers" +msgstr "Celi brojevi razdvojeni zapetama" + +#: db/models/fields/__init__.py:1417 +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "Vrednost \"%(value)s\" nema ispravan format datuma. Mora biti u formatu GGGG-MM-DD." + +#: db/models/fields/__init__.py:1421 db/models/fields/__init__.py:1556 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "Vrednost “%(value)s” ima odgovarajući format (GGGG-MM-DD), ali nije validan datum." + +#: db/models/fields/__init__.py:1425 +msgid "Date (without time)" +msgstr "Datum (bez vremena)" + +#: db/models/fields/__init__.py:1552 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD " +"HH:MM[:ss[.uuuuuu]][TZ] format." +msgstr "Vrednost “%(value)s” je u nevažećem formatu. Mora se uneti u formatu YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#: db/models/fields/__init__.py:1560 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD " +"HH:MM[:ss[.uuuuuu]][TZ]) but it is an invalid date/time." +msgstr "Vrednost “%(value)s” je u odgovarajućem formatu (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]), ali nije validna vrednost za datum i vreme." + +#: db/models/fields/__init__.py:1565 +msgid "Date (with time)" +msgstr "Datum (sa vremenom)" + +#: db/models/fields/__init__.py:1689 +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Vrednost “%(value)s” mora biti decimalni broj." + +#: db/models/fields/__init__.py:1691 +msgid "Decimal number" +msgstr "Decimalni broj" + +#: db/models/fields/__init__.py:1852 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] " +"[[HH:]MM:]ss[.uuuuuu] format." +msgstr "Vrednost “%(value)s” nije u odgovarajućem formatu. Mora biti u formatu [DD] [[HH:]MM:]ss[.uuuuuu]." + +#: db/models/fields/__init__.py:1856 +msgid "Duration" +msgstr "Vremenski interval" + +#: db/models/fields/__init__.py:1908 +msgid "Email address" +msgstr "Imejl adresa" + +#: db/models/fields/__init__.py:1933 +msgid "File path" +msgstr "Putanja fajla" + +#: db/models/fields/__init__.py:2011 +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Vrednost “%(value)s” value mora biti tipa float." + +#: db/models/fields/__init__.py:2013 +msgid "Floating point number" +msgstr "Broj sa pokrenom zapetom" + +#: db/models/fields/__init__.py:2053 +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Vrednost “%(value)s” mora biti ceo broj." + +#: db/models/fields/__init__.py:2055 +msgid "Integer" +msgstr "Ceo broj" + +#: db/models/fields/__init__.py:2151 +msgid "Big (8 byte) integer" +msgstr "Veliki ceo broj" + +#: db/models/fields/__init__.py:2168 +msgid "Small integer" +msgstr "Mali ceo broj" + +#: db/models/fields/__init__.py:2176 +msgid "IPv4 address" +msgstr "IPv4 adresa" + +#: db/models/fields/__init__.py:2207 +msgid "IP address" +msgstr "IP adresa" + +#: db/models/fields/__init__.py:2300 db/models/fields/__init__.py:2301 +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Vrednost “%(value)s” mora biti None, True ili False." + +#: db/models/fields/__init__.py:2303 +msgid "Boolean (Either True, False or None)" +msgstr "Bulova vrednost (True, False ili None)" + +#: db/models/fields/__init__.py:2354 +msgid "Positive big integer" +msgstr "Velik pozitivan celi broj" + +#: db/models/fields/__init__.py:2369 +msgid "Positive integer" +msgstr "Pozitivan ceo broj" + +#: db/models/fields/__init__.py:2384 +msgid "Positive small integer" +msgstr "Pozitivan mali ceo broj" + +#: db/models/fields/__init__.py:2400 +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slag (ne duži od %(max_length)s)" + +#: db/models/fields/__init__.py:2436 +msgid "Text" +msgstr "Tekst" + +#: db/models/fields/__init__.py:2511 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "Vrednost “%(value)s” nije u odgovarajućem formatu. Mora biti u formatu HH:MM[:ss[.uuuuuu]]." + +#: db/models/fields/__init__.py:2515 +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "Vrednost “%(value)s” je u odgovarajućem formatu (HH:MM[:ss[.uuuuuu]]), ali nije validna vrednost za vreme." + +#: db/models/fields/__init__.py:2519 +msgid "Time" +msgstr "Vreme" + +#: db/models/fields/__init__.py:2627 +msgid "URL" +msgstr "URL" + +#: db/models/fields/__init__.py:2651 +msgid "Raw binary data" +msgstr "Sirovi binarni podaci" + +#: db/models/fields/__init__.py:2716 +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "Vrednost “%(value)s” nije validan UUID (jedinstveni ID)." + +#: db/models/fields/__init__.py:2718 +msgid "Universally unique identifier" +msgstr "Univerzalno jedinstveni identifikator" + +#: db/models/fields/files.py:232 +msgid "File" +msgstr "Fajl" + +#: db/models/fields/files.py:393 +msgid "Image" +msgstr "Slika" + +#: db/models/fields/json.py:26 +msgid "A JSON object" +msgstr "JSON objekat" + +#: db/models/fields/json.py:28 +msgid "Value must be valid JSON." +msgstr "Vrednost mora biti ispravni JSON." + +#: db/models/fields/related.py:939 +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Instanca modela %(model)s sa vrednošću %(field)s %(value)r ne postoji." + +#: db/models/fields/related.py:941 +msgid "Foreign Key (type determined by related field)" +msgstr "Strani ključ (tip određuje referentno polje)" + +#: db/models/fields/related.py:1235 +msgid "One-to-one relationship" +msgstr "Relacija jedan na jedan" + +#: db/models/fields/related.py:1292 +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Relacija %(from)s-%(to)s" + +#: db/models/fields/related.py:1294 +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Relacije %(from)s-%(to)s" + +#: db/models/fields/related.py:1342 +msgid "Many-to-many relationship" +msgstr "Relacija više na više" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +#: forms/boundfield.py:185 +msgid ":?.!" +msgstr ":?.!" + +#: forms/fields.py:94 +msgid "This field is required." +msgstr "Ovo polje se mora popuniti." + +#: forms/fields.py:303 +msgid "Enter a whole number." +msgstr "Unesite ceo broj." + +#: forms/fields.py:474 forms/fields.py:1246 +msgid "Enter a valid date." +msgstr "Unesite ispravan datum." + +#: forms/fields.py:497 forms/fields.py:1247 +msgid "Enter a valid time." +msgstr "Unesite ispravno vreme" + +#: forms/fields.py:524 +msgid "Enter a valid date/time." +msgstr "Unesite ispravan datum/vreme." + +#: forms/fields.py:558 +msgid "Enter a valid duration." +msgstr "Unesite ispravno trajanje." + +#: forms/fields.py:559 +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Broj dana mora biti između {min_days} i {max_days}." + +#: forms/fields.py:628 +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Fajl nije prebačen. Proverite tip enkodiranja formulara." + +#: forms/fields.py:629 +msgid "No file was submitted." +msgstr "Fajl nije prebačen." + +#: forms/fields.py:630 +msgid "The submitted file is empty." +msgstr "Prebačen fajl je prazan." + +#: forms/fields.py:632 +#, python-format +msgid "" +"Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "Ime fajla ne može imati više od %(max)d karaktera (trenutno ima %(length)d)." +msgstr[1] "Ime fajla ne može imati više od %(max)d karaktera (trenutno ima %(length)d)." +msgstr[2] "Ime fajla ne može imati više od %(max)d karaktera (trenutno ima %(length)d)." + +#: forms/fields.py:637 +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Može se samo poslati fajl ili izbrisati, ne oba." + +#: forms/fields.py:701 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "Prebacite ispravan fajl. Fajl koji je prebačen ili nije slika, ili je oštećen." + +#: forms/fields.py:868 forms/fields.py:954 forms/models.py:1581 +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "%(value)s nije među ponuđenim vrednostima. Odaberite jednu od ponuđenih." + +#: forms/fields.py:956 forms/fields.py:1075 forms/models.py:1579 +msgid "Enter a list of values." +msgstr "Unesite listu vrednosti." + +#: forms/fields.py:1076 +msgid "Enter a complete value." +msgstr "Unesite kompletnu vrednost." + +#: forms/fields.py:1315 +msgid "Enter a valid UUID." +msgstr "Unesite ispravan UUID." + +#: forms/fields.py:1345 +msgid "Enter a valid JSON." +msgstr "Unesite ispravan JSON." + +#. Translators: This is the default suffix added to form field labels +#: forms/forms.py:94 +msgid ":" +msgstr ":" + +#: forms/forms.py:231 +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Skriveno polje %(name)s) %(error)s" + +#: forms/formsets.py:61 +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "Podaci od ManagementForm nedostaju ili su pokvareni. Polja koja nedostaju: %(field_names)s. Možda će biti potrebno da prijavite grešku ako se problem nastavi." + +#: forms/formsets.py:65 +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Molim prosledite najviše %(num)d formular." +msgstr[1] "Molim prosledite najviše %(num)d formulara." +msgstr[2] "Molim prosledite najviše %(num)d formulara." + +#: forms/formsets.py:70 +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] " Molim prosledite najmanje %(num)d formular." +msgstr[1] " Molim prosledite najmanje %(num)d formulara." +msgstr[2] " Molim prosledite najmanje %(num)d formulara." + +#: forms/formsets.py:484 forms/formsets.py:491 +msgid "Order" +msgstr "Redosled" + +#: forms/formsets.py:499 +msgid "Delete" +msgstr "Obriši" + +#: forms/models.py:895 +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Ispravite dupliran sadržaj za polja: %(field)s." + +#: forms/models.py:900 +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Ispravite dupliran sadržaj za polja: %(field)s, koji mora da bude jedinstven." + +#: forms/models.py:907 +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "Ispravite dupliran sadržaj za polja: %(field_name)s, koji mora da bude jedinstven za %(lookup)s u %(date_field)s." + +#: forms/models.py:916 +msgid "Please correct the duplicate values below." +msgstr "Ispravite duplirane vrednosti dole." + +#: forms/models.py:1353 +msgid "The inline value did not match the parent instance." +msgstr "Direktno uneta vrednost ne odgovara instanci roditelja." + +#: forms/models.py:1444 +msgid "" +"Select a valid choice. That choice is not one of the available choices." +msgstr "Odabrana vrednost nije među ponuđenima. Odaberite jednu od ponuđenih." + +#: forms/models.py:1583 +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" nije ispravna vrednost." + +#: forms/utils.py:227 +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "Vreme %(datetime)s se ne može protumačiti u vremenskoj zoni %(current_timezone)s; možda je dvosmisleno ili ne postoji." + +#: forms/widgets.py:457 +msgid "Clear" +msgstr "Očisti" + +#: forms/widgets.py:458 +msgid "Currently" +msgstr "Trenutno" + +#: forms/widgets.py:459 +msgid "Change" +msgstr "Izmeni" + +#: forms/widgets.py:796 +msgid "Unknown" +msgstr "Nepoznato" + +#: forms/widgets.py:797 +msgid "Yes" +msgstr "Da" + +#: forms/widgets.py:798 +msgid "No" +msgstr "Ne" + +#. Translators: Please do not add spaces around commas. +#: template/defaultfilters.py:875 +msgid "yes,no,maybe" +msgstr "da,ne,možda" + +#: template/defaultfilters.py:905 template/defaultfilters.py:922 +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bajt" +msgstr[1] "%(size)d bajta" +msgstr[2] "%(size)d bajtova" + +#: template/defaultfilters.py:924 +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#: template/defaultfilters.py:926 +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#: template/defaultfilters.py:928 +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#: template/defaultfilters.py:930 +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#: template/defaultfilters.py:932 +#, python-format +msgid "%s PB" +msgstr "%s PB" + +#: utils/dateformat.py:73 +msgid "p.m." +msgstr "po p." + +#: utils/dateformat.py:74 +msgid "a.m." +msgstr "pre p." + +#: utils/dateformat.py:79 +msgid "PM" +msgstr "PM" + +#: utils/dateformat.py:80 +msgid "AM" +msgstr "AM" + +#: utils/dateformat.py:152 +msgid "midnight" +msgstr "ponoć" + +#: utils/dateformat.py:154 +msgid "noon" +msgstr "podne" + +#: utils/dates.py:7 +msgid "Monday" +msgstr "ponedeljak" + +#: utils/dates.py:8 +msgid "Tuesday" +msgstr "utorak" + +#: utils/dates.py:9 +msgid "Wednesday" +msgstr "sreda" + +#: utils/dates.py:10 +msgid "Thursday" +msgstr "četvrtak" + +#: utils/dates.py:11 +msgid "Friday" +msgstr "petak" + +#: utils/dates.py:12 +msgid "Saturday" +msgstr "subota" + +#: utils/dates.py:13 +msgid "Sunday" +msgstr "nedelja" + +#: utils/dates.py:16 +msgid "Mon" +msgstr "pon." + +#: utils/dates.py:17 +msgid "Tue" +msgstr "uto." + +#: utils/dates.py:18 +msgid "Wed" +msgstr "sre." + +#: utils/dates.py:19 +msgid "Thu" +msgstr "čet." + +#: utils/dates.py:20 +msgid "Fri" +msgstr "pet." + +#: utils/dates.py:21 +msgid "Sat" +msgstr "sub." + +#: utils/dates.py:22 +msgid "Sun" +msgstr "ned." + +#: utils/dates.py:25 +msgid "January" +msgstr "januar" + +#: utils/dates.py:26 +msgid "February" +msgstr "februar" + +#: utils/dates.py:27 +msgid "March" +msgstr "mart" + +#: utils/dates.py:28 +msgid "April" +msgstr "april" + +#: utils/dates.py:29 +msgid "May" +msgstr "maj" + +#: utils/dates.py:30 +msgid "June" +msgstr "jun" + +#: utils/dates.py:31 +msgid "July" +msgstr "jul" + +#: utils/dates.py:32 +msgid "August" +msgstr "avgust" + +#: utils/dates.py:33 +msgid "September" +msgstr "septembar" + +#: utils/dates.py:34 +msgid "October" +msgstr "oktobar" + +#: utils/dates.py:35 +msgid "November" +msgstr "novembar" + +#: utils/dates.py:36 +msgid "December" +msgstr "decembar" + +#: utils/dates.py:39 +msgid "jan" +msgstr "jan." + +#: utils/dates.py:40 +msgid "feb" +msgstr "feb." + +#: utils/dates.py:41 +msgid "mar" +msgstr "mar." + +#: utils/dates.py:42 +msgid "apr" +msgstr "apr." + +#: utils/dates.py:43 +msgid "may" +msgstr "maj." + +#: utils/dates.py:44 +msgid "jun" +msgstr "jun." + +#: utils/dates.py:45 +msgid "jul" +msgstr "jul." + +#: utils/dates.py:46 +msgid "aug" +msgstr "aug." + +#: utils/dates.py:47 +msgid "sep" +msgstr "sep." + +#: utils/dates.py:48 +msgid "oct" +msgstr "okt." + +#: utils/dates.py:49 +msgid "nov" +msgstr "nov." + +#: utils/dates.py:50 +msgid "dec" +msgstr "dec." + +#: utils/dates.py:53 +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Jan." + +#: utils/dates.py:54 +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Feb." + +#: utils/dates.py:55 +msgctxt "abbrev. month" +msgid "March" +msgstr "Mart" + +#: utils/dates.py:56 +msgctxt "abbrev. month" +msgid "April" +msgstr "April" + +#: utils/dates.py:57 +msgctxt "abbrev. month" +msgid "May" +msgstr "Maj" + +#: utils/dates.py:58 +msgctxt "abbrev. month" +msgid "June" +msgstr "Jun" + +#: utils/dates.py:59 +msgctxt "abbrev. month" +msgid "July" +msgstr "Jul" + +#: utils/dates.py:60 +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Avg." + +#: utils/dates.py:61 +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sept." + +#: utils/dates.py:62 +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +#: utils/dates.py:63 +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Nov." + +#: utils/dates.py:64 +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dec." + +#: utils/dates.py:67 +msgctxt "alt. month" +msgid "January" +msgstr "Januar" + +#: utils/dates.py:68 +msgctxt "alt. month" +msgid "February" +msgstr "Februar" + +#: utils/dates.py:69 +msgctxt "alt. month" +msgid "March" +msgstr "Mart" + +#: utils/dates.py:70 +msgctxt "alt. month" +msgid "April" +msgstr "April" + +#: utils/dates.py:71 +msgctxt "alt. month" +msgid "May" +msgstr "Maj" + +#: utils/dates.py:72 +msgctxt "alt. month" +msgid "June" +msgstr "Jun" + +#: utils/dates.py:73 +msgctxt "alt. month" +msgid "July" +msgstr "Jul" + +#: utils/dates.py:74 +msgctxt "alt. month" +msgid "August" +msgstr "Avgust" + +#: utils/dates.py:75 +msgctxt "alt. month" +msgid "September" +msgstr "Septembar" + +#: utils/dates.py:76 +msgctxt "alt. month" +msgid "October" +msgstr "Oktobar" + +#: utils/dates.py:77 +msgctxt "alt. month" +msgid "November" +msgstr "Novembar" + +#: utils/dates.py:78 +msgctxt "alt. month" +msgid "December" +msgstr "Decembar" + +#: utils/ipv6.py:8 +msgid "This is not a valid IPv6 address." +msgstr "Ovo nije ispravna IPv6 adresa." + +#: utils/text.py:70 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s..." + +#: utils/text.py:255 +msgid "or" +msgstr "ili" + +#. Translators: This string is used as a separator between list elements +#: utils/text.py:274 utils/timesince.py:135 +msgid ", " +msgstr "," + +#: utils/timesince.py:8 +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d godina" +msgstr[1] "%(num)d godine" +msgstr[2] "%(num)d godina" + +#: utils/timesince.py:9 +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d mesec" +msgstr[1] "%(num)d meseca" +msgstr[2] "%(num)d meseci" + +#: utils/timesince.py:10 +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d nedelja" +msgstr[1] "%(num)d nedelje" +msgstr[2] "%(num)d nedelja" + +#: utils/timesince.py:11 +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dan" +msgstr[1] "%(num)d dana" +msgstr[2] "%(num)d dana" + +#: utils/timesince.py:12 +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d sat" +msgstr[1] "%(num)d sata" +msgstr[2] "%(num)d sati" + +#: utils/timesince.py:13 +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minut" +msgstr[1] "%(num)d minuta" +msgstr[2] "%(num)d minuta" + +#: views/csrf.py:29 +msgid "Forbidden" +msgstr "Zabranjeno" + +#: views/csrf.py:30 +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF verifikacija nije prošla. Zahtev odbijen." + +#: views/csrf.py:34 +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "Ova poruka je prikazana jer ovaj HTTPS sajt zahteva da \"Referer header\" bude poslat od strane vašeg internet pregledača, što trenutno nije slučaj. Pomenuto zaglavlje je potrebno iz bezbedonosnih razloga, da bi se osiguralo da vaš pregledač nije pod kontrolom trećih lica." + +#: views/csrf.py:40 +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "Ako ste podesili internet pregledač da ne šalje \"Referer\" zaglavlja, ponovo ih uključite, barem za ovaj sajt, ili za HTTPS konekcije, ili za \"same-origin\" zahteve." + +#: views/csrf.py:45 +msgid "" +"If you are using the tag or" +" including the “Referrer-Policy: no-referrer” header, please remove them. " +"The CSRF protection requires the “Referer” header to do strict referer " +"checking. If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "Ako koristite tag ili \"Referrer-Policy: no-referrer\" zaglavlje, molimo da ih uklonite. CSRF zaštita zahteva \"Referer\" zaglavlje da bi se obavila striktna \"referrer\" provera. Ukoliko vas brine privatnost, koristite alternative kao za linkove ka drugim sajtovima." + +#: views/csrf.py:54 +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "Ova poruka je prikazana jer ovaj sajt zahteva CSRF kuki kada se prosleđuju podaci iz formi. Ovaj kuki je potreban iz sigurnosnih razloga, da bi se osiguralo da vaš pretraživač nije pod kontrolom trećih lica." + +#: views/csrf.py:60 +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "Ako je vaš internet pregedač podešen da onemogući kolačiće, molimo da ih uključite, barem za ovaj sajt, ili za \"same-origin\" zahteve." + +#: views/csrf.py:66 +msgid "More information is available with DEBUG=True." +msgstr "Više informacija je dostupno sa DEBUG=True." + +#: views/generic/dates.py:44 +msgid "No year specified" +msgstr "Godina nije naznačena" + +#: views/generic/dates.py:64 views/generic/dates.py:115 +#: views/generic/dates.py:214 +msgid "Date out of range" +msgstr "Datum van opsega" + +#: views/generic/dates.py:94 +msgid "No month specified" +msgstr "Mesec nije naznačen" + +#: views/generic/dates.py:147 +msgid "No day specified" +msgstr "Dan nije naznačen" + +#: views/generic/dates.py:194 +msgid "No week specified" +msgstr "Nedelja nije naznačena" + +#: views/generic/dates.py:349 views/generic/dates.py:380 +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Nedostupni objekti %(verbose_name_plural)s" + +#: views/generic/dates.py:652 +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because " +"%(class_name)s.allow_future is False." +msgstr "Opcija „future“ nije dostupna za „%(verbose_name_plural)s“ jer %(class_name)s.allow_future ima vrednost False." + +#: views/generic/dates.py:692 +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Neispravan datum \"%(datestr)s\" za format \"%(format)s\"" + +#: views/generic/detail.py:56 +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Nijedan objekat klase %(verbose_name)s nije nađen datim upitom." + +#: views/generic/list.py:70 +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Stranica nije poslednja, niti može biti konvertovana u tip \"int\"." + +#: views/generic/list.py:77 +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Neispravna strana (%(page_number)s): %(message)s" + +#: views/generic/list.py:169 +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Prazna lista i „%(class_name)s.allow_empty“ ima vrednost False." + +#: views/static.py:48 +msgid "Directory indexes are not allowed here." +msgstr "Indeksi direktorijuma nisu dozvoljeni ovde." + +#: views/static.py:50 +#, python-format +msgid "“%(path)s” does not exist" +msgstr "„%(path)s“ ne postoji" + +#: views/static.py:67 views/templates/directory_index.html:8 +#: views/templates/directory_index.html:11 +#, python-format +msgid "Index of %(directory)s" +msgstr "Indeks direktorijuma %(directory)s" + +#: views/templates/default_urlconf.html:7 +#: views/templates/default_urlconf.html:220 +msgid "The install worked successfully! Congratulations!" +msgstr "Instalacija je prošla uspešno. Čestitke!" + +#: views/templates/default_urlconf.html:206 +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "Pogledajte napomene uz izdanje za Đango %(version)s" + +#: views/templates/default_urlconf.html:221 +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file " +"and you have not configured any URLs." +msgstr "Ova strana je prikazana jer je DEBUG=True u vašim podešavanjima i niste konfigurisali nijedan URL." + +#: views/templates/default_urlconf.html:229 +msgid "Django Documentation" +msgstr "Đango dokumentacija" + +#: views/templates/default_urlconf.html:230 +msgid "Topics, references, & how-to’s" +msgstr "Teme, reference, & kako-da" + +#: views/templates/default_urlconf.html:238 +msgid "Tutorial: A Polling App" +msgstr "Uputstvo: aplikacija za glasanje" + +#: views/templates/default_urlconf.html:239 +msgid "Get started with Django" +msgstr "Počnite sa Đangom" + +#: views/templates/default_urlconf.html:247 +msgid "Django Community" +msgstr "Đango zajednica" + +#: views/templates/default_urlconf.html:248 +msgid "Connect, get help, or contribute" +msgstr "Povežite se, potražite pomoć ili dajte doprinos" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de709ccdeceaa4211dbfe81d3b79ef0728c4a056 GIT binary patch literal 198 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_!vsFxJacWU< zOnGWfNq&q=esXDUYF-Y2mnPd`3BGcU6wK3=b&@)n0pZhlH>PO2Tq3B^o6f`tJ9 D?ngFz literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..90b12d8f13bb5ffa26945d6dbcddcf2c94bb2cd2 GIT binary patch literal 898 zcmZvaPmh{F7{)Syql&eyWm19VEB{92??PNx>}VDU>f-*z4q2` z(a*8hp7t9wd+Ln4DDHL$GxPl3d7iwGiCV1&L&lH4?)-O^Vg68293>(?kvE|eW)Oo} z#NrYv;W8>?fB>$b3a+9muA$nT!Q4+4ab&HNwT>I8fqBH^CTilA&GgQ)+7b#wVFI(V zI#^`%jDM?y%yqS$x-~FY3Y)Kct_I@qD?DB(3vQb^OR?!*M~Mvc}G^RG+i3`wlbD1$uTX| zbyU-}B||Q-w&CiRisfHhraRV*>t9SQAH1tiOt;!7A)0u|EpZO@9`}>mW_w g?e32Iu#WI{6@H{wHhD`X003KjIKVZ*8DKf~A3k#9TmS$7 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/formats.py new file mode 100644 index 0000000..0078895 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/sr_Latn/formats.py @@ -0,0 +1,44 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j. F Y." +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "j. F Y. H:i" +YEAR_MONTH_FORMAT = "F Y." +MONTH_DAY_FORMAT = "j. F" +SHORT_DATE_FORMAT = "j.m.Y." +SHORT_DATETIME_FORMAT = "j.m.Y. H:i" +FIRST_DAY_OF_WEEK = 1 + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y.", # '25.10.2006.' + "%d.%m.%y.", # '25.10.06.' + "%d. %m. %Y.", # '25. 10. 2006.' + "%d. %m. %y.", # '25. 10. 06.' + # "%d. %b %y.", # '25. Oct 06.' + # "%d. %B %y.", # '25. October 06.' + # "%d. %b '%y.", # '25. Oct '06.' + # "%d. %B '%y.", #'25. October '06.' + # "%d. %b %Y.", # '25. Oct 2006.' + # "%d. %B %Y.", # '25. October 2006.' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y. %H:%M:%S", # '25.10.2006. 14:30:59' + "%d.%m.%Y. %H:%M:%S.%f", # '25.10.2006. 14:30:59.000200' + "%d.%m.%Y. %H:%M", # '25.10.2006. 14:30' + "%d.%m.%y. %H:%M:%S", # '25.10.06. 14:30:59' + "%d.%m.%y. %H:%M:%S.%f", # '25.10.06. 14:30:59.000200' + "%d.%m.%y. %H:%M", # '25.10.06. 14:30' + "%d. %m. %Y. %H:%M:%S", # '25. 10. 2006. 14:30:59' + "%d. %m. %Y. %H:%M:%S.%f", # '25. 10. 2006. 14:30:59.000200' + "%d. %m. %Y. %H:%M", # '25. 10. 2006. 14:30' + "%d. %m. %y. %H:%M:%S", # '25. 10. 06. 14:30:59' + "%d. %m. %y. %H:%M:%S.%f", # '25. 10. 06. 14:30:59.000200' + "%d. %m. %y. %H:%M", # '25. 10. 06. 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..060ef0963c391dbcc5fbe3a0afa166683ea5f189 GIT binary patch literal 28006 zcmc(n3!EKgdH+X<5&{BpQ9&+4AY?b}*^qD%5&|UIY_6Mx>;{B1#yNXt&z?Q!%&aqW zHf$6{1-xJd3u;lYMHBB;DK=89R$VOiZ;M*|W2v`_ikH9lR>ezezrXi==bW>bkc8sj z^Wn{R=AC!md9Tm=ywCeAUq5!%n>>EopXPZd!&ygo-a}mf@C3zr-i4=lUIH(IYv2c< z()|MRpLgu3p0^a9122R%coEzKp9{YMPlAs_{_~DI&Az`FDt?pWh>O1gKAre?IKId6 zgN`3@ybqpEx=+GG;G>XYd*6Yx;CJCO;Sb&O-@wDU|1UTj9_D-A(eN0k@A>c<@GN*7 zEI_4O?zj%>c|SZBUJYp~uMQPI4(Gt@;9>A4cs#rns^0H`XTk@dp8pW)`F}#ae>jyf z<$)@v50!2KTmTol`|VKe8bZDIGN|(30G|bKa?kICKKFa!S@6qH_4#k8{12OJ-+LBR zKF@*2z*C{>zYr?Fl~C_(g-5{`LZz?6`7nce?+&Q?{1sICPeYaKb5Q;8MW}J{4XApZ zcn0sn)8U)po8cHN&`7ty-EcQNe;#82{u{g)UQ1=(0`G&%;1&vT3A_br9DW`?2OiO3 zc?MLwE`@x;TMt#g7^)v%fm*>FBoK9@k%dkee@ zmf>djDX1xQES*PDy$*Od+yrOCs~n3^^Qa1E!Pmkfd;?VapFy?PZ=v!#^lTe{BJAe= z45(yli(5D z&xI>tH>7A@0`=b8q3XHY@dHrx{0LP3A9wsTRDB5!JXATK z3zgq#kS6guUHl86#_bMx2uvVN>owq+@E!0N_yAOU{wvhH_zBc|XD_z%`Vz;@jzz}| zs$4fhAKnaA{trWqlY61+@dX$EFjP6d4wt}hy7-gN^}Js0&xBObtHK!G0T;j{&-1($ z@cD2Z+y&Rb&p_4xsPo-;gU564L)GhisCxB6m1{dx`-M>DZn*fDLACRZF8*~;>28Iq z;5*@J_HJ7k``MyWR8qpvL!uQ0czm;(zA&^h@n`PJ|lA zU5*z+y|)1#1-C!9Y(tx)xRkK+d%KkWDs$9of^!xy0X z`Gez6%e9b9+25cpC4(g!|X5qAlTX z;d9}dUOO)Wh-mU&3K1FJ-H@s5eHUunox0l2rwgI#wH2NQQx|_L)cF4}d>;HP)cE_h z;}0Bv>iA2?-$9>rhaemefoDL9>zxJF?j2C$q2Qh`gBstL!P#&f)OhNL`d;Ybt5D-3 zgG&Eu$2Y>mxPKeeIC>{k{vU<2;RB9efSO;Az!TuN;TiBZQ0;!|TAO|iR6AY{4~HXA z<;kGlztQoHQ0;n$yZ;xcbYFwdfIopM|1Y7+^*gBcJch+X-|c`4;0Aa&-0AoV$D5$? zc@tE9?tq#%AAqOAkHgvUt8fnd4pjP|!UgbGQ01As-hTf)sPC+SlGj_H#`O!K>QRNt z?=Bd__rbTrlNemP;NQaA;dy<08$Jj>3SYm`u7^FFJnuu?-wdg$cj;z3E?*1D%6l04 zaPH-H+^vL1bN?bZ4~{~$`rmtLaj5z~n@Okp^P%qh;Yl!odjC(| z{X1dE{U;pH?6>3Sb#M{!cS5zx=iw3X5vX?f4%B+{W2kv|1e10U9u1!bQ>ga70c!lc z9?pTc!E@nXxcG;l-v0_z`fotx{}?R8pFn;8%B_|G)VQfa)#Jrb>0b?%?iQ%$Z*}p1 z>EhoDHNWnGs>i)h?R&qA{}NRB9)T*)x8Z6g=J(*6xIgDg)-d=FQ2D(r8Lwf{{} z`R;+L$KCG!Ubu$)`{CK}nOE8GT;$jT)jpe`>TxAh{x5P2q3SgPl`eDlFNLb-jqd*S zQ00F!R6ch(z7J{~-vhPoeiAC(gHZWC;`lB2M(%$EHBMfBwf){(p~~|PsCIcbR6XAh z)z2Sw&;Jpsd=En9|1dlUeiN!aj@@S0trMa0>4uBpVkmt$gv#$WcszU;Tn0bp?tcxB zJ<7~CNzY?lkb*S<;pvrYU zRDZq!s=aT6N_RWd`*%U6sCT#HtQXn$u7oOg0M!m7Q1yKYRKB-B^~YP?{T?WJ@FA#i z@gUT9z5-RAZ$Xv&=kRnmJFxc)pvrX_RQgqpeU4k9#>IBW3RJloP~~_TRQtRJDxaI7 zzJD7$4c-M$f}et?z^}r~;BVmRaB0!%+uPyuxW66x@NXO+h9`6XD>x4xKWM+R1ggB3 zLXErCQ2DKg&xUmue?2tigDUsUQ1$t9sPgTGhr;`z+Vite^?C@Z++Txw|8d9=@qQ0g zzwISkjuEKzvEw*g$o;FJ5AT5*-(P~7r{9A&!(YNf;fXf34#y9bXMquGhoa@D`|iZilMpT~N>8@Ax6ddmKON_%X-7cbss1!0~gA zpNGo-A*lZPii>~L@iD0S`~a%FKXviHfa;fDL(PxFDpoH#1_dW~r?}hxkf$*1v-Gp;Ua}0qjyt@eb?@TVvB>rRY?+I@ssLuMGMtuJJ z6&I@0zY`uI=(pHCKMJbdj)vbiPwYR3aKA_C2%EW{4ZlPfC+N3|xV3OCJQ7Y2G|vy` z{y9*xO~3CEw5}{7^zuw?cRS%j1pQc^&F@g21zepC+kfhVw-R1LxQu6-gY7@r&A&^8 z=CFPjxc4t_%jXNkznk#qgiQqf9wnSgnk|GgxW1ZjDdDAr{C5e@I^4}q96MaTU+3O; zal%ppL(N;_o@;IFBOJkfFZ>U}Ji;dk`aM9n-dv#z!LJZf!jb7@AQWc1TWb2{uNynyRj?j7k(EQj7%a5mu*uAc|*g!-LI z_@plQX)NDC_yu7B;ds*NcM{)>j_wS;AaMK0~nx!%b28kqlH%*CG& z*GZU5IF9=`f9UwnBF~;h(C;C_@6FZZe|ELq-sG;Cj>gV?wR>05Yq)+Gb`hRW_!eO^ z;aK8#Lj7JtkbKea*MvDd+Xm+=g5ReJHxjhgxBtGw%?kIeIb8Q}-GI-BpK}SXflIkx z=kD)?_Yt(OJ)RH}wC3f%XOs3)!Z(TdKZNIUeKO&E!a9O}Zz3E*xPkCzgpGs~c{ZPL z1lRfRYwqF-;@`pbX9%Zr9l?{}r{I4P^n1O9_cAD1_qUkDTE>J^?N4QiM{leaeXw`|3>(Ti~A^CN!Y-%m%F$T_!dHexPOK3 zBz&159q(d-epe8FXs$SKar`ZO0pVia)9)~N6)c%M&-+I>m#~2NF2d7Yx~*^t@dd)G z2%Urv5cE5Zu#M;I2|wogvxKh_^4~m{$GMIl=E2Q`ZtmX>e@D2CkpB+n;vT|-d4%JO z;Qw>im&3!{weTLof41GflIt?zIKFW|{5!%I2`dP<5S~l;5#g^1s|fm?K-zz>m)_sN zKJI_u?oWW~=uLt9LF{l?Sz!#~UPl&_Q4-dItP)4*aAj0q+2_NQr}emGzFvvaEQkg}e`h5d=ELTjWHzs3 zET}cY&crXpVd_sRzj=2@6qrUc?`6Xky)wDLK`jY`(zva+Der;2nDX)IZ$^!JXUQ)G z;}pGlt$Ns-;kc1Zx@kSCSE5E1HXqvCw#RXl4Y!`^uJv$d7*?Clbklk?9tN#1>PC;! z%C3-N7RSv8+wORn`m0yy-}UC-KJ)Kp^Y6e4?0=O~DU5v6fIhV{ZQIFJm?Ux1nR;D5 z0%Xah-KTrY{dN7DHu`aKBpl4V<$d1rp`=m`f++Qt*NQ<@2_i1aVZw#KJPC@GL2vnJ zQmJ|QO;Tp?R+P~1ALWH~m`C-{zL{nXz3DA)lo^;H&61#|w5y_W&7|EGCdHsK!kgZT zAZ5^cD;Ro7Bh`B=!l+DoZ$+i-cU)-NqSMSJO60AG<61~o9jh2^Vd4)YjCcloZ%|9a z&KVzf*@sHCQB#dXsVV7-B-m9k1=}1a8Kn(V3c`GiDMV7qC~C9FD;l+OV5+sEK}|`x zvVTjjKSm=BRR+zh@rQy+Ei85WTS98YlnjbwON6&F$buR*TS=?Y6#n`~Qc~s}{c%DY zbb2d?gQ!fFR4wsV#}?I9==D?*3LhuqRHzhQ z6Eba+&Na285h|H$9W$c3y?o5BiqZz9%Z3B$t8%%* z`t{gGN6fW)a1Fwz^!~wTl|F@enbj|5 z4m_D+Xyu&pE@O9ysU{ic4+jhzR?e8NwH;9M2Zxy`gDk#&2W_GhEPY6oY`C-3*;a-F z&L`b}MrN_gOT#=i#i>>5m28Jy2WKu;IvnrJ6HF=E!Q|Lpzyr>C`GlbGFoGC81mCB9QC!BPR+E7M?u0$R`#Xr@HieCO2e!( z?efF!a`&VNqtH}Jwzn23$)uRYijifCD+qz}Lw5Y9Xd#1)o`JO3mp)~7h4`LRD$d}xh_QH@ zp6Sz5+R(NQOLAIkl(pcnW~Z!98i_RR)~GUwdhOHvv@PSxwk;P8R>~wDM96c)5EvdG z9S)1c=!ki}e~PD!=s z4U0)5NXEThZC+GMZ9|qYK&;YlHzho+h2|f${*0QjqTA)VdE1$~64_?QNhTOBSI$7UMKDI>?UE8beT% z#8hhx?IkEu#9}xYG*Yu?oUX47*_;q8PFq>coEubYuMXp+Y%h|!xzDVuqku+_vr3h> zI?)bg4Sf^t^wyw32F?Oh*37i*J_n24H9VFsOHUzQ-pV2Vs`PhN>rs(F$Jq6r2^_dN^Dxm zLdLIa-r<0%@y#I&1_>Xf$rHbr#5+^16BN6Wnqf4^&c7m=(QK3g`jZA2m9DdJWe6K7 zEwUb%&A7f}M2uo2sgRn5IAPLb;JDK?8k?MhFUd>|{G`jZW?*1*zv{1TkSrGmR^oDz z@mUYpqO8@&KJw_%3flkc}y` z4eX;E?DBNUo-6U$lWOznZD?G>=8fT0*0=lE%FrZw(8peO-2Tf|ovVmaY9rQ5RWY$J z!;wh!N@}J(qemKeF{CZBpw7DBL{PWi=aLwSnYNY!EznqTy8WvVAhL-?A@4AnrS+qk z6dPs6-zd9lzrr%YtR*At0OYMjlrc$}#tT_oK=e7mtid6(R-g9J!xa(f+^3q@W=^@d zhOKoL8*`Ad2psGPrT3gY&YQ@&o%Ve48_BOI<$Cj~?jFW(& z)5?8g>}{0h*1iZJ{fAWZaq@Bb(Nwm}FS!nk2d#tn>EeoE3K|fRo2oBF@|Qv_*AEx&9fv4{UI9*qfN2eI&apnqU$%? z^#tWhb_>%YrN$^rkfeYa_B0SZY83!P(azz@;P4dlEZH4gHV64a)2cedx1De|+aO~J zX1t*fw;PM48a-hFjUub*jD@C|G_=MzJHVKrX2_{wo8xJaO1t}Fe2tnNV?~?|H?zp! z&DWvaFl)!0E7B7sY8AYd%I!#zsu)%Gk<+v^%80p+&}%abZjM@^^d5sF$-+1mK zr$wZ7w9Zz#Ml^yI)!P#69F8lPmn1=qot>_@{hp*FUK(b9-~Y%zlHu)OhkkGh+$vXhgs5$F*wK~IfPIiKOH-4 zRAvorIB9#jdBYWvaYwtfj--lV#=;Q!FJYIoLr<>9~IMU5p^ z54kq-R6^Pa4W=NwjOsp~MU-*UBi?uVJ%)Ib9Wkbv+&t3OCEwI21sycpNK$q005$|~ zARes@BFwGYk8;oTS?DoKeN1<(J*fTkRT7kt4{?M&CLitt9BUA4PK~6h0Wtv5lpuER zN>E$kFZU5PQY-!CqoW>H4{vL!-bgZUYgKl8O)RVdEJ`UIGS2?robgpS>&Y~`5}sD0 zcqgew*}t;uaMi-zUPd~oH%*&rFUDd;5?Wc>fRowzh*5Iwwq*B7k_MBTa|V+KIipxL z^}?-5so`xMFVjfg)?Gz*k5@?kH02N*w#g0b1eHscA68l+W-UKggi*Mwq0M9SIO&Q? zm>D%N^tjxqebO*Jux##dmW`%M7A`EsgK2lkoD8s)(@9o0#)pMrw9u$jvKw@!3(*O* z2TT{vMfc>?iaq8IGkoUKpJv+?kMi+k?jtmW6@M+nA5sJ$pXqjEs_#)3&W{)q6b{@sZ}=naJw^sc}9#nqSzW|NXvu`R+LOSdIy9#gi(HLaCxarwTxJ<3$D zmAS25>)utZJ%W0*ZkrpPwzzz2(-x&#S!Ii^_JYyG3mRpQb4G6{EP4n*Z=_KpL|z>| zgB`P1uau%nc{uZ;m|biXk9jd?{c+-rY7}6z^~PDqqPUC1#n3ax3t2<00Z z_`>$Sz9rk+DscdH(AFT|#oD&6A42t#nQHbveK{C;7)5#5>Mu z#+Xy}b-ns7Z?o033TsP+D`XUjqb0u8!RBl+_P9b{TCS7|D;njrFc2^C=WO0o*ba8?f8E4hc^Ube zYVlBtveLzii_asS46x;}Fc1dyCBEBu`5jUV(F%jn(Qf=*I5rvzuQ3XtE#5*0R7~^w z!gOq5=bXN^eXCj(S=4>b9QHOGI#CjHG^IV?LcBOC(Ngxtcxa(NZXM_?T-ZvdZ*d$@ zSmo?xOZ*Fqm8@CJC4M?KXR|rkDfCLE;jqFU^rXucFU1(IGoNK0k$?I!e^KYsIi9t} zXo_{FepRP^2u3u;EUr~i+AH|llu~&N%4{=}7a?a-ewEoehP@Hp&X3C#4#LZRSgWDL zXJcVD&cU60c1oj-sLEK)58#^agcEx>Ft-`7-KcUVKwt1V&BZ6{QmC)Y=uXHErca)P zH9lax`>1yvJ+o;>O7@eh_%b@xYSLZqL0C0jgHt^SS5NG%tFL$0E1Z@lcPz9?B_*A2q4{nSq?m@-T~#?ymU|&W&_0lZp}oQyPh6`y&dbm| zG;W6G4egT(SOD1XSB-7SoUPQx85SirV16&tb10eEQ)b!+W5r}*uZ}?0V{<~>DKG19 zSPfbZhZEOFr6lmSP`m&qLFaHtQSy#h-*P$RARj5@T5G)wRn;tD?-`aSc5}8f!hjid z;)RoPa$OOYlZo9CPL`%Q&AM%ellHU|du3rKK}m%)j)yAa#)c#o^3EGzGjBT)??XLe z-DuQ(j>E9ZS1|3l`vz{u?GY-C;*7MCkVudl_&Z2Xw#qY#zT6Pi>sxe0tOGJ`VtJ)z zDlH~zKL%x4vca^m_quKFqWF|`Dn-Z(&9Q5&) z7Kcf`h}eCf%xfX_KDZZIc!yYc)CWx$#9)j`SsRg|@kwQeRq83tFJLvL+gbXaMBOON zKHtXB#yF4Ui>sqA`WXXI%PkRqgDT>sLw?#yFv%%#T2Y?T%pWvtkHY567@()Fm{wGCi8qIE9_^nJ$x{$c$u>#Lp4^f+Q_RNBv!i zj*(h1M&o)yPe&uV(uqCzke8U(`!8>^u)!D(6ZBYIl* zk?-{LDSndjT5qM|Et|~hU9AVr*NwYm+eh-`*6=dJ1C;p&mY{t-Vb9HZ$xKhCuaR?J#CgTY+D6ekK5{Ib&S@d=9~K}%=D&rtvO$QmGh;f&`*0p)Cx=(W1Kiw z)o&;uc>Zdoin*{Zl^JLHXkuoU#2GCw*qBQ0j5$NG{-9r>T_&|h7!|R&GXh<~t>dLt z&NS4j(%7u%p5lMmR6{Tp$^{dLM5E->Ah`dt+4gRwDvto zEu(bU2JiM)n{B2!`p@4q%GAC+F#9L=R_Q>_TG6y*$d)Ijw58tKI2*Z|w@D9JtWe>4 z(HE&6CGsQmUWA@JFm3nluA9C!?jJOV+rr2J)2fd{$R~pKZpH)Cd?E?z3@YvW7z{Hw zVK(chGN9<{FPF+}sE1H1wXn~qwK;c8z1!xGY1Mw~kg0DEn0*NfwqGeDi_1oI*@Gsz zV_MbMcw`#w-#TS(MU}=w2G_IA1*b?8O?L+l)8d%=}6v2olL^7m1$!fg(i zKC72HawZ4N?(S}m|M;k{wyTn}8KMY;(un>D3(b+wI+sebfaBCrm3xTUDpkzqIjAf0 zddl+HrFDQ~cr~8JbCM@kgLF;O$IMqz5UF*l@oC%I#4-&h`(PFnZ8m;(?_x?d-<=}P zcZY!KAGCb@nS_y;rhw*Pv%sXQHS*n5+tc}Ng`YpY=xgPZxuQ}l;TRc(!}y13wZ-T( zgIA{J!5X`JU#oqd^UB=hguhwZ5Z{`$R(KI3d2U6Q2CZB(5ftW>!6vcSCWV)0WO`t~ zu9>a*h0rn^{y;}EM$j4;O%<2(nTif*Dr`A%(KIuAl9#59X>-)nTk9)$U+yxGHt6h7 zajgq>{HdHZO|0?OG|rl&=?gfjwMGVcYmS&Cx*8|cdED-?S)g?oZ9z4{z-T+n%xzqg zMjKLQu_pNadW`fn=AqV-p>4hK)a+>(t7DO#+dCF$-qabw%tD6zP*_Va%t`<-;W(|w z?HE6BzsinZ%QKtIJ_*90plMc+J&bFH3xA7RqOgA(9trTt^xOPwX+-&>E#&85@c@`;JL}r62%LwK} zyZe(DC(^?iXBgSjlD3>Urxr+F#u6CR1My{iiCqj!rO%GqnSW-C^xHMxYRp+6$Ie>c z5sPNnH|QZ;pYS6$A5nwJd1TUejNx%o9J`f0xQLiknfy0Xtix^YoHVrG5m{%>PMtco zyg3VQSE*`Fwy$)1an(9=Vpp_7fU(}}fBcb|;*{TcbE-3Y`*0@1pzCBC*6R7#P%;!g znN(!{HlIL$lF>V^k1<+EV8yuFpy}4B+^(RDoPcIwNpNvz(6db9zlOcd%nl>pnkH$K zM+P!&Hpx!jeef9_^eef!d#3N(6^qSZ)3sCLvuU%JXXh2oWoUXmX#tD_Oj`bSL8kKd zR%x0>?XWYGnn7rrmx+l%iZvO7Ynm9VoM|qt-^0Qzh+uC^Lt86-X^T-2Yb@`c{*fr_uf`b?2vyWB9&}}G#Oy}xs;57NVxE{k zF41n@o|)w57`6i>G$#o?>=dn+)G1GpWe?>iQ!Sg#V;JL#_e5FZXwdE@s=66>Q7-%r zPWmbldO9@>qiPNLvtEv(X0c*=qj%A?&R5h%;x;OSI+-|sQJg!qc`(+_HkVQUsG-%` z{qAg`UnW|882QQZ3J#)1LFmAb+}f)H>o#g*8>9QkduFH5bYgGh=^xWqxm##nTDgTX zM?Qcp{kDY4>eVs>Lc1zF08zx<*jaHRx?%;>ntj_VH`dhbws+6iEVa` zMN=M`p&%=U8?y8|^Ip3q^xd__S(KAX{iPd!=+dtx=DmC4jiCB;TtXK{Oi1lCcsJ%KCN5M~^fic0==bHSn@PQi38qt-^l z7)?F>qn;nAl)Q=SF#$(Shf)0@mMS%qwo97^M$>6@RphJ| zY@yB4UO>NUa~?Ixtplls*XmkaWTMM?wCcB9M`gI%RAsnl-Uj|MH^4uXgPdk9izwq9 zE-_h9LK;5vv!oHAL^Ls4fIBW@RFguf-GacKmKS_TO>DQfW@2wkQ?>r1`g1i~O1Y4l zt9&5lvMWD}(f`|G1{o)DWd?5hcyb+N-AdiW_dA;YrJZsnwSJ}cll*nuAH}s)bIoq~ zC916}1%Ky-%C4Xha3wRwio$iAfHko8u)j6qo&Af`e_Q4VyJNH)uvGiTd|$0anEqhz zINiI{PAirOV-nVudD5PhLoFth`Zk|`>;ssNs0hx#)O^GkUs7|rG#qAW%7ChMS!tq= z+b6QRF|DjweDa6vq^+CGk6`k zU2SuBW?T*N36P6n^CevPDqiy#wrPgUcgd~IaeFp)?~v~eTABo9KL8iV5#s{M2oyD; z@`4$q)eBWAm2o8Kio%gDvxyA7x%xXyc|p!?({emx03CJykFE89(VfesF(Zqn`&Ze- z?Gnrydsvx6iUZGj{|(ZK zO#%TjZCKc|nSA+sGGDYgH|sF%3;S-W_F<@!F{zzPMe7|VksI1`Ck, 2022 +# Alex Nordlund , 2012 +# Anders Hovmöller , 2023 +# Anders Jonsson , 2022 +# Andreas Pelme , 2014,2021 +# Elias Johnstone , 2022 +# Gustaf Hansen , 2015 +# Jannis Leidel , 2011 +# Jonathan Lindén, 2015 +# Jörgen Olofsson, 2024 +# Ken Lewerentz, 2022 +# Jonathan Lindén, 2014 +# Mattias Hansson , 2016 +# Mattias Benjaminsson , 2011 +# Petter Strandmark , 2019 +# Rasmus Précenth , 2014 +# Samuel Linde , 2011 +# Thomas Lundqvist, 2013,2016 +# Tomas Lööw , 2021 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Jörgen Olofsson, 2024\n" +"Language-Team: Swedish (http://app.transifex.com/django/django/language/" +"sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arabiska" + +msgid "Algerian Arabic" +msgstr "Algerisk arabiska" + +msgid "Asturian" +msgstr "Asturiska" + +msgid "Azerbaijani" +msgstr "Azerbajdzjanska" + +msgid "Bulgarian" +msgstr "Bulgariska" + +msgid "Belarusian" +msgstr "Vitryska" + +msgid "Bengali" +msgstr "Bengaliska" + +msgid "Breton" +msgstr "Bretonska" + +msgid "Bosnian" +msgstr "Bosniska" + +msgid "Catalan" +msgstr "Katalanska" + +msgid "Central Kurdish (Sorani)" +msgstr "Kurdiska (Sorani)" + +msgid "Czech" +msgstr "Tjeckiska" + +msgid "Welsh" +msgstr "Walesiska" + +msgid "Danish" +msgstr "Danska" + +msgid "German" +msgstr "Tyska" + +msgid "Lower Sorbian" +msgstr "Lågsorbiska" + +msgid "Greek" +msgstr "Grekiska" + +msgid "English" +msgstr "Engelska" + +msgid "Australian English" +msgstr "Australisk engelska" + +msgid "British English" +msgstr "Brittisk engelska" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Spanska" + +msgid "Argentinian Spanish" +msgstr "Argentinsk spanska" + +msgid "Colombian Spanish" +msgstr "Colombiansk spanska" + +msgid "Mexican Spanish" +msgstr "Mexikansk spanska" + +msgid "Nicaraguan Spanish" +msgstr "Nicaraguansk spanska" + +msgid "Venezuelan Spanish" +msgstr "Spanska (Venezuela)" + +msgid "Estonian" +msgstr "Estländska" + +msgid "Basque" +msgstr "Baskiska" + +msgid "Persian" +msgstr "Persiska" + +msgid "Finnish" +msgstr "Finska" + +msgid "French" +msgstr "Franska" + +msgid "Frisian" +msgstr "Frisiska" + +msgid "Irish" +msgstr "Irländska" + +msgid "Scottish Gaelic" +msgstr "Skotsk gäliska" + +msgid "Galician" +msgstr "Galisiska" + +msgid "Hebrew" +msgstr "Hebreiska" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Kroatiska" + +msgid "Upper Sorbian" +msgstr "Högsorbiska" + +msgid "Hungarian" +msgstr "Ungerska" + +msgid "Armenian" +msgstr "Armeniska" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonesiska" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Isländska" + +msgid "Italian" +msgstr "Italienska" + +msgid "Japanese" +msgstr "Japanska" + +msgid "Georgian" +msgstr "Georgiska" + +msgid "Kabyle" +msgstr "Kabyliska" + +msgid "Kazakh" +msgstr "Kazakiska" + +msgid "Khmer" +msgstr "Khmer" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreanska" + +msgid "Kyrgyz" +msgstr "Kirgiziska" + +msgid "Luxembourgish" +msgstr "Luxemburgiska" + +msgid "Lithuanian" +msgstr "Lettiska" + +msgid "Latvian" +msgstr "Lettiska" + +msgid "Macedonian" +msgstr "Makedonska" + +msgid "Malayalam" +msgstr "Malayalam" + +msgid "Mongolian" +msgstr "Mongoliska" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Malay" +msgstr "Malajiska" + +msgid "Burmese" +msgstr "Burmesiska" + +msgid "Norwegian Bokmål" +msgstr "Norskt Bokmål" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Holländska" + +msgid "Norwegian Nynorsk" +msgstr "Norska (nynorsk)" + +msgid "Ossetic" +msgstr "Ossetiska" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Polska" + +msgid "Portuguese" +msgstr "Portugisiska" + +msgid "Brazilian Portuguese" +msgstr "Brasiliensk portugisiska" + +msgid "Romanian" +msgstr "Rumänska" + +msgid "Russian" +msgstr "Ryska" + +msgid "Slovak" +msgstr "Slovakiska" + +msgid "Slovenian" +msgstr "Slovenska" + +msgid "Albanian" +msgstr "Albanska" + +msgid "Serbian" +msgstr "Serbiska" + +msgid "Serbian Latin" +msgstr "Serbiska (latin)" + +msgid "Swedish" +msgstr "Svenska" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamilska" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Tadzjikiska" + +msgid "Thai" +msgstr "Thailändska" + +msgid "Turkmen" +msgstr "Turkmeniska" + +msgid "Turkish" +msgstr "Turkiska" + +msgid "Tatar" +msgstr "Tatariska" + +msgid "Udmurt" +msgstr "Udmurtiska" + +msgid "Uyghur" +msgstr "Uiguriska" + +msgid "Ukrainian" +msgstr "Ukrainska" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "Uzbekiska" + +msgid "Vietnamese" +msgstr "Vietnamesiska" + +msgid "Simplified Chinese" +msgstr "Förenklad Kinesiska" + +msgid "Traditional Chinese" +msgstr "Traditionell Kinesiska" + +msgid "Messages" +msgstr "Meddelanden" + +msgid "Site Maps" +msgstr "Sidkartor" + +msgid "Static Files" +msgstr "Statiska filer" + +msgid "Syndication" +msgstr "Syndikering" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Sidnumret är inte ett heltal" + +msgid "That page number is less than 1" +msgstr "Sidnumret är mindre än 1" + +msgid "That page contains no results" +msgstr "Sidan innehåller inga resultat" + +msgid "Enter a valid value." +msgstr "Fyll i ett giltigt värde." + +msgid "Enter a valid domain name." +msgstr "Fyll i ett giltigt domännamn." + +msgid "Enter a valid URL." +msgstr "Fyll i en giltig URL." + +msgid "Enter a valid integer." +msgstr "Fyll i ett giltigt heltal." + +msgid "Enter a valid email address." +msgstr "Fyll i en giltig e-postadress." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Fyll i en giltig 'slug', beståendes av bokstäver, siffror, understreck eller " +"bindestreck i Unicode." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Fyll i en giltig 'slug', beståendes av bokstäver, siffror, understreck eller " +"bindestreck i Unicode." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Fyll i en giltig %(protocol)s adress." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 eller IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Fyll enbart i siffror separerade med kommatecken." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Kontrollera att detta värde är %(limit_value)s (det är %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Kontrollera att detta värde är mindre än eller lika med %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Kontrollera att detta värde är större än eller lika med %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Kontrollera att detta värde är multipel av stegstorlek %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Kontrollera att detta värde är en multipel med stegstorlek %(limit_value)s, " +"med början från %(offset)s, t ex. %(offset)s, %(valid_value1)s, " +"%(valid_value2)s och så vidare" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Säkerställ att detta värde åtminstone har %(limit_value)d tecken (den har " +"%(show_value)d)." +msgstr[1] "" +"Säkerställ att detta värde åtminstone har %(limit_value)d tecken (den har " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Säkerställ att detta värde har som mest %(limit_value)d tecken (den har " +"%(show_value)d)." +msgstr[1] "" +"Säkerställ att detta värde har som mest %(limit_value)d tecken (den har " +"%(show_value)d)." + +msgid "Enter a number." +msgstr "Fyll i ett tal." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Säkerställ att det inte är mer än %(max)s siffra totalt." +msgstr[1] "Säkerställ att det inte är mer än %(max)s siffror totalt." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Säkerställ att det inte är mer än %(max)s decimal." +msgstr[1] "Säkerställ att det inte är mer än %(max)s decimaler." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Säkerställ att det inte är mer än %(max)s siffra före decimalavskiljaren." +msgstr[1] "" +"Säkerställ att det inte är mer än %(max)s siffror före decimalavskiljaren." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Filändelsen “%(extension)s” är inte giltig. Giltiga filändelser är: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Null-tecken är inte tillåtna." + +msgid "and" +msgstr "och" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s med samma %(field_labels)s finns redan." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Begränsningen “%(name)s” överträds." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Värdet %(value)r är inget giltigt alternativ." + +msgid "This field cannot be null." +msgstr "Detta fält får inte vara null." + +msgid "This field cannot be blank." +msgstr "Detta fält får inte vara tomt." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s med detta %(field_label)s finns redan." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s måste vara unikt för %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Fält av typ: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Värdet \"%(value)s\" måste vara antingen True eller False." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Värdet ”%(value)s” måste vara antingen True, False eller None." + +msgid "Boolean (Either True or False)" +msgstr "Boolesk (antingen True eller False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Sträng (upp till %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Sträng (obegränsad)" + +msgid "Comma-separated integers" +msgstr "Komma-separerade heltal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” har ett ogiltigt datumformat. Det måste vara i formatet YYYY-MM-" +"DD." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"Värdet “%(value)s” har det giltiga formatet (YYYY-MM-DD) men det är ett " +"ogiltigt datum." + +msgid "Date (without time)" +msgstr "Datum (utan tid)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” har ett ogiltigt format. Det måste vara i formatet YYYY-MM-DD HH:" +"MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” har det giltiga formatet (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) " +"men ett ogiltigt datum/tid." + +msgid "Date (with time)" +msgstr "Datum (med tid)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "Värdet “%(value)s” måste vara ett decimaltal." + +msgid "Decimal number" +msgstr "Decimaltal" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” har ett ogiltigt format. Det måste vara i formatet [DD] " +"[[HH:]MM:]ss[.uuuuuu]." + +msgid "Duration" +msgstr "Tidsspann" + +msgid "Email address" +msgstr "E-postadress" + +msgid "File path" +msgstr "Sökväg till fil" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Värdet \"%(value)s\" måste vara ett flyttal." + +msgid "Floating point number" +msgstr "Flyttal" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Värdet \"%(value)s\" måste vara ett heltal." + +msgid "Integer" +msgstr "Heltal" + +msgid "Big (8 byte) integer" +msgstr "Stort (8 byte) heltal" + +msgid "Small integer" +msgstr "Litet heltal" + +msgid "IPv4 address" +msgstr "IPv4-adress" + +msgid "IP address" +msgstr "IP-adress" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Värdet ”%(value)s” måste vara antingen None, True eller False." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolesk (antingen True, False eller None)" + +msgid "Positive big integer" +msgstr "Positivt stort heltal" + +msgid "Positive integer" +msgstr "Positivt heltal" + +msgid "Positive small integer" +msgstr "Positivt litet heltal" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (upp till %(max_length)s)" + +msgid "Text" +msgstr "Text" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” har ett ogiltigt format. Det måste vara i formatet HH:MM[:ss[." +"uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"Värdet “%(value)s” har det giltiga formatet (HH:MM[:ss[.uuuuuu]]) men det är " +"en ogiltig tid." + +msgid "Time" +msgstr "Tid" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Rå binärdata" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” är inget giltigt UUID." + +msgid "Universally unique identifier" +msgstr "Globalt unik identifierare" + +msgid "File" +msgstr "Fil" + +msgid "Image" +msgstr "Bild" + +msgid "A JSON object" +msgstr "Ett JSON-objekt" + +msgid "Value must be valid JSON." +msgstr "Värdet måste vara giltig JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Modell %(model)s med %(field)s %(value)r finns inte." + +msgid "Foreign Key (type determined by related field)" +msgstr "Främmande nyckel (typ bestäms av relaterat fält)" + +msgid "One-to-one relationship" +msgstr "Ett-till-ett-samband" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s relation" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s relationer" + +msgid "Many-to-many relationship" +msgstr "Många-till-många-samband" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Detta fält måste fyllas i." + +msgid "Enter a whole number." +msgstr "Fyll i ett heltal." + +msgid "Enter a valid date." +msgstr "Fyll i ett giltigt datum." + +msgid "Enter a valid time." +msgstr "Fyll i en giltig tid." + +msgid "Enter a valid date/time." +msgstr "Fyll i ett giltigt datum/tid." + +msgid "Enter a valid duration." +msgstr "Fyll i ett giltigt tidsspann." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Antalet dagar måste vara mellan {min_days} och {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Ingen fil skickades. Kontrollera kodningstypen i formuläret." + +msgid "No file was submitted." +msgstr "Ingen fil skickades." + +msgid "The submitted file is empty." +msgstr "Den skickade filen är tom." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Säkerställ att filnamnet har som mest %(max)d tecken (den har %(length)d)." +msgstr[1] "" +"Säkerställ att filnamnet har som mest %(max)d tecken (den har %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Var vänlig antingen skicka en fil eller markera kryssrutan för att rensa, " +"inte både och. " + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Ladda upp en giltig bild. Filen du laddade upp var antingen ingen bild eller " +"en korrupt bild." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Välj ett giltigt alternativ. %(value)s finns inte bland tillgängliga " +"alternativ." + +msgid "Enter a list of values." +msgstr "Fyll i en lista med värden." + +msgid "Enter a complete value." +msgstr "Fyll i ett fullständigt värde." + +msgid "Enter a valid UUID." +msgstr "Fyll i ett giltigt UUID." + +msgid "Enter a valid JSON." +msgstr "Fyll i ett giltigt JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Gömt fält %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm-data saknas eller har manipulerats. Saknade fält: " +"%(field_names)s. Du kan behöva lämna in en felrapport om problemet kvarstår." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Vänligen skicka som mest %(num)d formulär." +msgstr[1] "Vänligen skicka som mest %(num)d formulär." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Vänligen skicka minst %(num)d formulär." +msgstr[1] "Vänligen skicka minst %(num)d formulär." + +msgid "Order" +msgstr "Sortering" + +msgid "Delete" +msgstr "Radera" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Var vänlig korrigera duplikatdata för %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Var vänlig korrigera duplikatdata för %(field)s, som måste vara unik." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Var vänlig korrigera duplikatdata för %(field_name)s som måste vara unik för " +"%(lookup)s i %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Vänligen korrigera duplikatvärdena nedan." + +msgid "The inline value did not match the parent instance." +msgstr "Värdet för InlineForeignKeyField motsvarade inte dess motpart." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Välj ett giltigt alternativ. Det valet finns inte bland tillgängliga " +"alternativ." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” är inte ett giltigt värde." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s kunde inte tolkas i tidszonen %(current_timezone)s; det kan " +"vara en ogiltig eller tvetydigt tidpunkt." + +msgid "Clear" +msgstr "Rensa" + +msgid "Currently" +msgstr "Nuvarande" + +msgid "Change" +msgstr "Ändra" + +msgid "Unknown" +msgstr "Okänt" + +msgid "Yes" +msgstr "Ja" + +msgid "No" +msgstr "Nej" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ja,nej,kanske" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" +msgstr[1] "%(size)d byte" + +#, python-format +msgid "%s KB" +msgstr "%s kB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "e.m." + +msgid "a.m." +msgstr "f.m." + +msgid "PM" +msgstr "FM" + +msgid "AM" +msgstr "EM" + +msgid "midnight" +msgstr "midnatt" + +msgid "noon" +msgstr "middag" + +msgid "Monday" +msgstr "måndag" + +msgid "Tuesday" +msgstr "tisdag" + +msgid "Wednesday" +msgstr "onsdag" + +msgid "Thursday" +msgstr "torsdag" + +msgid "Friday" +msgstr "fredag" + +msgid "Saturday" +msgstr "lördag" + +msgid "Sunday" +msgstr "söndag" + +msgid "Mon" +msgstr "mån" + +msgid "Tue" +msgstr "tis" + +msgid "Wed" +msgstr "ons" + +msgid "Thu" +msgstr "tors" + +msgid "Fri" +msgstr "fre" + +msgid "Sat" +msgstr "lör" + +msgid "Sun" +msgstr "sön" + +msgid "January" +msgstr "januari" + +msgid "February" +msgstr "februari" + +msgid "March" +msgstr "mars" + +msgid "April" +msgstr "april" + +msgid "May" +msgstr "maj" + +msgid "June" +msgstr "juni" + +msgid "July" +msgstr "juli" + +msgid "August" +msgstr "augusti" + +msgid "September" +msgstr "september" + +msgid "October" +msgstr "oktober" + +msgid "November" +msgstr "november" + +msgid "December" +msgstr "december" + +msgid "jan" +msgstr "jan" + +msgid "feb" +msgstr "feb" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "maj" + +msgid "jun" +msgstr "jun" + +msgid "jul" +msgstr "jul" + +msgid "aug" +msgstr "aug" + +msgid "sep" +msgstr "sep" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "nov" + +msgid "dec" +msgstr "dec" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "jan" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "feb" + +msgctxt "abbrev. month" +msgid "March" +msgstr "mars" + +msgctxt "abbrev. month" +msgid "April" +msgstr "april" + +msgctxt "abbrev. month" +msgid "May" +msgstr "maj" + +msgctxt "abbrev. month" +msgid "June" +msgstr "juni" + +msgctxt "abbrev. month" +msgid "July" +msgstr "juli" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "aug" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "sep" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "okt" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "nov" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "dec" + +msgctxt "alt. month" +msgid "January" +msgstr "januari" + +msgctxt "alt. month" +msgid "February" +msgstr "februari" + +msgctxt "alt. month" +msgid "March" +msgstr "mars" + +msgctxt "alt. month" +msgid "April" +msgstr "april" + +msgctxt "alt. month" +msgid "May" +msgstr "maj" + +msgctxt "alt. month" +msgid "June" +msgstr "juni" + +msgctxt "alt. month" +msgid "July" +msgstr "juli" + +msgctxt "alt. month" +msgid "August" +msgstr "augusti" + +msgctxt "alt. month" +msgid "September" +msgstr "september" + +msgctxt "alt. month" +msgid "October" +msgstr "oktober" + +msgctxt "alt. month" +msgid "November" +msgstr "november" + +msgctxt "alt. month" +msgid "December" +msgstr "december" + +msgid "This is not a valid IPv6 address." +msgstr "Detta är inte en giltig IPv6 adress." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "eller" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d år" +msgstr[1] "%(num)d år" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d månad" +msgstr[1] "%(num)d månader" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d vecka" +msgstr[1] "%(num)d veckor" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d dag" +msgstr[1] "%(num)d dagar" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d timme" +msgstr[1] "%(num)d timmar" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minut" +msgstr[1] "%(num)d minuter" + +msgid "Forbidden" +msgstr "Otillåtet" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF-verifikation misslyckades. Förfrågan avbröts." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Du ser detta meddelande eftersom denna HTTPS-sida kräver att en “Referer " +"header” skickas från din webbläsare, men ingen skickades. Denna header krävs " +"av säkerhetsskäl, för att säkerställa att din webbläsare inte kapats." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Om 'Referer' headers är inaktiverade i din webbläsare, vänligen återaktivera " +"dem, åtminstone för denna sida, eller för HTTPS-anslutningar eller för 'same-" +"origin'-förfrågningar." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Om du använder -taggen eller " +"har med ”Referrer-Policy: no-referrer”, ta bort dem. CSRF-skyddet kräver " +"”Referer” för att kunna göra sin strikta kontroll. Om du oroar dig över din " +"integritet, använd alternativ såsom för länkar " +"till tredjepart." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Du ser detta meddelande eftersom denna sida kräver en CSRF-cookie när " +"formulär skickas. Denna cookie krävs av säkerhetsskäl, för att säkerställa " +"att din webbläsare inte kapats." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Om cookies är inaktiverade i din webbläsare, vänligen återaktivera dem, " +"åtminstone för denna sida eller för “same-origin”-förfrågningar." + +msgid "More information is available with DEBUG=True." +msgstr "Mer information är tillgänglig med DEBUG=True." + +msgid "No year specified" +msgstr "Inget år angivet" + +msgid "Date out of range" +msgstr "Datum är utanför intervallet" + +msgid "No month specified" +msgstr "Ingen månad angiven" + +msgid "No day specified" +msgstr "Ingen dag angiven" + +msgid "No week specified" +msgstr "Ingen vecka angiven" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Inga %(verbose_name_plural)s är tillgängliga" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Framtida %(verbose_name_plural)s är inte tillgängliga eftersom " +"%(class_name)s.allow_future är False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Ogiltig datumsträng “%(datestr)s” med givet format “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Hittade inga %(verbose_name)s som matchar frågan" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Sidan är inte 'last', och kan inte heller omvandlas till en int." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ogiltig sida (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Tom lista och '%(class_name)s.allow_empty' är False." + +msgid "Directory indexes are not allowed here." +msgstr "Kataloglistningar är inte tillåtna här." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" finns inte" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Innehåll i %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Installationen lyckades! Grattis!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Visa release notes för Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Du ser den här sidan eftersom DEBUG=True i din settings-fil och du har inte " +"konfigurerat några URL:er." + +msgid "Django Documentation" +msgstr "Djangodokumentation" + +msgid "Topics, references, & how-to’s" +msgstr "Ämnen, referenser och how-to’s" + +msgid "Tutorial: A Polling App" +msgstr "Tutorial: En undersöknings-app" + +msgid "Get started with Django" +msgstr "Kom igång med Django" + +msgid "Django Community" +msgstr "Djangos community" + +msgid "Connect, get help, or contribute" +msgstr "Kontakta, begär hjälp eller bidra" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sv/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/sv/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/sv/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..904fd09b5c132a4c3d9893f416343aff02317163 GIT binary patch literal 193 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 pz*Mm${ME(OnQBT~7f3ZTel8b?^?;ySt$4Y tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Maelezo zaidi yanapatikana ikiwa DEBUG=True" + +msgid "No year specified" +msgstr "Hakuna mwaka maalum uliotajwa" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Hakuna mwezi maalum uliotajwa" + +msgid "No day specified" +msgstr "Hakuna siku maalum iliyitajwa" + +msgid "No week specified" +msgstr "Hakuna wiki maalum iliyotajwa" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Hakujapatikana %(verbose_name_plural)s" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s kutoka wakati ujao haiwezekani kwani `" +"%(class_name)s.allow_future` ni `False`." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "hakuna %(verbose_name)s kulingana na ulizo" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Ukurasa batili (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Sahirisi za saraka haziruhusiwi hapa." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Sahirisi ya %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..1c684f8b7f79ee11cb777de6d4859c28deb062a1 GIT binary patch literal 7094 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 HV7LCiTJ~xA literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po new file mode 100644 index 0000000..ad7bf71 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po @@ -0,0 +1,1230 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Claude Paroz , 2020 +# Jannis Leidel , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-14 21:42+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Tamil (http://www.transifex.com/django/django/language/ta/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "அரபிக்" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "" + +msgid "Bulgarian" +msgstr "" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "பெங்காலி" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "" + +msgid "Catalan" +msgstr "" + +msgid "Czech" +msgstr "செக்" + +msgid "Welsh" +msgstr "வெல்ஸ்" + +msgid "Danish" +msgstr "டேனிஷ்" + +msgid "German" +msgstr "ஜெர்மன்" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "கிரேக்கம்" + +msgid "English" +msgstr "ஆங்கிலம்" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "ஸ்பானிஷ்" + +msgid "Argentinian Spanish" +msgstr "" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "" + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "" + +msgid "Basque" +msgstr "" + +msgid "Persian" +msgstr "" + +msgid "Finnish" +msgstr "பீனீஷ்" + +msgid "French" +msgstr "ப்ரென்சு" + +msgid "Frisian" +msgstr "" + +msgid "Irish" +msgstr "" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "கலீஷீயன்" + +msgid "Hebrew" +msgstr "ஹீப்ரு" + +msgid "Hindi" +msgstr "" + +msgid "Croatian" +msgstr "" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "ஹங்கேரியன்" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "ஐஸ்லான்டிக்" + +msgid "Italian" +msgstr "இத்தாலியன்" + +msgid "Japanese" +msgstr "ஜப்பானிய" + +msgid "Georgian" +msgstr "" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "" + +msgid "Kannada" +msgstr "" + +msgid "Korean" +msgstr "" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "" + +msgid "Latvian" +msgstr "" + +msgid "Macedonian" +msgstr "" + +msgid "Malayalam" +msgstr "" + +msgid "Mongolian" +msgstr "" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "டச்சு" + +msgid "Norwegian Nynorsk" +msgstr "" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "" + +msgid "Polish" +msgstr "" + +msgid "Portuguese" +msgstr "" + +msgid "Brazilian Portuguese" +msgstr "" + +msgid "Romanian" +msgstr "ரோமானியன்" + +msgid "Russian" +msgstr "ரஷ்யன்" + +msgid "Slovak" +msgstr "சுலோவாக்" + +msgid "Slovenian" +msgstr "ஸ்லோவேனியன்" + +msgid "Albanian" +msgstr "" + +msgid "Serbian" +msgstr "செர்பியன்" + +msgid "Serbian Latin" +msgstr "" + +msgid "Swedish" +msgstr "சுவிடிஷ்" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "தமிழ்" + +msgid "Telugu" +msgstr "" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "துருக்கிஷ்" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "உக்ரேனியன்" + +msgid "Urdu" +msgstr "" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "" + +msgid "Simplified Chinese" +msgstr "எளிய சீன மொழி" + +msgid "Traditional Chinese" +msgstr "மரபு சீன மொழி" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "" + +msgid "Enter a valid URL." +msgstr "" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "" + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "இங்கு எண்களை மட்டுமே எழுதவும் காமவாள் தனிமைபடுத்தவும் " + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "மற்றும்" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "இந்த புலம் காலியாக இருக்கக் கூடாது" + +msgid "This field cannot be blank." +msgstr "" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "பூலியன் (சரி அல்லது தவறு)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "கமாவாள் பிரிக்கப்பட்ட முழு எண்" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "தேதி (நேரமில்லாமல்)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "தேதி (நேரமுடன்)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "தசம எண்கள்" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "" + +msgid "File path" +msgstr "கோப்புப் பாதை" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "முழு எண்" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "IP விலாசம்" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "இலக்கு முறை (சரி, தவறு அல்லது ஒன்றும் இல்லை)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "உரை" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "நேரம்" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "இந்த புலத்தில் மதிப்பு தேவை" + +msgid "Enter a whole number." +msgstr "முழு எண் மட்டுமே எழுதவும்" + +msgid "Enter a valid date." +msgstr "" + +msgid "Enter a valid time." +msgstr "" + +msgid "Enter a valid date/time." +msgstr "" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "அந்த பக்கத்தின் encoding வகையைப் பரிசோதிக்க.கோப்பு சமர்பிக்கப் பட்டவில்லை " + +msgid "No file was submitted." +msgstr "" + +msgid "The submitted file is empty." +msgstr "சமர்பிக்கப் பட்ட கோப்புக் காலியாக உள்ளது" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"முறையான படம் மட்டுமே பதிவேற்றம் செய்யவும். நீங்கள் பதிவேற்றம் செய்த கோப்பு படம் அள்ளாத " +"அல்லது கெட்டுப்போன கோப்பாகும்" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "" + +msgid "Delete" +msgstr "நீக்குக" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "" + +msgid "Currently" +msgstr "" + +msgid "Change" +msgstr "மாற்றுக" + +msgid "Unknown" +msgstr "தெரியாத" + +msgid "Yes" +msgstr "ஆம்" + +msgid "No" +msgstr "இல்லை" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ஆம்,இல்லை,இருக்கலாம்" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%s KB" +msgstr "" + +#, python-format +msgid "%s MB" +msgstr "" + +#, python-format +msgid "%s GB" +msgstr "" + +#, python-format +msgid "%s TB" +msgstr "" + +#, python-format +msgid "%s PB" +msgstr "" + +msgid "p.m." +msgstr "" + +msgid "a.m." +msgstr "" + +msgid "PM" +msgstr "" + +msgid "AM" +msgstr "" + +msgid "midnight" +msgstr "" + +msgid "noon" +msgstr "" + +msgid "Monday" +msgstr "திங்கள்" + +msgid "Tuesday" +msgstr "செவ்வாய்" + +msgid "Wednesday" +msgstr "புதன்" + +msgid "Thursday" +msgstr "வியாழன்" + +msgid "Friday" +msgstr "வெள்ளி" + +msgid "Saturday" +msgstr "சனி" + +msgid "Sunday" +msgstr "ஞாயிறு" + +msgid "Mon" +msgstr "" + +msgid "Tue" +msgstr "" + +msgid "Wed" +msgstr "" + +msgid "Thu" +msgstr "" + +msgid "Fri" +msgstr "" + +msgid "Sat" +msgstr "" + +msgid "Sun" +msgstr "" + +msgid "January" +msgstr "ஜனவரி" + +msgid "February" +msgstr "பிப்ரவரி" + +msgid "March" +msgstr "மார்ச்" + +msgid "April" +msgstr "ஏப்ரல்" + +msgid "May" +msgstr "மே" + +msgid "June" +msgstr "ஜூன்" + +msgid "July" +msgstr "ஜூலை" + +msgid "August" +msgstr "ஆகஸ்டு" + +msgid "September" +msgstr "செப்டம்பர்" + +msgid "October" +msgstr "அக்டோபர்" + +msgid "November" +msgstr "நவம்பர்" + +msgid "December" +msgstr "டிசம்பர்" + +msgid "jan" +msgstr "ஜன" + +msgid "feb" +msgstr "பிப்" + +msgid "mar" +msgstr "மார்" + +msgid "apr" +msgstr "ஏப்" + +msgid "may" +msgstr "மே" + +msgid "jun" +msgstr "ஜூன்" + +msgid "jul" +msgstr "ஜூலை" + +msgid "aug" +msgstr "ஆக" + +msgid "sep" +msgstr "செப்" + +msgid "oct" +msgstr "அக்" + +msgid "nov" +msgstr "நவ" + +msgid "dec" +msgstr "டிச" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +msgctxt "abbrev. month" +msgid "March" +msgstr "மார்ச்" + +msgctxt "abbrev. month" +msgid "April" +msgstr "ஏப்ரல்" + +msgctxt "abbrev. month" +msgid "May" +msgstr "மே" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ஜூன்" + +msgctxt "abbrev. month" +msgid "July" +msgstr "ஜூலை" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +msgctxt "alt. month" +msgid "January" +msgstr "ஜனவரி" + +msgctxt "alt. month" +msgid "February" +msgstr "பிப்ரவரி" + +msgctxt "alt. month" +msgid "March" +msgstr "மார்ச்" + +msgctxt "alt. month" +msgid "April" +msgstr "ஏப்ரல்" + +msgctxt "alt. month" +msgid "May" +msgstr "மே" + +msgctxt "alt. month" +msgid "June" +msgstr "ஜூன்" + +msgctxt "alt. month" +msgid "July" +msgstr "ஜூலை" + +msgctxt "alt. month" +msgid "August" +msgstr "ஆகஸ்டு" + +msgctxt "alt. month" +msgid "September" +msgstr "செப்டம்பர்" + +msgctxt "alt. month" +msgid "October" +msgstr "அக்டோபர்" + +msgctxt "alt. month" +msgid "November" +msgstr "நவம்பர்" + +msgctxt "alt. month" +msgid "December" +msgstr "டிசம்பர்" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "" + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ta/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ta/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ta/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e568cf5541b2b9b4a28c83dd74d25b034e6bf6fa GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFg`kf|)-;(^oMuFgylvkO3o*;{e3PB0wUAA&Mb|F^VyTDT*nDIf^-jC73~z zwTdlE!A(aYvWhj`DpSF+iW$fSiTMJ>{4`mjxLq7WT;tvRgM1xBqPRmmec>DdUw^+4 zk9ZfyNSL%>u!nz82v7vBVMv>NpVbi zYH>+oetc14X$}h8Co?IgII|>Gw;(Y&I}xZVCM7E|FFjvBIX^E=KPNvqF(*~OBvC&t lzbH4cq*$+@@)n0pZhlH>PO2Tq-eL|Q!NS7A$imFQ2mmCrQD^`F literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ta/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ta/formats.py new file mode 100644 index 0000000..d023608 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ta/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F, Y" +TIME_FORMAT = "g:i A" +# DATETIME_FORMAT = +# YEAR_MONTH_FORMAT = +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "j M, Y" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +# DECIMAL_SEPARATOR = +# THOUSAND_SEPARATOR = +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..1366ff278543353a02b3c118f297216c2fd88b1e GIT binary patch literal 13259 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 TJe^oMe015NKo+nAZa4n}oo=qX literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po new file mode 100644 index 0000000..168ffa4 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/te/LC_MESSAGES/django.po @@ -0,0 +1,1233 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# bhaskar teja yerneni , 2011 +# Claude Paroz , 2020 +# Jannis Leidel , 2011 +# ప్రవీణ్ ఇళ్ళ , 2013 +# వీవెన్ , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-14 21:42+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Telugu (http://www.transifex.com/django/django/language/te/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "ఆఫ్రికాన్స్" + +msgid "Arabic" +msgstr "ఆరబిక్" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "అజేర్బైజని " + +msgid "Bulgarian" +msgstr "బల్గేరియన్" + +msgid "Belarusian" +msgstr "బెలారషియన్" + +msgid "Bengali" +msgstr "బెంగాలీ" + +msgid "Breton" +msgstr "బ్రిటన్" + +msgid "Bosnian" +msgstr "బోస్నియన్" + +msgid "Catalan" +msgstr "కాటలాన్" + +msgid "Czech" +msgstr "ఛెక్" + +msgid "Welsh" +msgstr "వెల్ష్" + +msgid "Danish" +msgstr "డానిష్" + +msgid "German" +msgstr "జెర్మన్" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "గ్రీక్" + +msgid "English" +msgstr "ఆంగ్లం" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "బ్రిటీష్ ఆంగ్లం" + +msgid "Esperanto" +msgstr "ఎస్పరాంటో" + +msgid "Spanish" +msgstr "స్పానిష్" + +msgid "Argentinian Spanish" +msgstr "అర్జెంటీనా స్పానిష్" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "మెక్షికన్ స్పానిష్ " + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "వెనుజులా స్పానిష్" + +msgid "Estonian" +msgstr "ఎస్టొనియన్" + +msgid "Basque" +msgstr "బాస్క్" + +msgid "Persian" +msgstr "పారసీ" + +msgid "Finnish" +msgstr "ఫీన్నిష్" + +msgid "French" +msgstr "ఫ్రెంచ్" + +msgid "Frisian" +msgstr "ఫ్రిసియన్" + +msgid "Irish" +msgstr "ఐరిష్" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "గలిసియన్" + +msgid "Hebrew" +msgstr "హీబ్రూ" + +msgid "Hindi" +msgstr "హిందీ" + +msgid "Croatian" +msgstr "క్రొయేషియన్" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "హంగేరియన్" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "ఇంటర్లింగ్వా" + +msgid "Indonesian" +msgstr "ఇండోనేషియన్" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "ఐస్లాండిక్" + +msgid "Italian" +msgstr "ఇటాలియవ్" + +msgid "Japanese" +msgstr "జపనీ" + +msgid "Georgian" +msgstr "జార్జియన్" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "కజఖ్" + +msgid "Khmer" +msgstr "ఖ్మెర్" + +msgid "Kannada" +msgstr "కన్నడ" + +msgid "Korean" +msgstr "కొరియన్" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "లగ్జెంబర్గిష్" + +msgid "Lithuanian" +msgstr "లిథుయేనియన్" + +msgid "Latvian" +msgstr "లాత్వియన్" + +msgid "Macedonian" +msgstr "మెసిడోనియన్" + +msgid "Malayalam" +msgstr "మలయాళం" + +msgid "Mongolian" +msgstr "మంగోలియన్" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "బర్మీస్" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "నేపాలీ" + +msgid "Dutch" +msgstr "డచ్" + +msgid "Norwegian Nynorsk" +msgstr "నోర్వేగియన్ న్య్నోర్స్క్ " + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "పంజాబీ" + +msgid "Polish" +msgstr "పొలిష్" + +msgid "Portuguese" +msgstr "పోర్చుగీస్" + +msgid "Brazilian Portuguese" +msgstr "బ్రజీలియన్ పోర్చుగీస్" + +msgid "Romanian" +msgstr "రొమానియన్" + +msgid "Russian" +msgstr "రష్యన్" + +msgid "Slovak" +msgstr "స్లొవాక్" + +msgid "Slovenian" +msgstr "స్లొవానియన్" + +msgid "Albanian" +msgstr "అల్బేనియన్" + +msgid "Serbian" +msgstr "సెర్బియన్" + +msgid "Serbian Latin" +msgstr "సెర్బియన్ లాటిన్" + +msgid "Swedish" +msgstr "స్వీడిష్" + +msgid "Swahili" +msgstr "స్వాహిలి" + +msgid "Tamil" +msgstr "తమిళం" + +msgid "Telugu" +msgstr "తెలుగు" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "థాయి" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "టర్కిష్" + +msgid "Tatar" +msgstr "టటర్" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "ఉక్రేనియన్" + +msgid "Urdu" +msgstr "ఉర్దూ" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "వియెత్నామీ" + +msgid "Simplified Chinese" +msgstr "సరళ చైనీ" + +msgid "Traditional Chinese" +msgstr "సాంప్రదాయ చైనీ" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "సరైన విలువని ఇవ్వండి." + +msgid "Enter a valid URL." +msgstr "సరైన URL ఇవ్వండి." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "దయచేసి సరైన ఈమెయిల్ చిరునామాను ప్రవేశపెట్టండి." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "దయచేసి సరైన IPv4 అడ్రస్ ఇవ్వండి" + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "కామాల తో అంకెలు విడడీసి ఇవ్వండి " + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"దయచేసి దీని విలువ %(limit_value)s గ ఉండేట్లు చూసుకొనుము. ( మీరు సమర్పించిన విలువ " +"%(show_value)s )" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "దయచేసి దీని విలువ %(limit_value)s కు సమానముగా లేక తక్కువగా ఉండేట్లు చూసుకొనుము." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "దయచేసి దీని విలువ %(limit_value)s కు సమానముగా లేక ఎక్కువగా ఉండేట్లు చూసుకొనుము." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "దయచేసి పూర్ణ సంఖ్య ఇవ్వండి" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "మరియు" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "ఈ ఫీల్డ్ కాళీగా ఉందకూడడు " + +msgid "This field cannot be blank." +msgstr "ఈ ఖాళీని తప్పనిసరిగా పూరించాలి" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "బూలియన్ (అవునా లేక కాదా)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "పదబంధం (గరిష్ఠం %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "కామా తో విడడీసిన సంఖ్య" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "తేదీ (సమయం లేకుండా)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "తేది (సమయం తో)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "దశగణసంఖ్య" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "ఈమెయిలు చిరునామా" + +msgid "File path" +msgstr "ఫైల్ పాత్" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "పూర్ణసంఖ్య" + +msgid "Big (8 byte) integer" +msgstr "" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "ఐపీ చిరునామా" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "పాఠ్యం" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "సమయం" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "దస్త్రం" + +msgid "Image" +msgstr "బొమ్మ" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "" + +msgid "One-to-one relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "ఈ ఫీల్డ్ అవసరము" + +msgid "Enter a whole number." +msgstr "పూర్ణ సంఖ్య ఇవ్వండి" + +msgid "Enter a valid date." +msgstr "దయచేసి సరైన తేది ఇవ్వండి." + +msgid "Enter a valid time." +msgstr "దయచేసి సరైన సమయం ఇవ్వండి." + +msgid "Enter a valid date/time." +msgstr "దయచేసి సరైన తెది/సమయం ఇవ్వండి." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +msgid "No file was submitted." +msgstr "ఫైలు సమర్పించబడలేదు." + +msgid "The submitted file is empty." +msgstr "మీరు సమర్పించిన ఫైల్ కాళీగా ఉంది " + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +msgid "Enter a list of values." +msgstr "సరైన విలువల జాబితాను ఇవ్వండి." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "అంతరము" + +msgid "Delete" +msgstr "తొలగించు" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "దయచేసి %(field)s యొక్క నకలు విలువను సరిదిద్దుకోండి." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "దయచేసి %(field)s యొక్క నకలు విలువను సరిదిద్దుకోండి. దీని విలువ అద్వితీయమయినది " + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "దయచేసి క్రింద ఉన్న నకలు విలువను సరిదిద్దుకోండి." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "" + +msgid "Currently" +msgstr "ప్రస్తుతము " + +msgid "Change" +msgstr "మార్చు" + +msgid "Unknown" +msgstr "తెలియనది" + +msgid "Yes" +msgstr "అవును" + +msgid "No" +msgstr "కాదు" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "అవును,కాదు,ఏమొ" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d బైటు" +msgstr[1] "%(size)d బైట్లు" + +#, python-format +msgid "%s KB" +msgstr "%s కిబై" + +#, python-format +msgid "%s MB" +msgstr "%s మెబై" + +#, python-format +msgid "%s GB" +msgstr "%s గిబై" + +#, python-format +msgid "%s TB" +msgstr "" + +#, python-format +msgid "%s PB" +msgstr "" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "అర్ధరాత్రి" + +msgid "noon" +msgstr "మధ్యాహ్నం" + +msgid "Monday" +msgstr "సోమవారం" + +msgid "Tuesday" +msgstr "మంగళవారం" + +msgid "Wednesday" +msgstr "బుధవారం" + +msgid "Thursday" +msgstr "గురువారం" + +msgid "Friday" +msgstr "శుక్రవారం" + +msgid "Saturday" +msgstr "శనివారం" + +msgid "Sunday" +msgstr "ఆదివారం" + +msgid "Mon" +msgstr "సోమ" + +msgid "Tue" +msgstr "మంగళ" + +msgid "Wed" +msgstr "బుధ" + +msgid "Thu" +msgstr "గురు" + +msgid "Fri" +msgstr "శుక్ర" + +msgid "Sat" +msgstr "శని" + +msgid "Sun" +msgstr "ఆది" + +msgid "January" +msgstr "జనవరి" + +msgid "February" +msgstr "ఫిబ్రవరి" + +msgid "March" +msgstr "మార్చి" + +msgid "April" +msgstr "ఎప్రిల్" + +msgid "May" +msgstr "మే" + +msgid "June" +msgstr "జూన్" + +msgid "July" +msgstr "జులై" + +msgid "August" +msgstr "ఆగష్టు" + +msgid "September" +msgstr "సెప్టెంబర్" + +msgid "October" +msgstr "అక్టోబర్" + +msgid "November" +msgstr "నవంబర్" + +msgid "December" +msgstr "డిసెంబర్" + +msgid "jan" +msgstr "జన" + +msgid "feb" +msgstr "ఫిబ్ర" + +msgid "mar" +msgstr "మార్చి" + +msgid "apr" +msgstr "ఎప్రి" + +msgid "may" +msgstr "మే" + +msgid "jun" +msgstr "జూన్" + +msgid "jul" +msgstr "జూలై" + +msgid "aug" +msgstr "ఆగ" + +msgid "sep" +msgstr "సెప్టెం" + +msgid "oct" +msgstr "అక్టో" + +msgid "nov" +msgstr "నవం" + +msgid "dec" +msgstr "డిసెం" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "జన." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ఫిబ్ర." + +msgctxt "abbrev. month" +msgid "March" +msgstr "మార్చి" + +msgctxt "abbrev. month" +msgid "April" +msgstr "ఏప్రి." + +msgctxt "abbrev. month" +msgid "May" +msgstr "మే" + +msgctxt "abbrev. month" +msgid "June" +msgstr "జూన్" + +msgctxt "abbrev. month" +msgid "July" +msgstr "జూలై" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ఆగ." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "సెప్టెం." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "అక్టో." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "నవం." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "డిసెం." + +msgctxt "alt. month" +msgid "January" +msgstr "జనవరి" + +msgctxt "alt. month" +msgid "February" +msgstr "ఫిబ్రవరి" + +msgctxt "alt. month" +msgid "March" +msgstr "మార్చి" + +msgctxt "alt. month" +msgid "April" +msgstr "ఏప్రిల్" + +msgctxt "alt. month" +msgid "May" +msgstr "మే" + +msgctxt "alt. month" +msgid "June" +msgstr "జూన్" + +msgctxt "alt. month" +msgid "July" +msgstr "జూలై" + +msgctxt "alt. month" +msgid "August" +msgstr "ఆగస్ట్" + +msgctxt "alt. month" +msgid "September" +msgstr "సెప్టెంబర్" + +msgctxt "alt. month" +msgid "October" +msgstr "అక్టోబర్" + +msgctxt "alt. month" +msgid "November" +msgstr "నవంబర్" + +msgctxt "alt. month" +msgid "December" +msgstr "డిసెంబర్" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "లేదా" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/te/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/te/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/te/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f11d1ac59fb81ca54f2b9654dcccaa0e9854c50e GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFN literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/te/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..79f3c581990b49097a4e2023ccbfed2c234e2c0d GIT binary patch literal 300 zcmd1j<>g`kf|)-;(^oJtFgylvkO3o*;{e3PB0wUAA&Mb|F^VyTDT*nDIf^-jC73~z zwTd-M!A&8uiZ$ITQ^B!{8OQ?(`6@*EX|hCdyEulp#=H3k`8tL~aff*N!Z`xI{(d1I z@h*;$FloVH5C5PLpa@*YN`@kk3&6y$WM`|G(Bjmh;+XQ(oRa()m;B_?+|<01;+XW* z;*!Mt_@czp92B-sW>QRXW=X1UL1J=tB2ZOKN>*ZCdcJ;geqNe>PJVJ?PO5%Ms(xC2 kQEp;Mv0g#tEe@O9{FKt1R6CHp#T-C_g@uKYg_(m90K5!Q5C8xG literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/te/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/te/formats.py new file mode 100644 index 0000000..bb7f2d1 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/te/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "g:i A" +# DATETIME_FORMAT = +# YEAR_MONTH_FORMAT = +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "j M Y" +# SHORT_DATETIME_FORMAT = +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +# DECIMAL_SEPARATOR = +# THOUSAND_SEPARATOR = +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..e93dc87f2299b52c7567091de1a48a2ebf081e35 GIT binary patch literal 28497 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 Lzu}Kr>PGnw?QV?i literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po new file mode 100644 index 0000000..05a4ca9 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/tg/LC_MESSAGES/django.po @@ -0,0 +1,1299 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Mariusz Felisiak , 2020 +# Surush Sufiew , 2020 +# Siroj Sufiew , 2020 +# Surush Sufiew , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-30 18:50+0000\n" +"Last-Translator: Mariusz Felisiak \n" +"Language-Team: Tajik (http://www.transifex.com/django/django/language/tg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Ҳолландӣ" + +msgid "Arabic" +msgstr "Арабӣ" + +msgid "Algerian Arabic" +msgstr "Арабӣ" + +msgid "Asturian" +msgstr "Астурӣ" + +msgid "Azerbaijani" +msgstr "Озарбойҷонӣ" + +msgid "Bulgarian" +msgstr "Булғорӣ" + +msgid "Belarusian" +msgstr "Белорусӣ" + +msgid "Bengali" +msgstr "Бенгалӣ" + +msgid "Breton" +msgstr "Бретонӣ" + +msgid "Bosnian" +msgstr "Боснӣ" + +msgid "Catalan" +msgstr "Каталанӣ" + +msgid "Czech" +msgstr "Чехӣ" + +msgid "Welsh" +msgstr "Уэлсӣ" + +msgid "Danish" +msgstr "Даниягӣ" + +msgid "German" +msgstr "Олмонӣ" + +msgid "Lower Sorbian" +msgstr "Сербиягӣ" + +msgid "Greek" +msgstr "Юнонӣ" + +msgid "English" +msgstr "Англисӣ" + +msgid "Australian English" +msgstr "Англисии австралиёӣ" + +msgid "British English" +msgstr "Ангилисии бритониёӣ" + +msgid "Esperanto" +msgstr "Эсперантоӣ" + +msgid "Spanish" +msgstr "Испанӣ" + +msgid "Argentinian Spanish" +msgstr "Испании аргентиноӣ" + +msgid "Colombian Spanish" +msgstr "Испании колумбигӣ" + +msgid "Mexican Spanish" +msgstr "Испании мексикоӣ" + +msgid "Nicaraguan Spanish" +msgstr "Никарагуанский испанский" + +msgid "Venezuelan Spanish" +msgstr "Испании венесуэлӣ" + +msgid "Estonian" +msgstr "Эстонӣ" + +msgid "Basque" +msgstr "Баскувӣ" + +msgid "Persian" +msgstr "Форсӣ" + +msgid "Finnish" +msgstr "Финикӣ" + +msgid "French" +msgstr "Фаронсавӣ" + +msgid "Frisian" +msgstr "Фризӣ" + +msgid "Irish" +msgstr "Ирландӣ" + +msgid "Scottish Gaelic" +msgstr "Шотландӣ" + +msgid "Galician" +msgstr "" + +msgid "Hebrew" +msgstr "Ивритӣ" + +msgid "Hindi" +msgstr "Ҳиндӣ" + +msgid "Croatian" +msgstr "Хорватӣ" + +msgid "Upper Sorbian" +msgstr "Себриягӣ" + +msgid "Hungarian" +msgstr "" + +msgid "Armenian" +msgstr "Арманӣ" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "Индонезӣ" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Исландӣ" + +msgid "Italian" +msgstr "Итолиёвӣ" + +msgid "Japanese" +msgstr "Японӣ" + +msgid "Georgian" +msgstr "Грузӣ" + +msgid "Kabyle" +msgstr "Кабилӣ" + +msgid "Kazakh" +msgstr "Қазоқӣ" + +msgid "Khmer" +msgstr "" + +msgid "Kannada" +msgstr "" + +msgid "Korean" +msgstr "Кореӣ" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Люксембургӣ" + +msgid "Lithuanian" +msgstr "Литвигӣ" + +msgid "Latvian" +msgstr "Латвигӣ" + +msgid "Macedonian" +msgstr "Македонӣ" + +msgid "Malayalam" +msgstr "" + +msgid "Mongolian" +msgstr "Монголӣ" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "Норвежский (Букмол)" + +msgid "Nepali" +msgstr "Непалӣ" + +msgid "Dutch" +msgstr "Голландӣ" + +msgid "Norwegian Nynorsk" +msgstr "Норвегӣ" + +msgid "Ossetic" +msgstr "Осетинӣ" + +msgid "Punjabi" +msgstr "Панҷобӣ" + +msgid "Polish" +msgstr "Полякӣ" + +msgid "Portuguese" +msgstr "Португалӣ" + +msgid "Brazilian Portuguese" +msgstr "Португалии бразилиёгӣ" + +msgid "Romanian" +msgstr "Руминӣ" + +msgid "Russian" +msgstr "Руссӣ" + +msgid "Slovak" +msgstr "Словакӣ" + +msgid "Slovenian" +msgstr "Словенӣ" + +msgid "Albanian" +msgstr "Албанӣ" + +msgid "Serbian" +msgstr "Сербӣ" + +msgid "Serbian Latin" +msgstr "Сербӣ" + +msgid "Swedish" +msgstr "Шведӣ" + +msgid "Swahili" +msgstr "Суахили" + +msgid "Tamil" +msgstr "Тамилӣ" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Тайский" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Туркӣ" + +msgid "Tatar" +msgstr "Тоторӣ" + +msgid "Udmurt" +msgstr "Удмуртӣ" + +msgid "Ukrainian" +msgstr "Украинӣ" + +msgid "Urdu" +msgstr "Урдуӣ" + +msgid "Uzbek" +msgstr "Узбекӣ" + +msgid "Vietnamese" +msgstr "Вэтнамӣ" + +msgid "Simplified Chinese" +msgstr "Хитоӣ" + +msgid "Traditional Chinese" +msgstr "Хитоӣ" + +msgid "Messages" +msgstr "Маълумот" + +msgid "Site Maps" +msgstr "Харитаи сайт" + +msgid "Static Files" +msgstr "Файлҳои статикӣ" + +msgid "Syndication" +msgstr "Тасмаи хабарҳо" + +msgid "That page number is not an integer" +msgstr "Рақами саҳифа бояд адади натуралӣ бошад" + +msgid "That page number is less than 1" +msgstr "Рақами саҳифа камтар аз 1" + +msgid "That page contains no results" +msgstr "Саҳифа холӣ аст" + +msgid "Enter a valid value." +msgstr "Қимматро дуруст ворид созед." + +msgid "Enter a valid URL." +msgstr "Суроға(URL)-ро дуруст ворид созед." + +msgid "Enter a valid integer." +msgstr "Ададро дуруст ворид созед." + +msgid "Enter a valid email address." +msgstr "Суроғаи почтаи электрониро дуруст ворид созед." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Қимати “slug”-ро дуруст ворид созед, бояд аз ҳарфҳо (“a-z ва A-Z”), рақамҳо, " +"зердефисҳо(_) ва дефисҳо иборат бошад." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Қимати “slug”-ро дуруст ворид созед, бояд аз Unicode-ҳарфҳо (“a-z ва A-Z”), " +"рақамҳо, зердефисҳо(_) ва дефисҳо иборат бошад." + +msgid "Enter a valid IPv4 address." +msgstr "Шакли дурусти IPv4-суроғаро ворид созед." + +msgid "Enter a valid IPv6 address." +msgstr "Шакли ҳақиқии IPv4-суроғаро ворид кунед." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Шакли ҳақиқии IPv4 ё IPv6 -суроғаро ворид кунед." + +msgid "Enter only digits separated by commas." +msgstr "Рақамҳои бо вергул шудокардашударо ворид созед." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Боварӣ ҳосил кунед, ки қиммати — %(limit_value)s (ҳоло шакли — " +"%(show_value)s -ро дорад)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Боварӣ ҳосил кунед, ки ин қиммат хурд ё баробар аст ба %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Боварӣ ҳосил кунед, ки ин қиммат калон ё баробар аст ба %(limit_value)s." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "Ададро ворид созед." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "Маълумот символӣ мамнӯъро дар бар мегирад: 0-байт" + +msgid "and" +msgstr "ва" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" +"%(model_name)s бо ин гуна майдонӣ қиматдор %(field_labels)s алакай вуҷуд " +"дорад." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Қимати %(value)r дар байни вариантҳои омадашуда вуҷуд надорад." + +msgid "This field cannot be null." +msgstr "Ин майдон наметавонад қимати NULL дошта бошад." + +msgid "This field cannot be blank." +msgstr "Ин майдон наметавонад холӣ бошад." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s бо ин гуна %(field_label)s алакай вуҷуд дорад." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"Қимат дар майдони «%(field_label)s» бояд барои фрагменти«%(lookup_type)s» " +"ягона бошад, санаҳо барои майдон %(date_field_label)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Майдони намуди %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "Қимати “%(value)s” бояд True ё False бошад." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Қимати “%(value)s” бояд True, False ё None бошад." + +msgid "Boolean (Either True or False)" +msgstr "Мантиқан (True ё False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Сатр (то %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Яклухт, бо вергул ҷудокардашуда" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "“%(value)s” шакли нодуруст дорад. Шакли дуруст: сол.моҳ.рӯз, аст" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "“%(value)s” шакли дуруст (сол.моҳ.рӯз) дорад, аммо сана нодуруст аст" + +msgid "Date (without time)" +msgstr "Сана (бе ишораи вақт)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” шакли нодуруст дорад. Шакли дуруст: сол.моҳ.рӯз соат.дақ[:сония[." +"uuuuuu]][TZ] аст" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” шакли дуруст дорад (сол.моҳ.рӯз соат.дақ[:сония[.uuuuuu]][TZ]), " +"аммо 'сана/вақт'' нодуруст аст" + +msgid "Date (with time)" +msgstr "Сана (бо ишораи вақт)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” бояд адади даҳӣ бошад" + +msgid "Decimal number" +msgstr "Адади 'даҳӣ' ." + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” шакли нодуруст дорад. Шакли дуруст [рӯз] [[соат:]дақ:]сония[." +"uuuuuu]" + +msgid "Duration" +msgstr "Давомнокӣ" + +msgid "Email address" +msgstr "Суроғаи почтаи электронӣ" + +msgid "File path" +msgstr "Суроғаи файл" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "Қимати “%(value)s” бояд бутун бошад" + +msgid "Floating point number" +msgstr "Адади бутун." + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "Қимати “%(value)s” бояд яклухт бошад" + +msgid "Integer" +msgstr "Яклухт" + +msgid "Big (8 byte) integer" +msgstr "Адади калони яклухт (8 байт)" + +msgid "IPv4 address" +msgstr "IPv4 - суроға" + +msgid "IP address" +msgstr "IP-суроға" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "Қимати “%(value)s” бояд 'None', 'True' ё 'False' бошад" + +msgid "Boolean (Either True, False or None)" +msgstr "Мантиқӣ (True, False ё None)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Адади яклухти мусбат" + +msgid "Positive small integer" +msgstr "дади яклухти мусбати хурд" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Слаг (то %(max_length)s)" + +msgid "Small integer" +msgstr "Адади яклухти хурд" + +msgid "Text" +msgstr "Матн" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” шакли нодуруст дорад. Шакли дуруст соат:дақ[:сония[.uuuuuu]" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” шакли дуруст дорад (соат:моҳ[:сония[.uuuuuu, аммо 'вақт' " +"нодуруст қайд шудааст " + +msgid "Time" +msgstr "Вақт" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Маълумоти бинари(дуи)-и коркарднашуда" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "Қимати “%(value)s” барои UUID номувофиқ аст." + +msgid "Universally unique identifier" +msgstr "Майдони UUID, идентификатори универсалии ягона" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Тасвир" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" +"Объекти модели %(model)s бо майдони %(field)s, -и дорои қимати %(value)r, " +"вуҷқд надорад." + +msgid "Foreign Key (type determined by related field)" +msgstr "" +"Калиди беруна(Foreign Key) (Шакл муайян шудаст аз рӯи майдони алоқамандшуда.)" + +msgid "One-to-one relationship" +msgstr "Алоқаи \"як ба як\"" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "Алоқаи %(from)s-%(to)s" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "Алоқаи %(from)s-%(to)s" + +msgid "Many-to-many relationship" +msgstr "Алоқаи \\'бисёр ба бисёр\\'" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Майдони ҳатмӣ." + +msgid "Enter a whole number." +msgstr "Адади яклухтро ворид кунед." + +msgid "Enter a valid date." +msgstr "Санаи дурстро ворид кунед." + +msgid "Enter a valid time." +msgstr "Вақтро дуруст ворид кунед.." + +msgid "Enter a valid date/time." +msgstr "Сана ва вақтро дуруст ворид кунед." + +msgid "Enter a valid duration." +msgstr "авомнокии дурустро ворид кунед." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" +"Миқдори рӯзҳо бояд доираи аз {min_days} то {max_days} -ро дарбар гирад." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Файл равон карда нашуд. Шакли кодировкаи формаро тафтиш кунед." + +msgid "No file was submitted." +msgstr "Ягон файл равон карда нашуд" + +msgid "The submitted file is empty." +msgstr "Файли равонкардашуда холӣ аст." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Хоҳиш мекунем файлро бор кунед ё байрақчаи ишоратӣ гузоред \"Тоза кардан\", " +"вале ҳарду амалро дар якҷоягӣ иҷро накунед." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Тасвири дурустро бор кунед. Файли боркардаи шумо нуқсон дорад ва ё 'тасвира' " +"нест" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Варианти дурустро интихоб кунед. %(value)s дар байни варианҳои дастрас вуҷуд " +"надорад." + +msgid "Enter a list of values." +msgstr "Рӯйхати қиматҳоро ворид кунед." + +msgid "Enter a complete value." +msgstr "Рӯйхати ҳамаи қиматҳоро ворид кунед." + +msgid "Enter a valid UUID." +msgstr "Шакли дурусти UUID -ро ворид кунед." + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Майдони махфии %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "Маълумоти идоракунандаи форма вуҷуд надорад ё ин ки осеб дидааст." + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "Тартиб" + +msgid "Delete" +msgstr "Нест кардан" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" +"Илтимос қимати такроршудаистодаи майдони \"%(field)s\" ро тағйир диҳед." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Илтимос, қимати майдони %(field)s ро тағйир диҳед, вай бояд 'ягона' бошад." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Илтимос, қимати майдони %(field_name)s ро тағйир диҳед, вай бояд барои " +"%(lookup)s дар майдони %(date_field)s ягона бошад (Ягона будан маънои " +"такрорнашавандагиро дорад)." + +msgid "Please correct the duplicate values below." +msgstr "Хоҳиш мекунам, қимати такроршудаистодаи зеринро иваз кунед." + +msgid "The inline value did not match the parent instance." +msgstr "" +"Қимати дар форма воридкардашуда бо қимати формаи база мутобиқат намекунад." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Варианти дурустро интихоб кунед. Варианти шумо дар қатори қиматҳои " +"овардашуда вуҷуд надорад." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Тоза кардан" + +msgid "Currently" +msgstr "Дар айни замон" + +msgid "Change" +msgstr "Тағйир додан" + +msgid "Unknown" +msgstr "Номаълум" + +msgid "Yes" +msgstr "Ҳа" + +msgid "No" +msgstr "Не" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ҳа,не,шояд" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s ГБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "н.ш." + +msgid "a.m." +msgstr "н.р." + +msgid "PM" +msgstr "НШ" + +msgid "AM" +msgstr "НР" + +msgid "midnight" +msgstr "нимашабӣ" + +msgid "noon" +msgstr "нисфирузӣ" + +msgid "Monday" +msgstr "Душанбе" + +msgid "Tuesday" +msgstr "Сешанбе" + +msgid "Wednesday" +msgstr "Чоршанбе" + +msgid "Thursday" +msgstr "Панҷшанбе" + +msgid "Friday" +msgstr "Ҷумъа" + +msgid "Saturday" +msgstr "Шанбе" + +msgid "Sunday" +msgstr "Якшанбе" + +msgid "Mon" +msgstr "Дш" + +msgid "Tue" +msgstr "Яш" + +msgid "Wed" +msgstr "Чш" + +msgid "Thu" +msgstr "Пш" + +msgid "Fri" +msgstr "Ҷ" + +msgid "Sat" +msgstr "Ш" + +msgid "Sun" +msgstr "Яш" + +msgid "January" +msgstr "Январ" + +msgid "February" +msgstr "Феврал" + +msgid "March" +msgstr "Март" + +msgid "April" +msgstr "Апрел" + +msgid "May" +msgstr "Май" + +msgid "June" +msgstr "Июн" + +msgid "July" +msgstr "Июл" + +msgid "August" +msgstr "Август" + +msgid "September" +msgstr "Сентябр" + +msgid "October" +msgstr "Октябр" + +msgid "November" +msgstr "Ноябр" + +msgid "December" +msgstr "Декабр" + +msgid "jan" +msgstr "янв" + +msgid "feb" +msgstr "фев" + +msgid "mar" +msgstr "мар" + +msgid "apr" +msgstr "апр" + +msgid "may" +msgstr "май" + +msgid "jun" +msgstr "июн" + +msgid "jul" +msgstr "июл" + +msgid "aug" +msgstr "авг" + +msgid "sep" +msgstr "сен" + +msgid "oct" +msgstr "окт" + +msgid "nov" +msgstr "ноя" + +msgid "dec" +msgstr "дек" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Янв." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Фев." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Март" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Апрел" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Май" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Июн" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Июл" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Сен." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ноя." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дек." + +msgctxt "alt. month" +msgid "January" +msgstr "январ" + +msgctxt "alt. month" +msgid "February" +msgstr "феврал" + +msgctxt "alt. month" +msgid "March" +msgstr "март" + +msgctxt "alt. month" +msgid "April" +msgstr "апрел" + +msgctxt "alt. month" +msgid "May" +msgstr "май" + +msgctxt "alt. month" +msgid "June" +msgstr "июн" + +msgctxt "alt. month" +msgid "July" +msgstr "июл" + +msgctxt "alt. month" +msgid "August" +msgstr "август" + +msgctxt "alt. month" +msgid "September" +msgstr "сентябр" + +msgctxt "alt. month" +msgid "October" +msgstr "октябр" + +msgctxt "alt. month" +msgid "November" +msgstr "ноябр" + +msgctxt "alt. month" +msgid "December" +msgstr "декабр" + +msgid "This is not a valid IPv6 address." +msgstr "Қиммат суроғаи дурусти IPv6 нест." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ё" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "Forbidden" +msgstr "Мушкилӣ дар воридшавӣ" + +msgid "CSRF verification failed. Request aborted." +msgstr "Мушкили дар тафтиши CSRF. Дархост рад шуд." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Шумо ин хабарро барои он мебинед, ки ин HTTPS -сомона, тавассути браузери " +"шумо дархости равон кардани 'Referer' 'header' -ро дорад. Вале ягон дархост " +"равон нашудааст.Иҷрои ин амал аз ҷиҳати бехатарӣ барои мутмаин шудани он, ки " +"браузери шумо аз тарафи шахси сеюм 'шикаста'' (взлом)нашудааст, ҳатмӣ " +"мебошад." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Агар шумо браузери худро ба таври 'Referer'-сархатҳояшон дастнорас ба танзим " +"даровада бошед,хоҳиш мекунем, ки ҳадди ақал барои сомонаи мазкур ё барои " +"пайсшавии таввассути HTTPS ё ин ки бароидархостҳои манбаашон якхела, амали " +"азнавбатанзимдарориро иҷро намоед." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Шумо ин хабарро барои он мебинед, ки сомонаи мазкур талаб менамояд, то амали " +"равонкунииформа ва CSRF cookie дар якҷоягӣ сурат гирад. Ин намуди 'cookie' " +"аз ҷиҳати бехатарӣбарои мутмаин шудани он, ки браузери шумо аз тарафи шахси " +"сеюм 'шикаста'' (взлом)нашудааст, ҳатмӣ мебошад." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Агар шумо браузери худро ба таври дастнораси ба cookies' ба танзим даровада " +"бошед,хоҳиш мекунем, ки ҳадди ақал барои сомонаи мазкур ё барои пайсшавии " +"таввассути HTTPS ё ин ки бароидархостҳои манбаашон якхела, амали " +"азнавбатанзимдарориро иҷро намоед." + +msgid "More information is available with DEBUG=True." +msgstr "" +"Маълумоти бештар дар режими 'танзимдарорӣ'(отладчика), бо фаъолсозии " +"DEBUG=True." + +msgid "No year specified" +msgstr "Сол ишора нашудааст" + +msgid "Date out of range" +msgstr "сана аз доираи муайян берун аст" + +msgid "No month specified" +msgstr "Моҳ ишора нашудааст" + +msgid "No day specified" +msgstr "Рӯз ишора нашудааст" + +msgid "No week specified" +msgstr "Ҳафта ишора нашудааст" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s дастнорас аст" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s навбатӣ дастнорасанд барои он ки %(class_name)s." +"allow_future бо қимати \" False\" гузошта шудааст." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Санаи нодурусти “%(datestr)s” шакли “%(format)s” гирифтааст" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Ягон %(verbose_name)s, мувофиқ бо дархости шумо ёфт нашуд" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Саҳифа 'охирин' нест ва ё ки бо адади яклухт(int) ишора нашудааст" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Саҳифаи нодуруст (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Азназаргузаронии рӯёхати файлҳо дар директорияи зерин номумкин аст." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” вуҷуд надорад" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Рӯёхати файлҳои директорияи %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" +"Django: веб-фреймворк барои перфектсионистҳо бо дедлайнҳо. Бисёр фреймворки " +"табъи дилва хастанакунанда ҳангоми кор." + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Инҷо андешаҳо оиди баромади Django " +"%(version)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Ҷобаҷогузорӣ муваффақона анҷом ёфт! Табрик!" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" +"Шумо ин хабарро барои он мебинед, ки дар ишора намудед: DEBUG=True ва дар файли " +"ҷобаҷогузорӣ(settings)ягонто танзимгари URL-суроғаҳоро ишора нанамудед." + +msgid "Django Documentation" +msgstr "Ҳуҷҷатгузории Django" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "Роҳбарият: Барнома барои овоздиҳӣ" + +msgid "Get started with Django" +msgstr "оғози кор бо Django" + +msgid "Django Community" +msgstr "Иттиҳоди Django" + +msgid "Connect, get help, or contribute" +msgstr "Бо мо ҳамкорӣ намуда имкониятҳои навро пайдо намоед." diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tg/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/tg/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/tg/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..396fc17fce45e030f9f94314c36a5694bca3f850 GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFl?EF zR+8Sp^PNrA7mj_GXThh3Z5;ElC|#*_AVvCJ*M|&-q{@gU2 zg{sfL5;^{TyK);|&OE1x^1}NNC1vJ`Sy-jfrYyWTD#{@9^PozO)>o@{Ua=~p7uP}f zK4`i;v<^0LHVw1Qa++jekVMlmo-VUI4a$PQ-u|R7(hOBe^b+5R;#pGw0AzboU5W&M KX#fU*q{)ANyu;-H literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tg/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/tg/formats.py new file mode 100644 index 0000000..0ab7d49 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/tg/formats.py @@ -0,0 +1,32 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j E Y г." +TIME_FORMAT = "G:i" +DATETIME_FORMAT = "j E Y г. G:i" +YEAR_MONTH_FORMAT = "F Y г." +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' + "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' + "%d.%m.%y %H:%M", # '25.10.06 14:30' + "%d.%m.%y", # '25.10.06' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..3969ebd054816ea6ac7f971271a8a26355ae134b GIT binary patch literal 18629 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 I`Mb;e8-n-Gi2wiq literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po new file mode 100644 index 0000000..8ab31f2 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/th/LC_MESSAGES/django.po @@ -0,0 +1,1208 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Abhabongse Janthong, 2015 +# Jannis Leidel , 2011 +# Kowit Charoenratchatabhan , 2014,2018-2019 +# Naowal Siripatana , 2017 +# sipp11 , 2014 +# Suteepat Damrongyingsupab , 2011-2012 +# Suteepat Damrongyingsupab , 2013 +# Vichai Vongvorakul , 2013 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Thai (http://www.transifex.com/django/django/language/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "อาฟฟริกัน" + +msgid "Arabic" +msgstr "อารบิก" + +msgid "Asturian" +msgstr "อัสตูเรียน" + +msgid "Azerbaijani" +msgstr "อาเซอร์ไบจาน" + +msgid "Bulgarian" +msgstr "บัลแกเรีย" + +msgid "Belarusian" +msgstr "เบลารุส" + +msgid "Bengali" +msgstr "เบ็งกาลี" + +msgid "Breton" +msgstr "เบรตัน" + +msgid "Bosnian" +msgstr "บอสเนีย" + +msgid "Catalan" +msgstr "คาตะลาน" + +msgid "Czech" +msgstr "เช็ก" + +msgid "Welsh" +msgstr "เวลส์" + +msgid "Danish" +msgstr "เดนมาร์ก" + +msgid "German" +msgstr "เยอรมัน" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "กรีก" + +msgid "English" +msgstr "อังกฤษ" + +msgid "Australian English" +msgstr "อังกฤษ - ออสเตรเลีย" + +msgid "British English" +msgstr "อังกฤษ - สหราชอาณาจักร" + +msgid "Esperanto" +msgstr "เอสเปรันโต" + +msgid "Spanish" +msgstr "สเปน" + +msgid "Argentinian Spanish" +msgstr "สเปน - อาร์เจนติน่า" + +msgid "Colombian Spanish" +msgstr "สเปน - โคลัมเบีย" + +msgid "Mexican Spanish" +msgstr "สเปน - เม็กซิกัน" + +msgid "Nicaraguan Spanish" +msgstr "นิการากัวสเปน" + +msgid "Venezuelan Spanish" +msgstr "เวเนซุเอลาสเปน" + +msgid "Estonian" +msgstr "เอสโตเนีย" + +msgid "Basque" +msgstr "แบ็ซค์" + +msgid "Persian" +msgstr "เปอร์เชีย" + +msgid "Finnish" +msgstr "ฟินแลนด์" + +msgid "French" +msgstr "ฝรั่งเศส" + +msgid "Frisian" +msgstr "ฟริเซียน" + +msgid "Irish" +msgstr "ไอริช" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "กาลิเซีย" + +msgid "Hebrew" +msgstr "ฮีบรู" + +msgid "Hindi" +msgstr "ฮินดี" + +msgid "Croatian" +msgstr "โครเอเชีย" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "ฮังการี" + +msgid "Armenian" +msgstr "อาร์เมเนียน" + +msgid "Interlingua" +msgstr "ภาษากลาง" + +msgid "Indonesian" +msgstr "อินโดนิเซีย" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "ไอซ์แลนด์" + +msgid "Italian" +msgstr "อิตาลี" + +msgid "Japanese" +msgstr "ญี่ปุ่น" + +msgid "Georgian" +msgstr "จอร์เจีย" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "คาซัค" + +msgid "Khmer" +msgstr "เขมร" + +msgid "Kannada" +msgstr "กัณณาท" + +msgid "Korean" +msgstr "เกาหลี" + +msgid "Luxembourgish" +msgstr "ลักแซมเบิร์ก" + +msgid "Lithuanian" +msgstr "ลิทัวเนีย" + +msgid "Latvian" +msgstr "ลัตเวีย" + +msgid "Macedonian" +msgstr "มาซิโดเนีย" + +msgid "Malayalam" +msgstr "มลายู" + +msgid "Mongolian" +msgstr "มองโกเลีย" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "พม่า" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "เนปาล" + +msgid "Dutch" +msgstr "ดัตช์" + +msgid "Norwegian Nynorsk" +msgstr "นอร์เวย์ - Nynorsk" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "ปัญจาบี" + +msgid "Polish" +msgstr "โปแลนด์" + +msgid "Portuguese" +msgstr "โปรตุเกส" + +msgid "Brazilian Portuguese" +msgstr "โปรตุเกส (บราซิล)" + +msgid "Romanian" +msgstr "โรมาเนีย" + +msgid "Russian" +msgstr "รัสเซีย" + +msgid "Slovak" +msgstr "สโลวัก" + +msgid "Slovenian" +msgstr "สโลวีเนีย" + +msgid "Albanian" +msgstr "อัลแบเนีย" + +msgid "Serbian" +msgstr "เซอร์เบีย" + +msgid "Serbian Latin" +msgstr "เซอร์เบียละติน" + +msgid "Swedish" +msgstr "สวีเดน" + +msgid "Swahili" +msgstr "สวาฮีลี" + +msgid "Tamil" +msgstr "ทมิฬ" + +msgid "Telugu" +msgstr "เตลุคู" + +msgid "Thai" +msgstr "ไทย" + +msgid "Turkish" +msgstr "ตุรกี" + +msgid "Tatar" +msgstr "ตาตาร์" + +msgid "Udmurt" +msgstr "อัดเมิร์ท" + +msgid "Ukrainian" +msgstr "ยูเครน" + +msgid "Urdu" +msgstr "เออร์ดู" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "เวียดนาม" + +msgid "Simplified Chinese" +msgstr "จีนตัวย่อ" + +msgid "Traditional Chinese" +msgstr "จีนตัวเต็ม" + +msgid "Messages" +msgstr "ข้อความ" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "หมายเลขหน้าดังกล่าวไม่ใช่จำนวนเต็ม" + +msgid "That page number is less than 1" +msgstr "หมายเลขหน้าดังกล่าวมีค่าน้อยกว่า 1" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "กรุณาใส่ค่าที่ถูกต้อง" + +msgid "Enter a valid URL." +msgstr "ใส่ URL ที่ถูกต้อง" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "ป้อนที่อยู่อีเมลที่ถูกต้อง" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "กรุณาใส่หมายเลขไอพีที่ถูกต้อง" + +msgid "Enter a valid IPv6 address." +msgstr "กรอก IPv6 address ให้ถูกต้อง" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "กรอก IPv4 หรือ IPv6 address ให้ถูกต้อง" + +msgid "Enter only digits separated by commas." +msgstr "ใส่ตัวเลขที่คั่นด้วยจุลภาคเท่านั้น" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "ค่านี้ต้องเป็น %(limit_value)s (ปัจจุบันคือ %(show_value)s)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "ค่านี้ต้องน้อยกว่าหรือเท่ากับ %(limit_value)s" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "ค่านี้ต้องมากกว่าหรือเท่ากับ %(limit_value)s" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +msgid "Enter a number." +msgstr "กรอกหมายเลข" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "และ" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "ฟิลด์นี้ไม่สารถปล่อยว่างได้" + +msgid "This field cannot be blank." +msgstr "ฟิลด์นี้เว้นว่างไม่ได้" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s และ %(field_label)s มีอยู่แล้ว" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "ฟิลด์ข้อมูล: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "ตรรกะแบบบูลหมายถึง ค่า\"จริง\" (True) หรือ \"ไม่จริง \" (False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "สตริง(ได้ถึง %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "จำนวนเต็มแบบมีจุลภาค" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "วันที่ (ไม่มีเวลา)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "วันที่ (พร้อมด้วยเวลา)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "เลขฐานสิบหรือเลขทศนิยม" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "ช่วงเวลา" + +msgid "Email address" +msgstr "อีเมล" + +msgid "File path" +msgstr "ตำแหน่งไฟล์" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "เลขทศนิยม" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "จำนวนเต็ม" + +msgid "Big (8 byte) integer" +msgstr "จำนวนเต็ม (8 byte)" + +msgid "IPv4 address" +msgstr "IPv4 address" + +msgid "IP address" +msgstr "หมายเลขไอพี" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "" +"ตรรกะแบบบูลหมายถึง ค่า\"จริง\" (True) หรือ \"ไม่จริง \" (False) หรือ \"ไม่มี\" (None)" + +msgid "Positive integer" +msgstr "จํานวนเต็มบวก" + +msgid "Positive small integer" +msgstr "จํานวนเต็มบวกขนาดเล็ก" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (ถึง %(max_length)s )" + +msgid "Small integer" +msgstr "จำนวนเต็มขนาดเล็ก" + +msgid "Text" +msgstr "ข้อความ" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "เวลา" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "ไฟล์" + +msgid "Image" +msgstr "รูปภาพ" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Foreign Key (ชนิดของข้อมูลจะถูกกำหนดจากฟิลด์ที่เกี่ยวข้อง)" + +msgid "One-to-one relationship" +msgstr "ความสัมพันธ์แบบหนึ่งต่อหนึ่ง" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "ความสัมพันธ์แบบ many-to-many" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "ฟิลด์นี้จำเป็น" + +msgid "Enter a whole number." +msgstr "กรอกหมายเลข" + +msgid "Enter a valid date." +msgstr "กรุณาใส่วัน" + +msgid "Enter a valid time." +msgstr "กรุณาใส่เวลา" + +msgid "Enter a valid date/time." +msgstr "กรุณาใส่วันเวลา" + +msgid "Enter a valid duration." +msgstr "ใส่ระยะเวลาที่ถูกต้อง" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "ไม่มีไฟล์ใดถูกส่ง. ตรวจสอบ encoding type ในฟอร์ม." + +msgid "No file was submitted." +msgstr "ไม่มีไฟล์ใดถูกส่ง" + +msgid "The submitted file is empty." +msgstr "ไฟล์ที่ส่งว่างเปล่า" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "โปรดเลือกไฟล์หรือติ๊ก clear checkbox อย่างใดอย่างหนึ่ง" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "อัพโหลดรูปที่ถูกต้อง. ไฟล์ที่อัพโหลดไปไม่ใช่รูป หรือรูปเสียหาย." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "เลือกตัวเลือกที่ถูกต้อง. %(value)s ไม่ใช่ตัวเลือกที่ใช้ได้." + +msgid "Enter a list of values." +msgstr "ใส่รายการ" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "ใส่ UUID ที่ถูกต้อง" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" + +msgid "Order" +msgstr "เรียงลำดับ" + +msgid "Delete" +msgstr "ลบ" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "โปรดแก้ไขข้อมูลที่ซ้ำซ้อนใน %(field)s" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "โปรดแก้ไขข้อมูลที่ซ้ำซ้อนใน %(field)s ซึ่งจะต้องไม่ซ้ำกัน" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"โปรดแก้ไขข้อมูลซ้ำซ้อนใน %(field_name)s ซึ่งจะต้องไม่ซ้ำกันสำหรับ %(lookup)s ใน " +"%(date_field)s" + +msgid "Please correct the duplicate values below." +msgstr "โปรดแก้ไขค่าที่ซ้ำซ้อนด้านล่าง" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "เลือกตัวเลือกที่ถูกต้อง. ตัวเลือกนั้นไม่สามารถเลือกได้." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "ล้าง" + +msgid "Currently" +msgstr "ปัจจุบัน" + +msgid "Change" +msgstr "เปลี่ยนแปลง" + +msgid "Unknown" +msgstr "ไม่รู้" + +msgid "Yes" +msgstr "ใช่" + +msgid "No" +msgstr "ไม่ใช่" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "ใช่,ไม่ใช่,อาจจะ" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d ไบต์" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "เที่ยงคืน" + +msgid "noon" +msgstr "เที่ยงวัน" + +msgid "Monday" +msgstr "จันทร์" + +msgid "Tuesday" +msgstr "อังคาร" + +msgid "Wednesday" +msgstr "พุธ" + +msgid "Thursday" +msgstr "พฤหัสบดี" + +msgid "Friday" +msgstr "ศุกร์" + +msgid "Saturday" +msgstr "เสาร์" + +msgid "Sunday" +msgstr "อาทิตย์" + +msgid "Mon" +msgstr "จ." + +msgid "Tue" +msgstr "อ." + +msgid "Wed" +msgstr "พ." + +msgid "Thu" +msgstr "พฤ." + +msgid "Fri" +msgstr "ศ." + +msgid "Sat" +msgstr "ส." + +msgid "Sun" +msgstr "อา." + +msgid "January" +msgstr "มกราคม" + +msgid "February" +msgstr "กุมภาพันธ์" + +msgid "March" +msgstr "มีนาคม" + +msgid "April" +msgstr "เมษายน" + +msgid "May" +msgstr "พฤษภาคม" + +msgid "June" +msgstr "มิถุนายน" + +msgid "July" +msgstr "กรกฎาคม" + +msgid "August" +msgstr "สิงหาคม" + +msgid "September" +msgstr "กันยายน" + +msgid "October" +msgstr "ตุลาคม" + +msgid "November" +msgstr "พฤศจิกายน" + +msgid "December" +msgstr "ธันวาคม" + +msgid "jan" +msgstr "ม.ค." + +msgid "feb" +msgstr "ก.พ." + +msgid "mar" +msgstr "มี.ค." + +msgid "apr" +msgstr "เม.ย." + +msgid "may" +msgstr "พ.ค." + +msgid "jun" +msgstr "มิ.ย." + +msgid "jul" +msgstr "ก.ค." + +msgid "aug" +msgstr "ส.ค." + +msgid "sep" +msgstr "ก.ย." + +msgid "oct" +msgstr "ต.ค." + +msgid "nov" +msgstr "พ.ย." + +msgid "dec" +msgstr "ธ.ค." + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "ม.ค." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "ก.พ." + +msgctxt "abbrev. month" +msgid "March" +msgstr "มี.ค." + +msgctxt "abbrev. month" +msgid "April" +msgstr "เม.ย." + +msgctxt "abbrev. month" +msgid "May" +msgstr "พ.ค." + +msgctxt "abbrev. month" +msgid "June" +msgstr "มิ.ย." + +msgctxt "abbrev. month" +msgid "July" +msgstr "ก.ค." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ส.ค." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "ก.ย." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "ต.ค." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "พ.ย." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "ธ.ค." + +msgctxt "alt. month" +msgid "January" +msgstr "มกราคม" + +msgctxt "alt. month" +msgid "February" +msgstr "กุมภาพันธ์" + +msgctxt "alt. month" +msgid "March" +msgstr "มีนาคม" + +msgctxt "alt. month" +msgid "April" +msgstr "เมษายน" + +msgctxt "alt. month" +msgid "May" +msgstr "พฤษภาคม" + +msgctxt "alt. month" +msgid "June" +msgstr "มิถุนายน" + +msgctxt "alt. month" +msgid "July" +msgstr "กรกฎาคม" + +msgctxt "alt. month" +msgid "August" +msgstr "สิงหาคม" + +msgctxt "alt. month" +msgid "September" +msgstr "กันยายน" + +msgctxt "alt. month" +msgid "October" +msgstr "ตุลาคม" + +msgctxt "alt. month" +msgid "November" +msgstr "พฤศจิกายน" + +msgctxt "alt. month" +msgid "December" +msgstr "ธันวาคม" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "หรือ" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d ปี" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d เดือน" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d สัปดาห์" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d วัน" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d ชั่วโมง" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d นาที" + +msgid "0 minutes" +msgstr "0 นาที" + +msgid "Forbidden" +msgstr "หวงห้าม" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "ไม่ระบุปี" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "ไม่ระบุเดือน" + +msgid "No day specified" +msgstr "ไม่ระบุวัน" + +msgid "No week specified" +msgstr "ไม่ระบุสัปดาห์" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "ไม่มี %(verbose_name_plural)s ที่ใช้ได้" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s ในอนาคตไม่สามารถใช้ได้ เนื่องจาก %(class_name)s." +"allow_future มีค่าเป็น False" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "ไม่พบ %(verbose_name)s จาก query" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "หน้าไม่ถูกต้อง (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "ไม่ได้รับอนุญาตให้ใช้ Directory indexes ที่นี่" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "ดัชนีของ %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "เริ่มต้นกับ Django" + +msgid "Django Community" +msgstr "ชุมชน Django" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/th/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/th/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/th/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b598381c49cf48c826145dfacd8f4b5668dc436c GIT binary patch literal 193 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⪙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, 2020-2021 +# Resul , 2020 +# Resul , 2022-2024 +# Welbeck Garli , 2020 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: Resul , 2022-2024\n" +"Language-Team: Turkmen (http://app.transifex.com/django/django/language/" +"tk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tk\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Arapça" + +msgid "Algerian Arabic" +msgstr "Alžir Arapçasy" + +msgid "Asturian" +msgstr "Asturian" + +msgid "Azerbaijani" +msgstr "Azeri Türkçesi" + +msgid "Bulgarian" +msgstr "Bolgar" + +msgid "Belarusian" +msgstr "Belarusça" + +msgid "Bengali" +msgstr "Bengali" + +msgid "Breton" +msgstr "Breton" + +msgid "Bosnian" +msgstr "Bosniýaça" + +msgid "Catalan" +msgstr "Katalan" + +msgid "Central Kurdish (Sorani)" +msgstr "Merkezi Kürtçe (Soraniçe)" + +msgid "Czech" +msgstr "Çehçe" + +msgid "Welsh" +msgstr "Uelsçe" + +msgid "Danish" +msgstr "Daniýaça" + +msgid "German" +msgstr "Nemesçe" + +msgid "Lower Sorbian" +msgstr "Aşaky Sorbian" + +msgid "Greek" +msgstr "Grekçe" + +msgid "English" +msgstr "Iňlisçe" + +msgid "Australian English" +msgstr "Awstraliýa Iňlisçesi" + +msgid "British English" +msgstr "Britan Iňlisçesi" + +msgid "Esperanto" +msgstr "Esperanto" + +msgid "Spanish" +msgstr "Ispança" + +msgid "Argentinian Spanish" +msgstr "Argentina Ispançasy" + +msgid "Colombian Spanish" +msgstr "Kolumbiýa Ispançasy" + +msgid "Mexican Spanish" +msgstr "Meksika Ispançasy" + +msgid "Nicaraguan Spanish" +msgstr "Nikaragua Ispançasy" + +msgid "Venezuelan Spanish" +msgstr "Wenezuela Ispançasy" + +msgid "Estonian" +msgstr "Estonça" + +msgid "Basque" +msgstr "Baskça" + +msgid "Persian" +msgstr "Parsça" + +msgid "Finnish" +msgstr "Finçe" + +msgid "French" +msgstr "Fransuzça" + +msgid "Frisian" +msgstr "Frisça" + +msgid "Irish" +msgstr "Irlandça" + +msgid "Scottish Gaelic" +msgstr "Şotlandiýa Gaelçasy" + +msgid "Galician" +msgstr "Galisiýaça" + +msgid "Hebrew" +msgstr "Ýewreýçe" + +msgid "Hindi" +msgstr "Hindi" + +msgid "Croatian" +msgstr "Horwatça" + +msgid "Upper Sorbian" +msgstr "Ýokarky Sorbian" + +msgid "Hungarian" +msgstr "Wengerçe" + +msgid "Armenian" +msgstr "Ermeniçe" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Indonezça" + +msgid "Igbo" +msgstr "Igbo" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Islandça" + +msgid "Italian" +msgstr "Italýança" + +msgid "Japanese" +msgstr "Ýaponça" + +msgid "Georgian" +msgstr "Gruzinçe" + +msgid "Kabyle" +msgstr "Kabyle" + +msgid "Kazakh" +msgstr "Gazakça" + +msgid "Khmer" +msgstr "Hmerçe" + +msgid "Kannada" +msgstr "Kannada" + +msgid "Korean" +msgstr "Koreýçe" + +msgid "Kyrgyz" +msgstr "Gyrgyzça" + +msgid "Luxembourgish" +msgstr "Lýuksemburgça" + +msgid "Lithuanian" +msgstr "Litwança" + +msgid "Latvian" +msgstr "Latwiýaça" + +msgid "Macedonian" +msgstr "Makedonça" + +msgid "Malayalam" +msgstr "Malaýalam" + +msgid "Mongolian" +msgstr "Mongolça" + +msgid "Marathi" +msgstr "Marasi" + +msgid "Malay" +msgstr "Malaý" + +msgid "Burmese" +msgstr "Birma" + +msgid "Norwegian Bokmål" +msgstr "Norwegiýa Bokmaly" + +msgid "Nepali" +msgstr "Nepali" + +msgid "Dutch" +msgstr "Gollandça" + +msgid "Norwegian Nynorsk" +msgstr "Norwegiýa Nynorskçasy" + +msgid "Ossetic" +msgstr "Osetikçe" + +msgid "Punjabi" +msgstr "Penjebiçe" + +msgid "Polish" +msgstr "Polýakça" + +msgid "Portuguese" +msgstr "Portugalça" + +msgid "Brazilian Portuguese" +msgstr "Braziliýa Portugalçasy" + +msgid "Romanian" +msgstr "Rumynça" + +msgid "Russian" +msgstr "Rusça" + +msgid "Slovak" +msgstr "Slowakça" + +msgid "Slovenian" +msgstr "Slowençe" + +msgid "Albanian" +msgstr "Albança" + +msgid "Serbian" +msgstr "Serbçe" + +msgid "Serbian Latin" +msgstr "Serb Latynçasy" + +msgid "Swedish" +msgstr "Şwedçe" + +msgid "Swahili" +msgstr "Swahili" + +msgid "Tamil" +msgstr "Tamil" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "Täjik" + +msgid "Thai" +msgstr "Taýça" + +msgid "Turkmen" +msgstr "Türkmençe" + +msgid "Turkish" +msgstr "Türkçe" + +msgid "Tatar" +msgstr "Tatarça" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Uyghur" +msgstr "Uýgur" + +msgid "Ukrainian" +msgstr "Ukrainçe" + +msgid "Urdu" +msgstr "Urduça" + +msgid "Uzbek" +msgstr "Özbekçe" + +msgid "Vietnamese" +msgstr "Wýetnamça" + +msgid "Simplified Chinese" +msgstr "Ýönekeýleşdirilen Hytaýça" + +msgid "Traditional Chinese" +msgstr "Adaty Hytaýça" + +msgid "Messages" +msgstr "Habarlar" + +msgid "Site Maps" +msgstr "Saýt Kartalary" + +msgid "Static Files" +msgstr "Statik Faýllar" + +msgid "Syndication" +msgstr "Syndikasiýa" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "..." + +msgid "That page number is not an integer" +msgstr "Ol sahypanyň sany bitewi san däl" + +msgid "That page number is less than 1" +msgstr "Ol sahypanyň belgisi 1-den az" + +msgid "That page contains no results" +msgstr "Ol sahypada hiç hili netije ýok" + +msgid "Enter a valid value." +msgstr "Dogry baha giriziň." + +msgid "Enter a valid domain name." +msgstr "Dogry domen adyny giriziň." + +msgid "Enter a valid URL." +msgstr "Dogry URL giriziň." + +msgid "Enter a valid integer." +msgstr "Dogry bitewi san giriziň." + +msgid "Enter a valid email address." +msgstr "Dogry e-poçta salgysyny giriziň." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Harplardan, sanlardan, aşaky çyzyklardan ýa-da defislerden ybarat dogry " +"“slug” giriziň." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Unikod harplaryndan, sanlardan, aşaky çyzyklardan ýa-da defislerden ybarat " +"dogry “slug” giriziň." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Dogry %(protocol)s adresi giriziň." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 ýa IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Diňe otur bilen aýrylan sanlary giriziň." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"%(limit_value)s bahasynyň dogry bolmagyny üpjün ediň (şuwagt %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Maglumatyň %(limit_value)s bahasyndan az ýa-da deň bolmagyny üpjün ediň." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Maglumatyň %(limit_value)s bahasyndan köp ýa-da deň bolmagyny üpjün ediň." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "Bu baha %(limit_value)s-nyň essesi bolmaly." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bu maglumatda iň az %(limit_value)d harp bardygyna göz ýetiriň (munda " +"%(show_value)d bar)." +msgstr[1] "" +"Bu maglumatda azyndan %(limit_value)d nyşanyň bolmagyny üpjün ediň (şuwagt " +"%(show_value)d sany bar)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bu maglumatda köpünden %(limit_value)d harp bardygyna göz ýetiriň (bunda " +"%(show_value)d bar)" +msgstr[1] "" +"Bu maglumatda iň köp %(limit_value)d nyşanyň bolmagyny üpjün ediň (şuwagt " +"%(show_value)d sany bar)" + +msgid "Enter a number." +msgstr "San giriziň" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Bu ýerde jemi %(max)s'dan köp san ýokduguna göz ýetiriň." +msgstr[1] "Bu ýerde jemi %(max)s sanydan köp sifriň bolmazlygyny üpjün ediň." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Bu ýerde %(max)s'dan köp nokatly san ýokdugyna göz ýetiriň" +msgstr[1] "Bu ýerde %(max)s sanydan köp nokatly san ýoklugyny üpjün ediň." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "Nokatdan öň %(max)s'dan köp san ýokdugyna göz ýetiriň" +msgstr[1] "Nokatdan öň %(max)s sanydan köp sifriň ýoklugyny üpjün ediň." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"\"%(extension)s\" faýl görnüşine rugsat edilmeýär. Rugsat berilýän faýl " +"görnüşleri şulardan ybarat: %(allowed_extensions)s" + +msgid "Null characters are not allowed." +msgstr "Null nyşanlara rugsat berilmeýär." + +msgid "and" +msgstr "we" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(field_labels)s bilen baglanyşykly %(model_name)s eýýäm bar." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "Çäklendirme “%(name)s” bozuldy." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r dogry saýlaw däl." + +msgid "This field cannot be null." +msgstr "Bu meýdan null bilmez." + +msgid "This field cannot be blank." +msgstr "Bu meýdan boş bolup bilmez." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(field_label)s bilen baglanyşykly %(model_name)s eýýäm bar." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(lookup_type)s %(date_field_label)s üçin %(field_label)s özboluşly " +"bolmalydyr." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Meýdan görnüşi: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "\"%(value)s\" hökman True ýa-da False bolmalydyr." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "\"%(value)s\" hökman True, False ýa-da None bolmalydyr." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (True ýa-da False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Setir (iň köp %(max_length)s)" + +msgid "String (unlimited)" +msgstr "String (limitsiz)" + +msgid "Comma-separated integers" +msgstr "Otur bilen bölünen bitewi sanlar" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"\"%(value)s\" bahasynyň nädogry sene formaty bar. ÝÝÝÝ-AA-GG görnüşinde " +"bolmaly." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"\"%(value)s\" dogry yazylyş usuluna (ÝÝÝÝ-AA-GG) eýe, ýöne, sene nädogry." + +msgid "Date (without time)" +msgstr "Sene (wagtsyz)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"\"%(value)s\" ýalňyş görnüşde ýazylan. Bu baha hökmany suratda ÝÝÝÝ-AA-GG SS:" +"MM[:ss[.uuuuuu]][TZ] görnüşde bolmalydyr." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"\"%(value)s\" dogry sene görnüşine eýe (ÝÝÝÝ-AA-GG SS:MM[:ss[.uuuuuu]][TZ]). " +"Ýöne bu nädogry sene/wagt." + +msgid "Date (with time)" +msgstr "Sene (wagty bilen)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "\"%(value)s\" hökman nokatly san bolmalydyr." + +msgid "Decimal number" +msgstr "Onluk san" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"\"%(value)s\" ýalňyş sene görnüşine eýe. Bu hökman [GG] [[SS:]AA:]ss[." +"uuuuuu] görnüşinde bolmalydyr." + +msgid "Duration" +msgstr "Dowamlylyk" + +msgid "Email address" +msgstr "Email adres" + +msgid "File path" +msgstr "Faýl ýoly" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "\"%(value)s float san bolmaly." + +msgid "Floating point number" +msgstr "Float san" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "\"%(value)s\" bitewi san bolmaly." + +msgid "Integer" +msgstr "Bitewi san" + +msgid "Big (8 byte) integer" +msgstr "Uly (8 baýt) bitewi san" + +msgid "Small integer" +msgstr "Kiçi bitewi san" + +msgid "IPv4 address" +msgstr "IPv4 salgy" + +msgid "IP address" +msgstr "IP salgy" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "\"%(value)s\" None, True ýa-da False bolmaly." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (True, False ýa-da None)" + +msgid "Positive big integer" +msgstr "Pozitiw uly bitewi san" + +msgid "Positive integer" +msgstr "Pozitiw bitewi san" + +msgid "Positive small integer" +msgstr "Pozitiw kiçi bitewi san" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (iň köp %(max_length)s)" + +msgid "Text" +msgstr "Tekst" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"\"%(value)s\" bahasy nädogry formata eýe. SS:MM[:ss[.uuuuuu]] formatda " +"bolmaly." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"\"%(value)s\" bahasy dogry formata eýe (SS:MM[:ss[.uuuuuu]]) ýöne bu nädogry " +"wagt." + +msgid "Time" +msgstr "Wagt" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Çig ikilik maglumat" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" dogry UUID däl." + +msgid "Universally unique identifier" +msgstr "Ähliumumy özboluşly kesgitleýji" + +msgid "File" +msgstr "Faýl" + +msgid "Image" +msgstr "Surat" + +msgid "A JSON object" +msgstr "JSON obýekti" + +msgid "Value must be valid JSON." +msgstr "Bahasy JSON bolmaly." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s%(value)r bolan %(model)s ýok." + +msgid "Foreign Key (type determined by related field)" +msgstr "Daşary açary (baglanyşykly meýdança bilen kesgitlenýär)" + +msgid "One-to-one relationship" +msgstr "Bire-bir gatnaşyk" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s gatnaşyk" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s gatnaşyklar" + +msgid "Many-to-many relationship" +msgstr "Köp-köp gatnaşyk" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Bu meýdança hökman gerekli." + +msgid "Enter a whole number." +msgstr "Bitin san giriziň." + +msgid "Enter a valid date." +msgstr "Dogry senäni giriziň." + +msgid "Enter a valid time." +msgstr "Dogry wagt giriziň." + +msgid "Enter a valid date/time." +msgstr "Dogry senäni/wagty giriziň." + +msgid "Enter a valid duration." +msgstr "Dogry dowamlylygy giriziň." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Günleriň sany {min_days} bilen {max_days} arasynda bolmaly." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Hiç hili faýl tabşyrylmady. Formadaky enkodiň görnüşini barlaň." + +msgid "No file was submitted." +msgstr "Hiç hili faýl tabşyrylmady." + +msgid "The submitted file is empty." +msgstr "Tabşyrylan faýl boş." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Bu faýl adynyň iň köp %(max)d nyşanynyň bolmagyny üpjin ediň (şuwagt " +"%(length)d sany bar)." +msgstr[1] "" +"Bu faýl adynyň iň köp %(max)d nyşanynyň bolmagyny üpjin ediň (şuwagt " +"%(length)d sany bar)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Bir faýl iberiň ýa-da arassala gutyjygyny belläň, ikisini bile däl." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Dogry surat ýükläň. Ýüklän faýlyňyz ýa surat däldi ýa-da zaýalanan suratdy." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Dogry saýlawy saýlaň. %(value)s elýeterli saýlawlaryň biri däl." + +msgid "Enter a list of values." +msgstr "Bahalaryň sanawyny giriziň." + +msgid "Enter a complete value." +msgstr "Doly bahany giriziň." + +msgid "Enter a valid UUID." +msgstr "Dogry UUID giriziň." + +msgid "Enter a valid JSON." +msgstr "Dogry JSON giriziň." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Gizlin meýdan %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm maglumatlary ýok ýa-da bozulan. Tapylmadyk meýdança: " +"%(field_names)s. Mesele dowam etse, \"bug report\" açmaly bolmagyňyz mümkin." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Haýyş, iň köp %(num)d form tabşyryň." +msgstr[1] "Haýyş, iň köp %(num)d form tabşyryň." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Haýyş, azyndan %(num)d form tabşyryň." +msgstr[1] "Haýyş, azyndan %(num)d form tabşyryň." + +msgid "Order" +msgstr "Tertip" + +msgid "Delete" +msgstr "Poz" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s üçin dublikat maglumatlary düzediň." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Özboluşly bolmaly %(field)s üçin dublikat maglumatlary düzediň." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(date_field)s meýdanynda %(lookup)süçin özboluşly bolmaly %(field_name)s " +"üçin dublikat maglumatlary düzediň." + +msgid "Please correct the duplicate values below." +msgstr "Aşakdaky dublikat bahalary düzediň." + +msgid "The inline value did not match the parent instance." +msgstr "Giriş bahasy esasy mysal bilen gabat gelmedi." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Dogry saýlawy saýlaň. Bu saýlaw, elýeterli saýlawlaryň biri däl." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" dogry baha däl." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s wagty %(current_timezone)s wagt zolagy bilen düşündirip " +"bolmady; garyşyk bolup biler ýa-da ýok bolmagy mümkin." + +msgid "Clear" +msgstr "Arassala" + +msgid "Currently" +msgstr "Häzirki wagtda" + +msgid "Change" +msgstr "Üýtget" + +msgid "Unknown" +msgstr "Näbelli" + +msgid "Yes" +msgstr "Hawa" + +msgid "No" +msgstr "Ýok" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "hawa,ýok,belki" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d baýt" +msgstr[1] "%(size)d baýt" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m" + +msgid "a.m." +msgstr "a.m" + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "ýary gije" + +msgid "noon" +msgstr "günortan" + +msgid "Monday" +msgstr "Duşenbe" + +msgid "Tuesday" +msgstr "Sişenbe" + +msgid "Wednesday" +msgstr "Çarşenbe" + +msgid "Thursday" +msgstr "Penşenbe" + +msgid "Friday" +msgstr "Anna" + +msgid "Saturday" +msgstr "Şenbe" + +msgid "Sunday" +msgstr "Ýekşenbe" + +msgid "Mon" +msgstr "Duş" + +msgid "Tue" +msgstr "Siş" + +msgid "Wed" +msgstr "Çarş" + +msgid "Thu" +msgstr "Pen" + +msgid "Fri" +msgstr "Anna" + +msgid "Sat" +msgstr "Şen" + +msgid "Sun" +msgstr "Ýek" + +msgid "January" +msgstr "Ýanwar" + +msgid "February" +msgstr "Fewral" + +msgid "March" +msgstr "Mart" + +msgid "April" +msgstr "Aprel" + +msgid "May" +msgstr "Maý" + +msgid "June" +msgstr "Iýun" + +msgid "July" +msgstr "Iýul" + +msgid "August" +msgstr "Awgust" + +msgid "September" +msgstr "Sentýabr" + +msgid "October" +msgstr "Oktýabr" + +msgid "November" +msgstr "Noýabr" + +msgid "December" +msgstr "Dekabr" + +msgid "jan" +msgstr "ýan" + +msgid "feb" +msgstr "few" + +msgid "mar" +msgstr "mart" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "maý" + +msgid "jun" +msgstr "iýun" + +msgid "jul" +msgstr "iýul" + +msgid "aug" +msgstr "awg" + +msgid "sep" +msgstr "sent" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "noý" + +msgid "dec" +msgstr "dek" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Ýan." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Few." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mart" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Aprel" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Maý" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Iýun" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Iýul" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Awg." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sent." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Noý." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dek." + +msgctxt "alt. month" +msgid "January" +msgstr "Ýanwar" + +msgctxt "alt. month" +msgid "February" +msgstr "Fewral" + +msgctxt "alt. month" +msgid "March" +msgstr "Mart" + +msgctxt "alt. month" +msgid "April" +msgstr "Aprel" + +msgctxt "alt. month" +msgid "May" +msgstr "Maý" + +msgctxt "alt. month" +msgid "June" +msgstr "Iýun" + +msgctxt "alt. month" +msgid "July" +msgstr "Iýul" + +msgctxt "alt. month" +msgid "August" +msgstr "Awgust" + +msgctxt "alt. month" +msgid "September" +msgstr "Sentýabr" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktýabr" + +msgctxt "alt. month" +msgid "November" +msgstr "Noýabr" + +msgctxt "alt. month" +msgid "December" +msgstr "Dekabr" + +msgid "This is not a valid IPv6 address." +msgstr "Bu dogry IPv6 salgy däl." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ýa" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "\"" + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d ýyl" +msgstr[1] "%(num)d ýyl" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d aý" +msgstr[1] "%(num)d aý" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d hepde" +msgstr[1] "%(num)d hepde" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d gün" +msgstr[1] "%(num)d gün" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d sagat" +msgstr[1] "%(num)d sagat" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d minut" +msgstr[1] "%(num)d minut" + +msgid "Forbidden" +msgstr "Gadagan " + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF dogrylamak şowsuz. Talap ýatyryldy." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Bu haty görýärsiňiz, sebäbi bu HTTPS sahypasy web brauzeriňiz tarapyndan " +"iberilmeli \"Referer header\" talap edýär, ýöne hiç biri iberilmedi. Bu " +"sözbaşy, brauzeriňiziň üçünji şahyslar tarapyndan ogurlanmazlygy üçin " +"howpsuzlyk sebäpli talap edilýär." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Brauzeriňizde \"Referer\" sözbaşylaryny öçüren bolsaňyz, iň bolmanda bu " +"sahypa ýa-da HTTPS birikmeleri ýa-da \"meňzeş\" talaplar üçin täzeden açyň." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Egerde siz diýen bellik " +"ýada \"Referrer-Policy: no-referrer\" header ulanýan bolsaňyz, olary " +"aýyrmagyňyzy haýyş edýäris. CSRF goragy üçin \"Referer\" header-i dogry " +"salgylanma üçin gereklidir. Eger siz gizlinlik üçin alada etseňiz, üçinji " +"şahs sahypalara baglanyşyklar üçin ýaly " +"alternatiwalary ulanyp bilersiňiz." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Bu sahypa formalary tabşyranda CSRF kukisini talap edýäligi sebäpli bu " +"habary görýärsiňiz. Bu kuki, brauzeriňiziň üçünji taraplar tarapyndan " +"ogurlanmazlygy üçin howpsuzlyk sebäpli talap edilýär." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Brauzeriňizde kukileri öçüren bolsaňyz, iň bolmanda şu sahypa ýa-da " +"\"meňzeş\" talaplar üçin olary täzeden açyň." + +msgid "More information is available with DEBUG=True." +msgstr "Has giňişleýin maglumat DEBUG=True bilen elýeterlidir." + +msgid "No year specified" +msgstr "Ýyl görkezilmedi" + +msgid "Date out of range" +msgstr "Sene çägiň daşynda" + +msgid "No month specified" +msgstr "Aý görkezilmedi" + +msgid "No day specified" +msgstr "Gün görkezilmedi" + +msgid "No week specified" +msgstr "Hepde görkezilmedi" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Elýeterli %(verbose_name_plural)s ýok" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Gelejek %(verbose_name_plural)s elýeterli däl sebäbi %(class_name)s." +"allow_future bahasy False" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Nädogry sene setiri \"%(datestr)s\" berlen format \"%(format)s\"" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Talap bilen gabat gelýän %(verbose_name)s tapylmady" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Sahypa “iň soňky” däl, ony int-ede öwrüp bolmaz." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Nädogry sahypa (%(page_number)s ): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Boş list we \"%(class_name)s.allow_empty\" bahasy False" + +msgid "Directory indexes are not allowed here." +msgstr "Bu ýerde katalog indekslerine rugsat berilmeýär." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" beýle ýol ýok" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s indeksi" + +msgid "The install worked successfully! Congratulations!" +msgstr "Üstünlikli guruldy! Gutlaýarys!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Django %(version)s üçin goýberiş " +"belliklerini görüň" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Bu sahypany görýärsiňiz, sebäbi sazlamalar faýlyňyzda DEBUG=True we hiç hili URL düzmediňiz." + +msgid "Django Documentation" +msgstr "Django resminamalary" + +msgid "Topics, references, & how-to’s" +msgstr "Mowzuklar, salgylanmalar, & how-to-lar" + +msgid "Tutorial: A Polling App" +msgstr "Gollanma: Ses beriş programmasy" + +msgid "Get started with Django" +msgstr "Django bilen başlaň" + +msgid "Django Community" +msgstr "Django jemgyýeti" + +msgid "Connect, get help, or contribute" +msgstr "Birikiň, kömek alyň ýa-da goşant goşuň" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tk/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/tk/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/tk/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..07e35c42ec36268947bc0e573c4717580818fdde GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF*gtN zK?Eca2}wjj3Uy!y0SHhRcF_quK|R<*H0s9`q+l?EF zPLkfj^PNrA7mj_GXThh3Z5;ElC|#(UaOqppLNEo}FyXna7>*_AVvCJ*M|&fg{@gU2 zg{sfL5;^{TyK);|%si)v^1}NNC1vJ`Sy-jfrYyWTD#{@9^PozO)|adIUa=~p7uP{} z6*OHQS_hjrn}*qDIZd)KNTO+ZHC<+T8k7Zpz5PkQOfys^(JOo>if2s$0FdoTbtw}3 Lr2!ZKk|zHFf3U;p literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tk/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/tk/formats.py new file mode 100644 index 0000000..0ab7d49 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/tk/formats.py @@ -0,0 +1,32 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j E Y г." +TIME_FORMAT = "G:i" +DATETIME_FORMAT = "j E Y г. G:i" +YEAR_MONTH_FORMAT = "F Y г." +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y", # '25.10.06' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d.%m.%Y", # '25.10.2006' + "%d.%m.%y %H:%M:%S", # '25.10.06 14:30:59' + "%d.%m.%y %H:%M:%S.%f", # '25.10.06 14:30:59.000200' + "%d.%m.%y %H:%M", # '25.10.06 14:30' + "%d.%m.%y", # '25.10.06' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..70f6520400c38129a98610c5338660dbaa6a46af GIT binary patch literal 28842 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 YjhG, 2013 +# BouRock, 2015-2024 +# BouRock, 2014-2015 +# Caner Başaran , 2013 +# Cihad GÜNDOĞDU , 2012 +# Cihad GÜNDOĞDU , 2013-2014 +# Gökmen Görgen , 2013 +# Jannis Leidel , 2011 +# Mesut Can Gürle , 2013 +# Murat Çorlu , 2012 +# Murat Sahin , 2011-2012 +# Türker Sezer , 2019 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: BouRock, 2015-2024\n" +"Language-Team: Turkish (http://app.transifex.com/django/django/language/" +"tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Afrikaans" +msgstr "Afrikanca" + +msgid "Arabic" +msgstr "Arapça" + +msgid "Algerian Arabic" +msgstr "Cezayir Arapçası" + +msgid "Asturian" +msgstr "Asturyaca" + +msgid "Azerbaijani" +msgstr "Azerice" + +msgid "Bulgarian" +msgstr "Bulgarca" + +msgid "Belarusian" +msgstr "Beyaz Rusça" + +msgid "Bengali" +msgstr "Bengalce" + +msgid "Breton" +msgstr "Bretonca" + +msgid "Bosnian" +msgstr "Boşnakça" + +msgid "Catalan" +msgstr "Katalanca" + +msgid "Central Kurdish (Sorani)" +msgstr "Orta Kürtçe (Sorani)" + +msgid "Czech" +msgstr "Çekçe" + +msgid "Welsh" +msgstr "Galce" + +msgid "Danish" +msgstr "Danca" + +msgid "German" +msgstr "Almanca" + +msgid "Lower Sorbian" +msgstr "Aşağı Sorb dili" + +msgid "Greek" +msgstr "Yunanca" + +msgid "English" +msgstr "İngilizce" + +msgid "Australian English" +msgstr "Avusturya İngilizcesi" + +msgid "British English" +msgstr "İngiliz İngilizcesi" + +msgid "Esperanto" +msgstr "Esperanto dili" + +msgid "Spanish" +msgstr "İspanyolca" + +msgid "Argentinian Spanish" +msgstr "Arjantin İspanyolcası" + +msgid "Colombian Spanish" +msgstr "Kolomiya İspanyolcası" + +msgid "Mexican Spanish" +msgstr "Meksika İspanyolcası" + +msgid "Nicaraguan Spanish" +msgstr "Nikaragua İspanyolcası" + +msgid "Venezuelan Spanish" +msgstr "Venezüella İspanyolcası" + +msgid "Estonian" +msgstr "Estonca" + +msgid "Basque" +msgstr "Baskça" + +msgid "Persian" +msgstr "Farsça" + +msgid "Finnish" +msgstr "Fince" + +msgid "French" +msgstr "Fransızca" + +msgid "Frisian" +msgstr "Frizce" + +msgid "Irish" +msgstr "İrlandaca" + +msgid "Scottish Gaelic" +msgstr "İskoçça Galcesi" + +msgid "Galician" +msgstr "Galiçyaca" + +msgid "Hebrew" +msgstr "İbranice" + +msgid "Hindi" +msgstr "Hintçe" + +msgid "Croatian" +msgstr "Hırvatça" + +msgid "Upper Sorbian" +msgstr "Yukarı Sorb dili" + +msgid "Hungarian" +msgstr "Macarca" + +msgid "Armenian" +msgstr "Ermenice" + +msgid "Interlingua" +msgstr "Interlingua" + +msgid "Indonesian" +msgstr "Endonezce" + +msgid "Igbo" +msgstr "Igbo dili" + +msgid "Ido" +msgstr "Ido dili" + +msgid "Icelandic" +msgstr "İzlandaca" + +msgid "Italian" +msgstr "İtalyanca" + +msgid "Japanese" +msgstr "Japonca" + +msgid "Georgian" +msgstr "Gürcüce" + +msgid "Kabyle" +msgstr "Kabiliye dili" + +msgid "Kazakh" +msgstr "Kazakça" + +msgid "Khmer" +msgstr "Kmerce" + +msgid "Kannada" +msgstr "Kannada dili" + +msgid "Korean" +msgstr "Korece" + +msgid "Kyrgyz" +msgstr "Kırgızca" + +msgid "Luxembourgish" +msgstr "Lüksemburgca" + +msgid "Lithuanian" +msgstr "Litovca" + +msgid "Latvian" +msgstr "Letonca" + +msgid "Macedonian" +msgstr "Makedonca" + +msgid "Malayalam" +msgstr "Malayamca" + +msgid "Mongolian" +msgstr "Moğolca" + +msgid "Marathi" +msgstr "Marathi dili" + +msgid "Malay" +msgstr "Malayca" + +msgid "Burmese" +msgstr "Birmanca" + +msgid "Norwegian Bokmål" +msgstr "Norveççe Bokmal" + +msgid "Nepali" +msgstr "Nepalce" + +msgid "Dutch" +msgstr "Flemenkçe" + +msgid "Norwegian Nynorsk" +msgstr "Norveççe Nynorsk" + +msgid "Ossetic" +msgstr "Osetçe" + +msgid "Punjabi" +msgstr "Pencapça" + +msgid "Polish" +msgstr "Lehçe" + +msgid "Portuguese" +msgstr "Portekizce" + +msgid "Brazilian Portuguese" +msgstr "Brezilya Portekizcesi" + +msgid "Romanian" +msgstr "Romence" + +msgid "Russian" +msgstr "Rusça" + +msgid "Slovak" +msgstr "Slovakça" + +msgid "Slovenian" +msgstr "Slovence" + +msgid "Albanian" +msgstr "Arnavutça" + +msgid "Serbian" +msgstr "Sırpça" + +msgid "Serbian Latin" +msgstr "Sırpça Latin" + +msgid "Swedish" +msgstr "İsveççe" + +msgid "Swahili" +msgstr "Savahilice" + +msgid "Tamil" +msgstr "Tamilce" + +msgid "Telugu" +msgstr "Telugu dili" + +msgid "Tajik" +msgstr "Tacikçe" + +msgid "Thai" +msgstr "Tayca" + +msgid "Turkmen" +msgstr "Türkmence" + +msgid "Turkish" +msgstr "Türkçe" + +msgid "Tatar" +msgstr "Tatarca" + +msgid "Udmurt" +msgstr "Udmurtça" + +msgid "Uyghur" +msgstr "Uygur" + +msgid "Ukrainian" +msgstr "Ukraynaca" + +msgid "Urdu" +msgstr "Urduca" + +msgid "Uzbek" +msgstr "‎Özbekçe" + +msgid "Vietnamese" +msgstr "Vietnamca" + +msgid "Simplified Chinese" +msgstr "Basitleştirilmiş Çince" + +msgid "Traditional Chinese" +msgstr "Geleneksel Çince" + +msgid "Messages" +msgstr "İletiler" + +msgid "Site Maps" +msgstr "Site Haritaları" + +msgid "Static Files" +msgstr "Sabit Dosyalar" + +msgid "Syndication" +msgstr "Dağıtım" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Bu sayfa numarası bir tamsayı değil" + +msgid "That page number is less than 1" +msgstr "Bu sayfa numarası 1’den az" + +msgid "That page contains no results" +msgstr "Bu sayfa hiç sonuç içermiyor" + +msgid "Enter a valid value." +msgstr "Geçerli bir değer girin." + +msgid "Enter a valid domain name." +msgstr "Geçerli bir etki alanı adı girin." + +msgid "Enter a valid URL." +msgstr "Geçerli bir URL girin." + +msgid "Enter a valid integer." +msgstr "Geçerli bir tamsayı girin." + +msgid "Enter a valid email address." +msgstr "Geçerli bir e-posta adresi girin." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Harflerden, sayılardan, altçizgilerden veya tirelerden oluşan geçerli bir " +"“kısaltma” girin." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Evrensel kod harflerden, sayılardan, altçizgilerden veya tirelerden oluşan " +"geçerli bir “kısaltma” girin." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "Geçerli bir %(protocol)s adresi girin." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 veya IPv6" + +msgid "Enter only digits separated by commas." +msgstr "Sadece virgülle ayrılmış rakamlar girin." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Bu değerin %(limit_value)s olduğuna emin olun (şu an %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Bu değerin %(limit_value)s değerinden az veya eşit olduğuna emin olun." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Bu değerin %(limit_value)s değerinden büyük veya eşit olduğuna emin olun." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" +"Bu değerin %(limit_value)s adım boyutunun katları olduğundan emin olun." + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"Bu değerin %(offset)s değerinden başlayarak %(limit_value)s adım boyutunun " +"katı olduğundan emin olun, örn. %(offset)s, %(valid_value1)s, " +"%(valid_value2)s, vb." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bu değerin en az %(limit_value)d karaktere sahip olduğuna emin olun (şu an " +"%(show_value)d)." +msgstr[1] "" +"Bu değerin en az %(limit_value)d karaktere sahip olduğuna emin olun (şu an " +"%(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Bu değerin en fazla %(limit_value)d karaktere sahip olduğuna emin olun (şu " +"an %(show_value)d)." +msgstr[1] "" +"Bu değerin en fazla %(limit_value)d karaktere sahip olduğuna emin olun (şu " +"an %(show_value)d)." + +msgid "Enter a number." +msgstr "Bir sayı girin." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Toplamda %(max)s rakamdan daha fazla olmadığından emin olun." +msgstr[1] "Toplamda %(max)s rakamdan daha fazla olmadığından emin olun." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "%(max)s ondalık basamaktan daha fazla olmadığından emin olun." +msgstr[1] "%(max)s ondalık basamaktan daha fazla olmadığından emin olun." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Ondalık noktasından önce %(max)s rakamdan daha fazla olmadığından emin olun." +msgstr[1] "" +"Ondalık noktasından önce %(max)s rakamdan daha fazla olmadığından emin olun." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"“%(extension)s” dosya uzantısına izin verilmiyor. İzin verilen uzantılar: " +"%(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Boş karakterlere izin verilmiyor." + +msgid "and" +msgstr "ve" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "Bu %(field_labels)s alanına sahip %(model_name)s zaten mevcut." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "\"%(name)s\" kısıtlaması ihlal edildi." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r değeri geçerli bir seçim değil." + +msgid "This field cannot be null." +msgstr "Bu alan boş olamaz." + +msgid "This field cannot be blank." +msgstr "Bu alan boş olamaz." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Bu %(field_label)s alanına sahip %(model_name)s zaten mevcut." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s, %(date_field_label)s %(lookup_type)s için benzersiz olmak " +"zorundadır." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Alan türü: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” değeri ya True ya da False olmak zorundadır." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” değeri ya True, False ya da None olmak zorundadır." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (Ya True ya da False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Dizgi (%(max_length)s karaktere kadar)" + +msgid "String (unlimited)" +msgstr "Dizgi (sınırsız)" + +msgid "Comma-separated integers" +msgstr "Virgülle ayrılmış tamsayılar" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"“%(value)s” değeri geçersiz bir tarih biçimine sahip. Bu YYYY-MM-DD " +"biçiminde olmak zorundadır." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"“%(value)s” değeri doğru bir biçime (YYYY-MM-DD) sahip ancak bu geçersiz bir " +"tarih." + +msgid "Date (without time)" +msgstr "Tarih (saat olmadan)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” değeri geçersiz bir biçime sahip. YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ] biçiminde olmak zorundadır." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” değeri doğru bir biçime (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) " +"sahip ancak bu geçersiz bir tarih/saat." + +msgid "Date (with time)" +msgstr "Tarih (saat olan)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” değeri bir ondalık sayı olmak zorundadır." + +msgid "Decimal number" +msgstr "Ondalık sayı" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s” değer geçersiz bir biçime sahip. [DD] [HH:[MM:]]ss[.uuuuuu] " +"biçiminde olmak zorundadır." + +msgid "Duration" +msgstr "Süre" + +msgid "Email address" +msgstr "E-posta adresi" + +msgid "File path" +msgstr "Dosya yolu" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” değeri kayan noktalı bir sayı olmak zorundadır." + +msgid "Floating point number" +msgstr "Kayan noktalı sayı" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” değeri bir tamsayı olmak zorundadır." + +msgid "Integer" +msgstr "Tamsayı" + +msgid "Big (8 byte) integer" +msgstr "Büyük (8 bayt) tamsayı" + +msgid "Small integer" +msgstr "Küçük tamsayı" + +msgid "IPv4 address" +msgstr "IPv4 adresi" + +msgid "IP address" +msgstr "IP adresi" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” değeri ya None, True ya da False olmak zorundadır." + +msgid "Boolean (Either True, False or None)" +msgstr "Booleanl (Ya True, False, ya da None)" + +msgid "Positive big integer" +msgstr "Pozitif büyük tamsayı" + +msgid "Positive integer" +msgstr "Pozitif tamsayı" + +msgid "Positive small integer" +msgstr "Pozitif küçük tamsayı" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Kısaltma (%(max_length)s karaktere kadar)" + +msgid "Text" +msgstr "Metin" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"“%(value)s” değeri geçersiz bir biçime sahip. HH:MM[:ss[.uuuuuu]] biçiminde " +"olmak zorundadır." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"“%(value)s” değeri doğru biçime (HH:MM[:ss[.uuuuuu]]) sahip ancak bu " +"geçersiz bir saat." + +msgid "Time" +msgstr "Saat" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Ham ikili veri" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” geçerli bir UUID değil." + +msgid "Universally unique identifier" +msgstr "Evrensel benzersiz tanımlayıcı" + +msgid "File" +msgstr "Dosya" + +msgid "Image" +msgstr "Resim" + +msgid "A JSON object" +msgstr "JSON nesnesi" + +msgid "Value must be valid JSON." +msgstr "Değer geçerli JSON olmak zorundadır." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s %(value)r olan %(model)s benzeri mevcut değil." + +msgid "Foreign Key (type determined by related field)" +msgstr "Dış Anahtar (türü ilgili alana göre belirlenir)" + +msgid "One-to-one relationship" +msgstr "Bire-bir ilişki" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s ilişkisi" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s ilişkileri" + +msgid "Many-to-many relationship" +msgstr "Çoka-çok ilişki" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Bu alan zorunludur." + +msgid "Enter a whole number." +msgstr "Tam bir sayı girin." + +msgid "Enter a valid date." +msgstr "Geçerli bir tarih girin." + +msgid "Enter a valid time." +msgstr "Geçerli bir saat girin." + +msgid "Enter a valid date/time." +msgstr "Geçerli bir tarih/saat girin." + +msgid "Enter a valid duration." +msgstr "Geçerli bir süre girin." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Gün sayıları {min_days} ve {max_days} arasında olmak zorundadır." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Hiç dosya gönderilmedi. Formdaki kodlama türünü kontrol edin." + +msgid "No file was submitted." +msgstr "Hiç dosya gönderilmedi." + +msgid "The submitted file is empty." +msgstr "Gönderilen dosya boş." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Bu dosya adının en fazla %(max)d karaktere sahip olduğundan emin olun (şu an " +"%(length)d)." +msgstr[1] "" +"Bu dosya adının en fazla %(max)d karaktere sahip olduğundan emin olun (şu an " +"%(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Lütfen ya bir dosya gönderin ya da temizle işaretleme kutusunu işaretleyin, " +"ikisini aynı anda işaretlemeyin." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Geçerli bir resim gönderin. Gönderdiğiniz dosya ya bir resim değildi ya da " +"bozulmuş bir resimdi." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Geçerli bir seçenek seçin. %(value)s mevcut seçeneklerden biri değil." + +msgid "Enter a list of values." +msgstr "Değerlerin bir listesini girin." + +msgid "Enter a complete value." +msgstr "Tam bir değer girin." + +msgid "Enter a valid UUID." +msgstr "Geçerli bir UUID girin." + +msgid "Enter a valid JSON." +msgstr "Geçerli bir JSON girin." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Gizli alan %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm verileri eksik veya değiştirilmiş. Eksik alanlar: " +"%(field_names)s. Sorun devam ederse bir hata raporu dosyalamanız gerekebilir." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "Lütfen en fazla %(num)d form gönderin." +msgstr[1] "Lütfen en fazla %(num)d form gönderin." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "Lütfen en az %(num)d form gönderin." +msgstr[1] "Lütfen en az %(num)d form gönderin." + +msgid "Order" +msgstr "Sıralama" + +msgid "Delete" +msgstr "Sil" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Lütfen %(field)s için kopya veriyi düzeltin." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Lütfen %(field)s için benzersiz olmak zorunda olan, kopya veriyi düzeltin." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Lütfen %(date_field)s içindeki %(lookup)s için benzersiz olmak zorunda olan " +"%(field_name)s için kopya veriyi düzeltin." + +msgid "Please correct the duplicate values below." +msgstr "Lütfen aşağıdaki kopya değerleri düzeltin." + +msgid "The inline value did not match the parent instance." +msgstr "Satıriçi değer ana örnek ile eşleşmedi." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Geçerli bir seçenek seçin. Bu seçenek, mevcut seçeneklerden biri değil." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” geçerli bir değer değil." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s, %(current_timezone)s saat dilimi olarak yorumlanamadı; bu " +"belirsiz olabilir ya da mevcut olmayabilir." + +msgid "Clear" +msgstr "Temizle" + +msgid "Currently" +msgstr "Şu anki" + +msgid "Change" +msgstr "Değiştir" + +msgid "Unknown" +msgstr "Bilinmiyor" + +msgid "Yes" +msgstr "Evet" + +msgid "No" +msgstr "Hayır" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "evet,hayır,olabilir" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d bayt" +msgstr[1] "%(size)d bayt" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "ö.s." + +msgid "a.m." +msgstr "ö.ö." + +msgid "PM" +msgstr "ÖS" + +msgid "AM" +msgstr "ÖÖ" + +msgid "midnight" +msgstr "gece yarısı" + +msgid "noon" +msgstr "öğlen" + +msgid "Monday" +msgstr "Pazartesi" + +msgid "Tuesday" +msgstr "Salı" + +msgid "Wednesday" +msgstr "Çarşamba" + +msgid "Thursday" +msgstr "Perşembe" + +msgid "Friday" +msgstr "Cuma" + +msgid "Saturday" +msgstr "Cumartesi" + +msgid "Sunday" +msgstr "Pazar" + +msgid "Mon" +msgstr "Pzt" + +msgid "Tue" +msgstr "Sal" + +msgid "Wed" +msgstr "Çrş" + +msgid "Thu" +msgstr "Prş" + +msgid "Fri" +msgstr "Cum" + +msgid "Sat" +msgstr "Cmt" + +msgid "Sun" +msgstr "Paz" + +msgid "January" +msgstr "Ocak" + +msgid "February" +msgstr "Şubat" + +msgid "March" +msgstr "Mart" + +msgid "April" +msgstr "Nisan" + +msgid "May" +msgstr "Mayıs" + +msgid "June" +msgstr "Haziran" + +msgid "July" +msgstr "Temmuz" + +msgid "August" +msgstr "Ağustos" + +msgid "September" +msgstr "Eylül" + +msgid "October" +msgstr "Ekim" + +msgid "November" +msgstr "Kasım" + +msgid "December" +msgstr "Aralık" + +msgid "jan" +msgstr "oca" + +msgid "feb" +msgstr "şub" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "nis" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "haz" + +msgid "jul" +msgstr "tem" + +msgid "aug" +msgstr "ağu" + +msgid "sep" +msgstr "eyl" + +msgid "oct" +msgstr "eki" + +msgid "nov" +msgstr "kas" + +msgid "dec" +msgstr "ara" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Oca." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Şub." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mart" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Nisan" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Mayıs" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Haz." + +msgctxt "abbrev. month" +msgid "July" +msgstr "Tem." + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Ağu." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Eyl." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Eki." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Kas." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Ara." + +msgctxt "alt. month" +msgid "January" +msgstr "Ocak" + +msgctxt "alt. month" +msgid "February" +msgstr "Şubat" + +msgctxt "alt. month" +msgid "March" +msgstr "Mart" + +msgctxt "alt. month" +msgid "April" +msgstr "Nisan" + +msgctxt "alt. month" +msgid "May" +msgstr "Mayıs" + +msgctxt "alt. month" +msgid "June" +msgstr "Haziran" + +msgctxt "alt. month" +msgid "July" +msgstr "Temmuz" + +msgctxt "alt. month" +msgid "August" +msgstr "Ağustos" + +msgctxt "alt. month" +msgid "September" +msgstr "Eylül" + +msgctxt "alt. month" +msgid "October" +msgstr "Ekim" + +msgctxt "alt. month" +msgid "November" +msgstr "Kasım" + +msgctxt "alt. month" +msgid "December" +msgstr "Aralık" + +msgid "This is not a valid IPv6 address." +msgstr "Bu, geçerli bir IPv6 adresi değil." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ya da" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d yıl" +msgstr[1] "%(num)d yıl" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d ay" +msgstr[1] "%(num)d ay" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d hafta" +msgstr[1] "%(num)d hafta" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d gün" +msgstr[1] "%(num)d gün" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d saat" +msgstr[1] "%(num)d saat" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d dakika" +msgstr[1] "%(num)d dakika" + +msgid "Forbidden" +msgstr "Yasak" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF doğrulaması başarısız oldu. İstek iptal edildi." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"Bu iletiyi görüyorsunuz çünkü bu HTTPS sitesi, web tarayıcınız tarafından " +"gönderilen “Referer üstbilgisi”ni gerektirir, ancak hiçbir şey gönderilmedi. " +"Bu üstbilgi güvenlik nedenleri için gerekir, tarayıcınızın üçüncü taraf " +"uygulamalar tarafından ele geçirilmediğinden emin olun." + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Eğer tarayıcınızı “Referer” üstbilgilerini etkisizleştirmek için " +"yapılandırdıysanız, lütfen bunları, en azından bu site ya da HTTPS " +"bağlantıları veya “aynı-kaynakta” olan istekler için yeniden etkinleştirin." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Eğer etiketi " +"kullanıyorsanız ya da “Referrer-Policy: no-referrer” üstbilgisini dahil " +"ediyorsanız, lütfen bunları kaldırın. CSRF koruması, katı göndereni denetimi " +"yapmak için “Referer” üstbilgisi gerektirir. Gizlilik konusunda endişeniz " +"varsa, üçüncü taraf sitelere bağlantılar için gibi " +"alternatifler kullanın." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Bu iletiyi görüyorsunuz çünkü bu site, formları gönderdiğinizde bir CSRF " +"tanımlama bilgisini gerektirir. Bu tanımlama bilgisi güvenlik nedenleri için " +"gerekir, tarayıcınızın üçüncü taraf uygulamalar tarafından ele " +"geçirilmediğinden emin olun." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Eğer tarayıcınızı tanımlama bilgilerini etkisizleştirmek için " +"yapılandırdıysanız, lütfen bunları, en azından bu site ya da “aynı-kaynakta” " +"olan istekler için yeniden etkinleştirin." + +msgid "More information is available with DEBUG=True." +msgstr "Daha fazla bilgi DEBUG=True ayarı ile mevcut olur." + +msgid "No year specified" +msgstr "Yıl bilgisi belirtilmedi" + +msgid "Date out of range" +msgstr "Tarih aralık dışında" + +msgid "No month specified" +msgstr "Ay bilgisi belirtilmedi" + +msgid "No day specified" +msgstr "Gün bilgisi belirtilmedi" + +msgid "No week specified" +msgstr "Hafta bilgisi belirtilmedi" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Mevcut %(verbose_name_plural)s yok" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Gelecek %(verbose_name_plural)s mevcut değil, çünkü %(class_name)s." +"allow_future değeri False olarak tanımlı." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "Geçersiz tarih dizgisi “%(datestr)s” verilen biçim “%(format)s”" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Sorguyla eşleşen hiç %(verbose_name)s bulunamadı" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Sayfa “sonuncu” değil, ya da bir tamsayıya dönüştürülemez." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Geçersiz sayfa (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Liste boş ve “%(class_name)s.allow_empty” değeri False." + +msgid "Directory indexes are not allowed here." +msgstr "Dizin indekslerine burada izin verilmiyor." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” mevcut değil" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s indeksi" + +msgid "The install worked successfully! Congratulations!" +msgstr "Yükleme başarılı olarak çalıştı! Tebrikler!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Django %(version)s sürümü için yayım notlarını göster" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Bu sayfayı görüyorsunuz çünkü DEBUG=True parametresi ayarlar dosyanızın içindedir ve " +"herhangi bir URL yapılandırmadınız." + +msgid "Django Documentation" +msgstr "Django Belgeleri" + +msgid "Topics, references, & how-to’s" +msgstr "Konular, kaynaklar ve nasıl yapılırlar" + +msgid "Tutorial: A Polling App" +msgstr "Eğitim: Anket Uygulaması" + +msgid "Get started with Django" +msgstr "Django ile başlayın" + +msgid "Django Community" +msgstr "Django Topluluğu" + +msgid "Connect, get help, or contribute" +msgstr "Bağlanın, yardım alın, ya da katkıda bulunun" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tr/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/tr/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/tr/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5af74ddb48790bb705bc46a7ff1159249a60bdc GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFa)M7t8@HE$h(90}S?;jhAzj=hJ=`Ow_>}Y=FgmLQGMo+liqod6sxg*!x4IO_4E0PWAdfX@VBj z*|GWz-#x&|BYQkBM}6E=WLFJmmTkx`?zy^gAm_Ey6b8O3+o55ZuD0Ls>JL+7f3FN2 z&9dFF+4b_DbkuI9+fH5Sht@3oq^h_0Vz*5<=brnwpM&2Vu5qjn6!ls+vd9lq4JQU$?zBaFQ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tr/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/tr/formats.py new file mode 100644 index 0000000..806f442 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/tr/formats.py @@ -0,0 +1,30 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "d F Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "d F Y H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "d F" +SHORT_DATE_FORMAT = "d M Y" +SHORT_DATETIME_FORMAT = "d M Y H:i" +FIRST_DAY_OF_WEEK = 1 # Pazartesi + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d/%m/%Y", # '25/10/2006' + "%d/%m/%y", # '25/10/06' + "%y-%m-%d", # '06-10-25' + # "%d %B %Y", # '25 Ekim 2006' + # "%d %b. %Y", # '25 Eki. 2006' +] +DATETIME_INPUT_FORMATS = [ + "%d/%m/%Y %H:%M:%S", # '25/10/2006 14:30:59' + "%d/%m/%Y %H:%M:%S.%f", # '25/10/2006 14:30:59.000200' + "%d/%m/%Y %H:%M", # '25/10/2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..843b012cb1162315d1cac1e7679fa85ad176feb0 GIT binary patch literal 14500 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po new file mode 100644 index 0000000..84d06ef --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/tt/LC_MESSAGES/django.po @@ -0,0 +1,1211 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Azat Khasanshin , 2011 +# v_ildar , 2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Tatar (http://www.transifex.com/django/django/language/tt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tt\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "Гарәп теле" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Азәрбайҗан" + +msgid "Bulgarian" +msgstr "Болгар теле" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "Бенгалия теле" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "Босния теле" + +msgid "Catalan" +msgstr "Каталан теле" + +msgid "Czech" +msgstr "Чех теле" + +msgid "Welsh" +msgstr "Уэльс теле" + +msgid "Danish" +msgstr "Дания теле" + +msgid "German" +msgstr "Алман теле" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Грек теле" + +msgid "English" +msgstr "Инглиз теле" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "Британ инглиз теле" + +msgid "Esperanto" +msgstr "Эсперанто теле" + +msgid "Spanish" +msgstr "Испан теле" + +msgid "Argentinian Spanish" +msgstr "Аргентина испан теле" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Мексикалы испан" + +msgid "Nicaraguan Spanish" +msgstr "Никарагуалы испан" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "Эстон теле" + +msgid "Basque" +msgstr "Баск теле" + +msgid "Persian" +msgstr "Фарсы теле" + +msgid "Finnish" +msgstr "Финн теле" + +msgid "French" +msgstr "Француз теле" + +msgid "Frisian" +msgstr "Фриз теле" + +msgid "Irish" +msgstr "Ирланд теле" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Галлий теле" + +msgid "Hebrew" +msgstr "Яһүд теле" + +msgid "Hindi" +msgstr "Хинд теле" + +msgid "Croatian" +msgstr "Хорват теле" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Венгр теле" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "Индонезия теле" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Исланд теле" + +msgid "Italian" +msgstr "Итальян теле" + +msgid "Japanese" +msgstr "Япон теле" + +msgid "Georgian" +msgstr "Грузин теле" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Казах теле" + +msgid "Khmer" +msgstr "Кхмер теле" + +msgid "Kannada" +msgstr "Каннада теле" + +msgid "Korean" +msgstr "Корея теле" + +msgid "Luxembourgish" +msgstr "Люксембург теле" + +msgid "Lithuanian" +msgstr "Литвалылар теле" + +msgid "Latvian" +msgstr "Латвия теле" + +msgid "Macedonian" +msgstr "Македон теле" + +msgid "Malayalam" +msgstr "Малаялам теле" + +msgid "Mongolian" +msgstr "Монгол теле" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "Голланд теле" + +msgid "Norwegian Nynorsk" +msgstr "Норвегиялеләр (Нюнорск) теле" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "Паджаби теле" + +msgid "Polish" +msgstr "Поляк теле" + +msgid "Portuguese" +msgstr "Португал теле" + +msgid "Brazilian Portuguese" +msgstr "Бразилия португал теле" + +msgid "Romanian" +msgstr "Румын теле" + +msgid "Russian" +msgstr "Рус теле" + +msgid "Slovak" +msgstr "Словак теле" + +msgid "Slovenian" +msgstr "Словен теле" + +msgid "Albanian" +msgstr "Албан теле" + +msgid "Serbian" +msgstr "Серб теле" + +msgid "Serbian Latin" +msgstr "Серб теле (латин алфавиты)" + +msgid "Swedish" +msgstr "Швед теле" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "Тамиль теле" + +msgid "Telugu" +msgstr "Телугу теле" + +msgid "Thai" +msgstr "Тай теле" + +msgid "Turkish" +msgstr "Төрек теле" + +msgid "Tatar" +msgstr "Татар теле" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "Украин теле" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Вьетнам теле" + +msgid "Simplified Chinese" +msgstr "Гадиләштерелгән кытай теле" + +msgid "Traditional Chinese" +msgstr "Традицион кытай теле" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Дөрес кыйммәтне кертегез." + +msgid "Enter a valid URL." +msgstr "Рөхсәт ителгән URLны кертегез." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "Дөрес эл. почта адресны кертегез." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Рөхсәт ителгән IPv4 адресын кертегез." + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "Өтерләр белән бүленгән сан билгеләрен кертегез" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Бу кыйммәтнең %(limit_value)s булуын тикшерегез (хәзер ул - %(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Бу кыйммәтнең %(limit_value)s карата кечерәк яки тигез булуын тикшерегез." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Бу кыйммәтнең %(limit_value)s карата зуррак яки тигез булуын тикшерегез." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +msgid "Enter a number." +msgstr "Сан кертегез." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "һәм" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Бу кырның кыйммәте NULL булырга тиеш түгел." + +msgid "This field cannot be blank." +msgstr "Бу кыр буш булырга тиеш түгел." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Мондый %(field_label)s белән булган %(model_name)s инде бар." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "%(field_type)s типтагы кыр" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Логик (True яисә False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Юл (күп дигәндә %(max_length)s)" + +msgid "Comma-separated integers" +msgstr "Өтерләр белән бүленгән бөтен саннар" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Дата (вакыт күрсәтмәсе булмаган)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Дата (вакыт күрсәтмәсе белән)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Унарлы вакланма" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Эл. почта" + +msgid "File path" +msgstr "Файл юлы" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Күчерелүчән өтер белән булган сан" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Бөтен сан" + +msgid "Big (8 byte) integer" +msgstr "Зур бөтен (8 байт)" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "IP-адрес" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Логик (True, False я None)" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Вакыт" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Тыш ачкыч (тип бәйле кыр буенча билгеләнгән)" + +msgid "One-to-one relationship" +msgstr "\"Бергә бер\" элемтәсе" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "\"Күпкә куп\" элемтәсе" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Мәҗбүри кыр." + +msgid "Enter a whole number." +msgstr "Бөтен сан кертегез." + +msgid "Enter a valid date." +msgstr "Рөхсәт ителгән датаны кертегез." + +msgid "Enter a valid time." +msgstr "Рөхсәт ителгән вакытны кертегез." + +msgid "Enter a valid date/time." +msgstr "Рөхсәт ителгән дата һәм вакытны кертегез." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Һишбер файл җибәрелмәгән. Форма кодлавын тикшерегез." + +msgid "No file was submitted." +msgstr "Һишбер файл җибәрелмәгән." + +msgid "The submitted file is empty." +msgstr "Җибәрелгән файл буш." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Зинһар, җибәрегез файлны яисә бушайту байракчасын билгеләгез, икесен бергә " +"түгел." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Рөхсәт ителгән рәсемне йөкләгез. Сез йөкләгән файл рәсем түгел яисә бозылган." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Дөрес тәкъдимне сайлагыз. Рөхсәт ителгән кыйммәтләр арасында %(value)s юк. " + +msgid "Enter a list of values." +msgstr "Кыйммәтләр исемлеген кертегез." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" + +msgid "Order" +msgstr "Тәртип" + +msgid "Delete" +msgstr "Бетерергә" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Зинһар, %(field)s кырындагы кабатлана торган кыйммәтне төзәтегез." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Зинһар, %(field)s кырындагы кыйммәтне төзәтегез, ул уникаль булырга тиеш." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Зинһар, %(field_name)s кырындагы кыйммәтне төзәтегез, ул %(date_field)s " +"кырындагы %(lookup)s өчен уникаль булырга тиеш." + +msgid "Please correct the duplicate values below." +msgstr "Зинһар, астагы кабатлана торган кыйммәтләрне төзәтегез." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Дөрес тәкъдимне сайлагыз. Рөхсәт ителгән кыйммәтләр арасында сезнең вариант " +"юк." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Бушайтырга" + +msgid "Currently" +msgstr "Хәзерге вакытта" + +msgid "Change" +msgstr "Үзгәртергә" + +msgid "Unknown" +msgstr "Билгесез" + +msgid "Yes" +msgstr "Әйе" + +msgid "No" +msgstr "Юк" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "әйе,юк,бәлки" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s ГБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "т.с." + +msgid "a.m." +msgstr "т.к." + +msgid "PM" +msgstr "ТС" + +msgid "AM" +msgstr "ТК" + +msgid "midnight" +msgstr "төн уртасы" + +msgid "noon" +msgstr "көн уртасы" + +msgid "Monday" +msgstr "Дүшәмбе" + +msgid "Tuesday" +msgstr "Сишәмбе" + +msgid "Wednesday" +msgstr "Чәршәмбе" + +msgid "Thursday" +msgstr "Пәнҗешәмбе" + +msgid "Friday" +msgstr "Җомга" + +msgid "Saturday" +msgstr "Шимбә" + +msgid "Sunday" +msgstr "Якшәмбе" + +msgid "Mon" +msgstr "Дүш" + +msgid "Tue" +msgstr "Сиш" + +msgid "Wed" +msgstr "Чәр" + +msgid "Thu" +msgstr "Пнҗ" + +msgid "Fri" +msgstr "Җом" + +msgid "Sat" +msgstr "Шим" + +msgid "Sun" +msgstr "Якш" + +msgid "January" +msgstr "Гыйнвар" + +msgid "February" +msgstr "Февраль" + +msgid "March" +msgstr "Март" + +msgid "April" +msgstr "Апрель" + +msgid "May" +msgstr "Май" + +msgid "June" +msgstr "Июнь" + +msgid "July" +msgstr "Июль" + +msgid "August" +msgstr "Август" + +msgid "September" +msgstr "Сентябрь" + +msgid "October" +msgstr "Октябрь" + +msgid "November" +msgstr "Ноябрь" + +msgid "December" +msgstr "Декабрь" + +msgid "jan" +msgstr "гый" + +msgid "feb" +msgstr "фев" + +msgid "mar" +msgstr "мар" + +msgid "apr" +msgstr "апр" + +msgid "may" +msgstr "май" + +msgid "jun" +msgstr "июн" + +msgid "jul" +msgstr "июл" + +msgid "aug" +msgstr "авг" + +msgid "sep" +msgstr "сен" + +msgid "oct" +msgstr "окт" + +msgid "nov" +msgstr "ноя" + +msgid "dec" +msgstr "дек" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Гый." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Фев." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Март" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Апрель" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Май" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Июнь" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Июль" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Авг." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Сен." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Окт." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Ноя." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Дек." + +msgctxt "alt. month" +msgid "January" +msgstr "гыйнвар" + +msgctxt "alt. month" +msgid "February" +msgstr "февраль" + +msgctxt "alt. month" +msgid "March" +msgstr "март" + +msgctxt "alt. month" +msgid "April" +msgstr "апрель" + +msgctxt "alt. month" +msgid "May" +msgstr "май" + +msgctxt "alt. month" +msgid "June" +msgstr "июнь" + +msgctxt "alt. month" +msgid "July" +msgstr "июль" + +msgctxt "alt. month" +msgid "August" +msgstr "август" + +msgctxt "alt. month" +msgid "September" +msgstr "сентябрь" + +msgctxt "alt. month" +msgid "October" +msgstr "октябрь" + +msgctxt "alt. month" +msgid "November" +msgstr "ноябрь" + +msgctxt "alt. month" +msgid "December" +msgstr "декабрь" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "я" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "Ел билгеләнмәгән" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Ай билгеләнмәгән" + +msgid "No day specified" +msgstr "Көн билгеләнмәгән" + +msgid "No week specified" +msgstr "Атна билгеләнмәгән" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Файдалана алырлык %(verbose_name_plural)s юк" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(class_name)s.allow_future False булуы сәбәпле, киләсе " +"%(verbose_name_plural)s файдалана алырлык түгел" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Таләпкә туры килгән %(verbose_name)s табылмаган" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..0c7ab6d1221496d3fd113e75a52f617b7f3498d3 GIT binary patch literal 12822 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po new file mode 100644 index 0000000..68c2bc7 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/udm/LC_MESSAGES/django.po @@ -0,0 +1,1197 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Udmurt (http://www.transifex.com/django/django/language/" +"udm/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: udm\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "Африкаанс" + +msgid "Arabic" +msgstr "Араб" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "Азербайджан" + +msgid "Bulgarian" +msgstr "Болгар" + +msgid "Belarusian" +msgstr "Беларус" + +msgid "Bengali" +msgstr "Бенгал" + +msgid "Breton" +msgstr "Бретон" + +msgid "Bosnian" +msgstr "Босниец" + +msgid "Catalan" +msgstr "Каталан" + +msgid "Czech" +msgstr "Чех" + +msgid "Welsh" +msgstr "Уэльс" + +msgid "Danish" +msgstr "Датчан" + +msgid "German" +msgstr "Немец" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Грек" + +msgid "English" +msgstr "Англи" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "Британиысь англи" + +msgid "Esperanto" +msgstr "Эсперанто" + +msgid "Spanish" +msgstr "Испан" + +msgid "Argentinian Spanish" +msgstr "Аргентинаысь испан" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Мексикаысь испан" + +msgid "Nicaraguan Spanish" +msgstr "Никарагуаысь испан" + +msgid "Venezuelan Spanish" +msgstr "Венесуэлаысь испан" + +msgid "Estonian" +msgstr "Эстон" + +msgid "Basque" +msgstr "Баск" + +msgid "Persian" +msgstr "Перс" + +msgid "Finnish" +msgstr "Финн" + +msgid "French" +msgstr "Француз" + +msgid "Frisian" +msgstr "Фриз" + +msgid "Irish" +msgstr "Ирланд" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Галисий" + +msgid "Hebrew" +msgstr "Иврит" + +msgid "Hindi" +msgstr "Хинди" + +msgid "Croatian" +msgstr "Хорват" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Венгер" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Интерлингва" + +msgid "Indonesian" +msgstr "Индонези" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "Исланд" + +msgid "Italian" +msgstr "Итальян" + +msgid "Japanese" +msgstr "Япон" + +msgid "Georgian" +msgstr "Грузин" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Казах" + +msgid "Khmer" +msgstr "Кхмер" + +msgid "Kannada" +msgstr "Каннада" + +msgid "Korean" +msgstr "Корей" + +msgid "Luxembourgish" +msgstr "Люксембург" + +msgid "Lithuanian" +msgstr "Литва" + +msgid "Latvian" +msgstr "Латвий" + +msgid "Macedonian" +msgstr "Македон" + +msgid "Malayalam" +msgstr "Малаялам" + +msgid "Mongolian" +msgstr "Монгол" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Непал" + +msgid "Dutch" +msgstr "Голланд" + +msgid "Norwegian Nynorsk" +msgstr "Норвег (нюнорск)" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "Панджаби" + +msgid "Polish" +msgstr "Поляк" + +msgid "Portuguese" +msgstr "Португал" + +msgid "Brazilian Portuguese" +msgstr "Бразилиысь португал" + +msgid "Romanian" +msgstr "Румын" + +msgid "Russian" +msgstr "Ӟуч" + +msgid "Slovak" +msgstr "Словак" + +msgid "Slovenian" +msgstr "Словен" + +msgid "Albanian" +msgstr "Албан" + +msgid "Serbian" +msgstr "Серб" + +msgid "Serbian Latin" +msgstr "Серб (латиницаен)" + +msgid "Swedish" +msgstr "Швед" + +msgid "Swahili" +msgstr "Суахили" + +msgid "Tamil" +msgstr "Тамиль" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Thai" +msgstr "Тай" + +msgid "Turkish" +msgstr "Турок" + +msgid "Tatar" +msgstr "Бигер" + +msgid "Udmurt" +msgstr "Удмурт" + +msgid "Ukrainian" +msgstr "Украин" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Вьетнам" + +msgid "Simplified Chinese" +msgstr "Китай (капчиятэм)" + +msgid "Traditional Chinese" +msgstr "Китай (традици)" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Тазэ шонер гожтэ." + +msgid "Enter a valid URL." +msgstr "Шонер URL гожтэ." + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "Электорн почта адресэз шонер гожтэ" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Шонер IPv4-адрес гожтэ." + +msgid "Enter a valid IPv6 address." +msgstr "Шонер IPv6-адрес гожтэ." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Шонер IPv4 яке IPv6 адрес гожтэ." + +msgid "Enter only digits separated by commas." +msgstr "Запятойёсын висъям лыдпусъёсты гожтэ" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Эскере, та %(limit_value)s шуыса. Али татын %(show_value)s." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Талы %(limit_value)s-лэсь бадӟымгес луыны уг яра." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Талы %(limit_value)s-лэсь ӧжытгес луыны уг яра." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" + +msgid "Enter a number." +msgstr "Лыд гожтэ." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "но" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "Та NULL луыны уг яра." + +msgid "This field cannot be blank." +msgstr "Та буш луыны уг яра." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "Таӵе %(field_label)s-ен %(model_name)s вань ини." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "%(field_type)s типъем бусы" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "True яке False" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Чур (%(max_length)s пусозь кузьда)" + +msgid "Comma-separated integers" +msgstr "Запятоен висъям быдэс лыдъёс" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Дата (час-минут пусйытэк)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Дата но час-минут" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Десятичной лыд." + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Электрон почта адрес" + +msgid "File path" +msgstr "Файллэн нимыз" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Вещественной лыд" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "целой" + +msgid "Big (8 byte) integer" +msgstr "Бадӟым (8 байтъем) целой лыд" + +msgid "IPv4 address" +msgstr "IPv4 адрес" + +msgid "IP address" +msgstr "IP адрес" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "True, False яке None" + +msgid "Positive integer" +msgstr "Целой, нольлэсь бадӟым лыд" + +msgid "Positive small integer" +msgstr "Нольлэсь бадӟым пичи целой лыд" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Компьютерной ним (%(max_length)s пусозь кузьда)" + +msgid "Small integer" +msgstr "Пичи целой лыд" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Час-минут" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Суред" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Мукет моделен герӟет (тип герӟано бусыя валамын)." + +msgid "One-to-one relationship" +msgstr "Одӥг-одӥг герӟет" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Трос-трос герӟет" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "Та клуэ." + +msgid "Enter a whole number." +msgstr "Целой лыд гожтэ." + +msgid "Enter a valid date." +msgstr "Шонер дата гожтэ." + +msgid "Enter a valid time." +msgstr "Шонер час-минут гожтэ." + +msgid "Enter a valid date/time." +msgstr "Шонер дата но час-минут гожтэ." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Одӥг файл но лэзьымтэ. Формалэсь код." + +msgid "No file was submitted." +msgstr "Файл лэземын ӧвӧл." + +msgid "The submitted file is empty." +msgstr "Лэзем файл буш." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Файл лэзе яке файл ӵушоно шуыса пусъе, огдыръя соиз но, таиз но уг яра." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "Суред лэзе. Тӥляд файлды лэзьымтэ яке со суред ӧвӧл." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Шонер вариант быръе. %(value)s вариантъёс пӧлын ӧвӧл." + +msgid "Enter a list of values." +msgstr "Список лэзе." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" + +msgid "Order" +msgstr "Рад" + +msgid "Delete" +msgstr "Ӵушоно" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +msgid "Please correct the duplicate values below." +msgstr "" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Буш кароно" + +msgid "Currently" +msgstr "Али" + +msgid "Change" +msgstr "Тупатъяно" + +msgid "Unknown" +msgstr "Тодымтэ" + +msgid "Yes" +msgstr "Бен" + +msgid "No" +msgstr "Ӧвӧл" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "бен,ӧвӧл,уг тодӥськы" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" + +#, python-format +msgid "%s KB" +msgstr "%s КБ" + +#, python-format +msgid "%s MB" +msgstr "%s МБ" + +#, python-format +msgid "%s GB" +msgstr "%s МБ" + +#, python-format +msgid "%s TB" +msgstr "%s ТБ" + +#, python-format +msgid "%s PB" +msgstr "%s ПБ" + +msgid "p.m." +msgstr "лымшор бере" + +msgid "a.m." +msgstr "лымшор азе" + +msgid "PM" +msgstr "лымшор бере" + +msgid "AM" +msgstr "лымшор азе" + +msgid "midnight" +msgstr "уйшор" + +msgid "noon" +msgstr "лымшор" + +msgid "Monday" +msgstr "Вордӥськон" + +msgid "Tuesday" +msgstr "Пуксён" + +msgid "Wednesday" +msgstr "Вирнунал" + +msgid "Thursday" +msgstr "Покчиарня" + +msgid "Friday" +msgstr "Удмуртарня" + +msgid "Saturday" +msgstr "Кӧснунал" + +msgid "Sunday" +msgstr "Арнянунал" + +msgid "Mon" +msgstr "врд" + +msgid "Tue" +msgstr "пкс" + +msgid "Wed" +msgstr "врн" + +msgid "Thu" +msgstr "пкч" + +msgid "Fri" +msgstr "удм" + +msgid "Sat" +msgstr "ксн" + +msgid "Sun" +msgstr "арн" + +msgid "January" +msgstr "толшор" + +msgid "February" +msgstr "тулыспал" + +msgid "March" +msgstr "южтолэзь" + +msgid "April" +msgstr "оштолэзь" + +msgid "May" +msgstr "куартолэзь" + +msgid "June" +msgstr "инвожо" + +msgid "July" +msgstr "пӧсьтолэзь" + +msgid "August" +msgstr "гудырикошкон" + +msgid "September" +msgstr "куарусён" + +msgid "October" +msgstr "коньывуон" + +msgid "November" +msgstr "шуркынмон" + +msgid "December" +msgstr "толсур" + +msgid "jan" +msgstr "тшт" + +msgid "feb" +msgstr "тпт" + +msgid "mar" +msgstr "южт" + +msgid "apr" +msgstr "ошт" + +msgid "may" +msgstr "крт" + +msgid "jun" +msgstr "ивт" + +msgid "jul" +msgstr "пст" + +msgid "aug" +msgstr "гкт" + +msgid "sep" +msgstr "кут" + +msgid "oct" +msgstr "квт" + +msgid "nov" +msgstr "шкт" + +msgid "dec" +msgstr "тст" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "тшт" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "тпт" + +msgctxt "abbrev. month" +msgid "March" +msgstr "южт" + +msgctxt "abbrev. month" +msgid "April" +msgstr "ошт" + +msgctxt "abbrev. month" +msgid "May" +msgstr "крт" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ивт" + +msgctxt "abbrev. month" +msgid "July" +msgstr "пст" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "гкт" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "кут" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "квт" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "шкт" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "тст" + +msgctxt "alt. month" +msgid "January" +msgstr "толшоре" + +msgctxt "alt. month" +msgid "February" +msgstr "тулыспалэ" + +msgctxt "alt. month" +msgid "March" +msgstr "южтолэзе" + +msgctxt "alt. month" +msgid "April" +msgstr "оштолэзе" + +msgctxt "alt. month" +msgid "May" +msgstr "куартолэзе" + +msgctxt "alt. month" +msgid "June" +msgstr "инвожое" + +msgctxt "alt. month" +msgid "July" +msgstr "пӧсьтолэзе" + +msgctxt "alt. month" +msgid "August" +msgstr "гудырикошконэ" + +msgctxt "alt. month" +msgid "September" +msgstr "куарусёнэ" + +msgctxt "alt. month" +msgid "October" +msgstr "коньывуонэ" + +msgctxt "alt. month" +msgid "November" +msgstr "шуркынмонэ" + +msgctxt "alt. month" +msgid "December" +msgstr "толсуре" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "яке" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Папкаослэсь пуштроссэс татын учкыны уг яра." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s папкалэн пушторсэз" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ug/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ug/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..ce10d7df7f524d3266cc65bedb8c831f80e3c850 GIT binary patch literal 35467 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, 2018 +# Abduqadir Abliz , 2023-2024 +# Abduqadir Abliz , 2023 +# Azat, 2023 +# Murat Orhun , 2023 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Abduqadir Abliz , 2023-2024\n" +"Language-Team: Uyghur (http://app.transifex.com/django/django/language/ug/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ug\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "ئافرىكانسچە" + +msgid "Arabic" +msgstr "ئەرەبچە" + +msgid "Algerian Arabic" +msgstr "ئالجىرىيە ئەرەپچىسى" + +msgid "Asturian" +msgstr "ئاستۇرىچە" + +msgid "Azerbaijani" +msgstr "ئەزەربەيجانچە" + +msgid "Bulgarian" +msgstr "بۇلغارچە" + +msgid "Belarusian" +msgstr "بېلورۇسىچە" + +msgid "Bengali" +msgstr "بېنگالچە" + +msgid "Breton" +msgstr "بىرېتونچە" + +msgid "Bosnian" +msgstr "بوسنىيەچە" + +msgid "Catalan" +msgstr "كاتالانچە" + +msgid "Central Kurdish (Sorani)" +msgstr "مەركىزى كۇردچە ( سورانى) " + +msgid "Czech" +msgstr "چېخچە" + +msgid "Welsh" +msgstr "ۋېلشچە" + +msgid "Danish" +msgstr "دانىشچە" + +msgid "German" +msgstr "گىرمانچە" + +msgid "Lower Sorbian" +msgstr "تۆۋەن سوربچە" + +msgid "Greek" +msgstr "گىرېكچە" + +msgid "English" +msgstr "ئىنگلىزچە" + +msgid "Australian English" +msgstr "" +"ئاۋىستىرالىيە ئىنگلزچىسى\n" +" " + +msgid "British English" +msgstr "ئەنگىلىيە ئىنگىلىزچىسى" + +msgid "Esperanto" +msgstr "دۇنيا تىلى" + +msgid "Spanish" +msgstr "ئىسپانچە" + +msgid "Argentinian Spanish" +msgstr "ئارگېنتىنا ئىسپانچىسى" + +msgid "Colombian Spanish" +msgstr "كولۇمبىيە ئىسپانچىسى" + +msgid "Mexican Spanish" +msgstr "مېكسىكا ئىسپانچىسى" + +msgid "Nicaraguan Spanish" +msgstr "نىكاراگۇئا ئىسپاچىسى" + +msgid "Venezuelan Spanish" +msgstr "ۋېنېزۇئېلا ئىسپانچىسى" + +msgid "Estonian" +msgstr "ئېستونىيەچە" + +msgid "Basque" +msgstr "بەسىكچە" + +msgid "Persian" +msgstr "پارىسچە" + +msgid "Finnish" +msgstr "ڧىنلانىدچە" + +msgid "French" +msgstr "ڧىرانسۇزچە" + +msgid "Frisian" +msgstr "فىرىزىيەچە" + +msgid "Irish" +msgstr "ئىرېلاندىيەچە" + +msgid "Scottish Gaelic" +msgstr "شوتلاندىيەچە" + +msgid "Galician" +msgstr "گالىچىيەچە" + +msgid "Hebrew" +msgstr "ئىبرانىچە" + +msgid "Hindi" +msgstr "ھىندىچە" + +msgid "Croatian" +msgstr "كىرودىيەچە" + +msgid "Upper Sorbian" +msgstr "يۇقىرى سوربچە" + +msgid "Hungarian" +msgstr "ماجارچە" + +msgid "Armenian" +msgstr "ئارمىنىيەچە" + +msgid "Interlingua" +msgstr "خەلقئارالىق تىل" + +msgid "Indonesian" +msgstr "ھىندىنوزىيەچە" + +msgid "Igbo" +msgstr "ئىبوچە" + +msgid "Ido" +msgstr "ئىيدوچە" + +msgid "Icelandic" +msgstr "ئىسلاندىيەچە" + +msgid "Italian" +msgstr "ئىتالىيەچە" + +msgid "Japanese" +msgstr "ياپونچە" + +msgid "Georgian" +msgstr "گرۇزىيەچە" + +msgid "Kabyle" +msgstr "كەبىيلچە" + +msgid "Kazakh" +msgstr "قازاقچە" + +msgid "Khmer" +msgstr "كامىيرچە" + +msgid "Kannada" +msgstr "كانناداچە" + +msgid "Korean" +msgstr "كورىيەچە" + +msgid "Kyrgyz" +msgstr "قىرغىزچە" + +msgid "Luxembourgish" +msgstr "لىيۇكسېمبۇرگچە" + +msgid "Lithuanian" +msgstr "لىتۋاچە" + +msgid "Latvian" +msgstr "لاتۋىيەچە" + +msgid "Macedonian" +msgstr "ماكېدونىيەچە" + +msgid "Malayalam" +msgstr "مالىيالامچە" + +msgid "Mongolian" +msgstr "مۇڭغۇلچە" + +msgid "Marathi" +msgstr "ماراتىچە" + +msgid "Malay" +msgstr "مالايچە" + +msgid "Burmese" +msgstr "بېرمىچە" + +msgid "Norwegian Bokmål" +msgstr "نورۋېگىيە بوكمىلچىسى" + +msgid "Nepali" +msgstr "نېپالچە" + +msgid "Dutch" +msgstr "گوللاندىيەچە" + +msgid "Norwegian Nynorsk" +msgstr "نورۋېگىيە نىنورسكچىسى" + +msgid "Ossetic" +msgstr "ئوسېتچە" + +msgid "Punjabi" +msgstr "پۇنجابىچە" + +msgid "Polish" +msgstr "پولشاچە" + +msgid "Portuguese" +msgstr "پورتۇگالچە" + +msgid "Brazilian Portuguese" +msgstr "بىرازىلىيە پورتۇگالچىسى" + +msgid "Romanian" +msgstr "رومەينىيەچە" + +msgid "Russian" +msgstr "رۇسچە" + +msgid "Slovak" +msgstr "سلوۋاكىيەچە" + +msgid "Slovenian" +msgstr "سىلوۋېنىيەچە" + +msgid "Albanian" +msgstr "ئالبانىيەچە" + +msgid "Serbian" +msgstr "سېربىيەچە" + +msgid "Serbian Latin" +msgstr "سېربىيە لاتىنچىسى" + +msgid "Swedish" +msgstr "شىۋىتسىيەچە" + +msgid "Swahili" +msgstr "سۋاھىلچە" + +msgid "Tamil" +msgstr "تامىلچە" + +msgid "Telugu" +msgstr "تېلۇگۇ" + +msgid "Tajik" +msgstr "تاجىكچە" + +msgid "Thai" +msgstr "تايلاندچە" + +msgid "Turkmen" +msgstr "تۈركمەنچە" + +msgid "Turkish" +msgstr "تۈركچە" + +msgid "Tatar" +msgstr "تاتارچە" + +msgid "Udmurt" +msgstr "ئۇدمۇرتچە" + +msgid "Uyghur" +msgstr "ئۇيغۇرچە" + +msgid "Ukrainian" +msgstr "ئۇكرائىنچە" + +msgid "Urdu" +msgstr "ئوردۇچە" + +msgid "Uzbek" +msgstr "ئۆزبەكچە" + +msgid "Vietnamese" +msgstr "ۋېيتنامچە" + +msgid "Simplified Chinese" +msgstr "خەنزۇچە" + +msgid "Traditional Chinese" +msgstr "ئەنئەنىۋى خەنزۇچىسى" + +msgid "Messages" +msgstr "قىسقا ئۇچۇر" + +msgid "Site Maps" +msgstr "بېكەت خەرىتىسى" + +msgid "Static Files" +msgstr "سىتاتىك ھۆججەت" + +msgid "Syndication" +msgstr "تەشكىللىنىش" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "بەت نومۇرى پۈتۈن سان ئەمەس" + +msgid "That page number is less than 1" +msgstr "بەت نومۇرى 1 دىن كىچىك" + +msgid "That page contains no results" +msgstr "ئۇ بەتتە ھېچقانداق نەتىجە يوق" + +msgid "Enter a valid value." +msgstr "بىر ئىناۋەتلىك قىممەتنى تولدۇرۇڭ" + +msgid "Enter a valid domain name." +msgstr "ئىناۋەتلىك دائىرە ئىسمى كىرگۈزۈلىدۇ." + +msgid "Enter a valid URL." +msgstr "ئىناۋەتلىك URL نى تولدۇرۇڭ" + +msgid "Enter a valid integer." +msgstr "ئىناۋەتلىك پۈتۈن سان تولدۇرۇڭ" + +msgid "Enter a valid email address." +msgstr "ئىناۋەتلىك ئېلخەت ئادرېسىنى كىرگۈزۈڭ." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"ھەرپ ، سان ، ئاستى سىزىق ياكى سىزىقچىلاردىن تەركىب تاپقان ئۈنۈملۈك «سىلاگ» " +"نى كىرگۈزۈڭ." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"يۇنىكودلۇق ھەرپ، سان، ئاستى سىزىق ياكى سىزىقچىلاردىن تەركىب تاپقان ئۈنۈملۈك " +"«slug» نى كىرگۈزۈڭ." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "ئىناۋەتلىك %(protocol)sئادرېسى كىرگۈزۈلىدۇ." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 ياكى IPv6" + +msgid "Enter only digits separated by commas." +msgstr "پەش ئارقىلىق ئايرىلغان رەقەملەرنىلا كىرگۈزۈڭ." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"بۇ قىممەتنىڭ %(limit_value)s بولىشىغا كاپالەتلىك قىلىڭ ( ھازىر " +"%(show_value)s)" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"بۇ قىممەتنىڭ %(limit_value)s دىن تۆۋەن ياكى تەڭ بولۇشىغا كاپالەتلىك قىلىڭ" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"بۇ قىممەتنىڭ %(limit_value)s دىن چوڭ ياكى تەڭ بولۇشىغا كاپالەتلىك قىلىڭ" + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "بۇ قىممەتنىڭ %(limit_value)s نىڭ كۆپەيتمىسى بولىشىغا كاپالەتلىك قىلىڭ" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"بۇ قىممەت كۆپ قەدەم باسقۇچلۇق بولسۇن %(limit_value)s، %(offset)s دىن " +"باشلىنىپ، مەسىلەن %(offset)s، %(valid_value1)s، %(valid_value2)s ۋە باشقىلار." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"بۇ قىممەتنىڭ كەم دېگەندە %(limit_value)d ھەرپ بولۇشىغا كاپالەتلىك قىلىڭ " +"(ھازىر %(show_value)d بار)." +msgstr[1] "" +"بۇ قىممەتنىڭ كەم دېگەندە %(limit_value)d ھەرپ بولۇشىغا كاپالەتلىك قىلىڭ " +"(ھازىر %(show_value)d بار)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"بۇ قىممەتنىڭ ئەڭ كۆپ بولغاندا %(limit_value)d ھەرپ بولۇشىغا كاپالەتلىك قىلىڭ " +"(ھازىر %(show_value)d بار)." +msgstr[1] "" +"بۇ قىممەتنىڭ ئەڭ كۆپ بولغاندا %(limit_value)d ھەرپ بولۇشىغا كاپالەتلىك قىلىڭ " +"(ئۇنىڭدا %(show_value)d بار). " + +msgid "Enter a number." +msgstr "سان كىرگۈزۈڭ." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "جەمى 4%(max)s خانىدىن ئېشىپ كەتمەسلىكىگە كاپالەتلىك قىلىڭ." +msgstr[1] "جەمى %(max)s خانىدىن ئېشىپ كەتمەسلىكىگە كاپالەتلىك قىلىڭ." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "%(max)s ئونلۇق ئورۇندىن ئېشىپ كەتمەسلىكىگە كاپالەتلىك قىلىڭ." +msgstr[1] "%(max)s ئونلۇق ئورۇندىن ئېشىپ كەتمەسلىكىگە كاپالەتلىك قىلىڭ." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"ئونلۇق نۇقتىدىن ئىلگىرى %(max)s خانىدىن ئېشىپ كەتمەسلىكىگە كاپالەتلىك قىلىڭ." +msgstr[1] "" +"ئونلۇق نۇقتىدىن ئىلگىرى %(max)s خانىدىن ئېشىپ كەتمەسلىكىگە كاپالەتلىك قىلىڭ." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"ھۆججەت كېڭەيتىشكە «%(extension)s» رۇخسەت قىلىنمايدۇ. رۇخسەت قىلىنغان " +"كېڭەيتىلمە: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "بوش ھەرپلەرگە رۇخسەت قىلىنمايدۇ." + +msgid "and" +msgstr "ۋە" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s بىلەن بۇ %(field_labels)s مەۋجۇت." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "«%(name)s» چەكلىمىسى بۇزۇلدى." + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "قىممەت %(value)r ئىناۋەتسىز." + +msgid "This field cannot be null." +msgstr "بۇ ئورۇننى بوش قويۇشقا بولمايدۇ" + +msgid "This field cannot be blank." +msgstr "بۇ ئورۇننى بوش قويۇشقا بولمايدۇ" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "بۇ %(field_label)s بىلەن %(model_name)s مەۋجۇت." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s چوقۇم %(date_field_label)s %(lookup_type)s ئۈچۈن بىردىنبىر " +"بولۇشى كېرەك." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "تىپ تۈرى: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "«%(value)s» قىممىتى چوقۇم True ياكى False بولۇشى كېرەك." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "«%(value)s» قىممىتى چوقۇم True ، False ياكى None بولۇشى كېرەك." + +msgid "Boolean (Either True or False)" +msgstr "Boolean (True ياكى False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "(%(max_length)s گە قەدەر ئۇزۇنلۇقتىكى) ھەرپ-بەلگە" + +msgid "String (unlimited)" +msgstr "ھەرپ-بەلگە ( ئۇزۇنلۇققا چەكلىمە يوق)" + +msgid "Comma-separated integers" +msgstr "پەش بىلەن ئايرىلغان پۈتۈن سان" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"«%(value)s» قىممىتى ئىناۋەتسىز ۋاقىت فورماتىدا. ئۇ چوقۇم YYYY-MM-DD شەكلىدە " +"بولۇشى كېرەك." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"«%(value)s» قىممىتىنىڭ توغرا فورماتى (YYYY-MM-DD) بار ، ئەمما ئۇ ۋاقىت " +"ئىناۋەتسىز." + +msgid "Date (without time)" +msgstr "چېسلا (سائەت مىنۇت يوق)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"«%(value)s» قىممىتى ئىناۋەتسىز. ئۇ چوقۇم YYYY-MM-DD HH: MM [: ss [.uuuuuu]] " +"[TZ] شەكلىدە بولۇشى كېرەك." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"«%(value)s» قىممىتىنىڭ توغرا فورماتى بار (YYYY-MM-DD HH: MM [: ss [.uuuuuu]] " +"[TZ]) ئەمما ئۇ ئىناۋەتسىز كۈن / ۋاقىت." + +msgid "Date (with time)" +msgstr "چېسلا (ۋاقىت بىلەن)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "«%(value)s» قىممىتى چوقۇم پۈتۈن سان بولۇشى كېرەك." + +msgid "Decimal number" +msgstr "ئونلۇق سان" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"«%(value)s» قىممىتى ئىناۋەتسىز. ئۇ چوقۇم [DD] [[HH:] MM:] ss [.uuuuuu] " +"شەكلىدە بولۇشى كېرەك." + +msgid "Duration" +msgstr "داۋاملىشىش ۋاقتى" + +msgid "Email address" +msgstr "ئېلخەت ئادرېسى" + +msgid "File path" +msgstr "ھۆججەت يولى" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "«%(value)s» قىممىتى چوقۇم لەيلىمە چېكىتلىك مىقتار بولۇشى كېرەك." + +msgid "Floating point number" +msgstr "كەسرىلىك سان نومۇر" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "«%(value)s» قىممىتى چوقۇم پۈتۈن سان بولۇشى كېرەك." + +msgid "Integer" +msgstr "پۈتۈن سان" + +msgid "Big (8 byte) integer" +msgstr "چوڭ (8 بايىت) پۈتۈن سان" + +msgid "Small integer" +msgstr "كىچىك پۈتۈن سان" + +msgid "IPv4 address" +msgstr "IPv4 ئادرېسى" + +msgid "IP address" +msgstr "IP ئادرېسى" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "«%(value)s» قىممىتى چوقۇم True ، False ياكى None بولۇشى كېرەك." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (True ياكى False)" + +msgid "Positive big integer" +msgstr "مۇسبەت چوڭ پۈتۈن سان" + +msgid "Positive integer" +msgstr "مۇسبەت پۈتۈن سان" + +msgid "Positive small integer" +msgstr "مۇسبەت كىچىك پۈتۈن سان" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (كۆپ بولغاندا %(max_length)s)" + +msgid "Text" +msgstr "تېكىست" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"«%(value)s» قىممىتى ئىناۋەتسىز. ئۇ چوقۇم HH: MM [: ss [.uuuuuu]] شەكلىدە " +"بولۇشى كېرەك." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"«%(value)s» قىممىتىنىڭ توغرا فورماتى بار (HH: MM [: ss [.uuuuuu]]) ئەمما ئۇ " +"ئىناۋەتسىز ۋاقىت." + +msgid "Time" +msgstr "ۋاقىت" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "خام ئىككىلىك سان" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "«%(value)s» ئىناۋەتلىك UUID ئەمەس." + +msgid "Universally unique identifier" +msgstr "ئۇنىۋېرسال بىردىنبىر كىملىك" + +msgid "File" +msgstr "ھۆججەت" + +msgid "Image" +msgstr "رەسىم" + +msgid "A JSON object" +msgstr "JSON ئوبيېكتى" + +msgid "Value must be valid JSON." +msgstr "چوقۇم ئىناۋەتلىك JSON بولۇشى كېرەك." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "مىسال %(value)r %(field)s قىممىتى بولغان %(model)s مەۋجۇت ئەمەس." + +msgid "Foreign Key (type determined by related field)" +msgstr "سىرتقى ئاچقۇچ (تىپى مۇناسىۋەتلىك مەيدان تەرىپىدىن بېكىتىلگەن)" + +msgid "One-to-one relationship" +msgstr "بىرمۇبىر مۇناسىۋەت" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s مۇناسىۋەت" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s مۇناسىۋەتلەر" + +msgid "Many-to-many relationship" +msgstr "كۆپكە كۆب مۇناسىۋىتى" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "بۇ رايون تەلەپ قىلىنىدۇ." + +msgid "Enter a whole number." +msgstr "پۈتۈن ساننى كىرگۈزۈڭ." + +msgid "Enter a valid date." +msgstr "ئىناۋەتلىك چېسلانى كىرگۈزۈڭ." + +msgid "Enter a valid time." +msgstr "ئىناۋەتلىك ۋاقىت كىرگۈزۈڭ." + +msgid "Enter a valid date/time." +msgstr "ئىناۋەتلىك چېسلا / ۋاقىت كىرگۈزۈڭ." + +msgid "Enter a valid duration." +msgstr "ئىناۋەتلىك مۇددىتىنى كىرگۈزۈڭ." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "كۈن سانى چوقۇم {min_days} بىلەن {max_days} ئارىسىدا بولۇشى كېرەك." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "ھېچقانداق ھۆججەت يوللانمىدى. جەدۋەلدىكى كودلاش تۈرىنى تەكشۈرۈڭ." + +msgid "No file was submitted." +msgstr "ھېچقانداق ھۆججەت يوللانمىدى." + +msgid "The submitted file is empty." +msgstr "يوللانغان ھۆججەت قۇرۇق." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"بۇ ھۆججەت نامىنىڭ ئەڭ كۆپ بولغاندا %(max)d ھەرپ بولۇشىغا كاپالەتلىك قىلىڭ " +"(ئۇنىڭدا %(length)d بار)." +msgstr[1] "" +"بۇ ھۆججەت نامىنىڭ ئەڭ كۆپ بولغاندا %(max)d ھەرپ بولۇشىغا كاپالەتلىك قىلىڭ " +"(ئۇنىڭدا %(length)d بار)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "ھۆججەت يوللاڭ ياكى تەكشۈرۈش رامكىسىنى تەكشۈرۈڭ ، ھەر ئىككىسىنى ئەمەس." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"ئىناۋەتلىك رەسىم يۈكلەڭ. سىز يۈكلىگەن ھۆججەت يا رەسىم ئەمەس ۋەياكى بۇزۇلغان." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "ئۈنۈملۈك تاللاشنى تاللاڭ. %(value)s تاللاشلارنىڭ بىرى ئەمەس." + +msgid "Enter a list of values." +msgstr "قىممەت تىزىملىكىنى كىرگۈزۈڭ." + +msgid "Enter a complete value." +msgstr "تولۇق قىممەت كىرگۈزۈڭ." + +msgid "Enter a valid UUID." +msgstr "ئىناۋەتلىك UUID نى كىرگۈزۈڭ." + +msgid "Enter a valid JSON." +msgstr "ئىناۋەتلىك JSON نى كىرگۈزۈڭ." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(يوشۇرۇن مەيدان %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm سانلىق مەلۇماتلىرى يوقاپ كەتتى ياكى ئۆزگەرتىلدى. يوقاپ كەتكەن " +"ساھە: %(field_names)s. ئەگەر مەسىلە ساقلىنىپ قالسا ، خاتالىق دوكلاتىنى " +"تاپشۇرۇشىڭىز كېرەك." + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "ئەڭ كۆپ بولغاندا %(num)d جەدۋەلنى يوللاڭ." +msgstr[1] "ئەڭ كۆپ بولغاندا %(num)d جەدۋەلنى يوللاڭ." + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "كەم دېگەندە %(num)d جەدۋەلنى يوللاڭ." +msgstr[1] "كەم دېگەندە %(num)d جەدۋەلنى يوللاڭ." + +msgid "Order" +msgstr "زاكاز" + +msgid "Delete" +msgstr "ئۆچۈرۈش" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "%(field)s نىڭ قايتىلانغان سانلىق مەلۇماتلىرىنى تۈزىتىڭ." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"%(field)s نىڭ كۆپەيتىلگەن سانلىق مەلۇماتلىرىنى تۈزىتىڭ ، بۇ چوقۇم ئۆزگىچە " +"بولۇشى كېرەك." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"%(field_name)s دىكى قايتىلانغان سانلىق مەلۇماتنى تۈزىتىڭ ، بۇ چوقۇم " +"%(date_field)s دىكى %(lookup)s غا خاس بولۇشى كېرەك." + +msgid "Please correct the duplicate values below." +msgstr "تۆۋەندىكى قايتىلانغان قىممەتنى تۈزىتىڭ." + +msgid "The inline value did not match the parent instance." +msgstr "ئىچكى قىممەت ئاتا مىسالغا ماس كەلمىدى." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"ئۈنۈملۈك تاللاشنى تاللاڭ. بۇ تاللاش ئىشلەتكىلى بولىدىغان تاللاشلارنىڭ بىرى " +"ئەمەس." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "«%(pk)s» ئىناۋەتلىك قىممەت ئەمەس." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s نى %(current_timezone)s ۋاقىت رايونىدا ئىزاھلاشقا بولمايدۇ ئۇ " +"مۈجمەل بولۇشى مۇمكىن ياكى ئۇ مەۋجۇت بولماسلىقى مۇمكىن." + +msgid "Clear" +msgstr "تازىلاش" + +msgid "Currently" +msgstr "نۆۋەتتە" + +msgid "Change" +msgstr "ئۆزگەرتىش" + +msgid "Unknown" +msgstr "نامەلۇم" + +msgid "Yes" +msgstr "ھەئە" + +msgid "No" +msgstr "ياق" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ھەئە، ياق، بەلكىىم" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d بايىت" +msgstr[1] "%(size)d بايىت" + +#, python-format +msgid "%s KB" +msgstr "%s كىلوبايت" + +#, python-format +msgid "%s MB" +msgstr "%sمېگا بايىت" + +#, python-format +msgid "%s GB" +msgstr "%sگىگا بايىت" + +#, python-format +msgid "%s TB" +msgstr "%s تېرا بايت" + +#, python-format +msgid "%s PB" +msgstr "%s پېتا بايىت" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "يېرىم كېچىدە" + +msgid "noon" +msgstr "چۈشتە" + +msgid "Monday" +msgstr "دۈشەنبە" + +msgid "Tuesday" +msgstr "سەيشەنبە" + +msgid "Wednesday" +msgstr "چارشەمبە" + +msgid "Thursday" +msgstr "پەيشەمبە" + +msgid "Friday" +msgstr "جۈمە" + +msgid "Saturday" +msgstr "شەنبە" + +msgid "Sunday" +msgstr "يەكشەنبە" + +msgid "Mon" +msgstr "دۈش" + +msgid "Tue" +msgstr "سەي" + +msgid "Wed" +msgstr "چار" + +msgid "Thu" +msgstr "پەي" + +msgid "Fri" +msgstr "جۈ" + +msgid "Sat" +msgstr "شەن" + +msgid "Sun" +msgstr "يەك" + +msgid "January" +msgstr "يانۋار" + +msgid "February" +msgstr "فېۋرال" + +msgid "March" +msgstr "مارت" + +msgid "April" +msgstr "ئاپرىل" + +msgid "May" +msgstr "ماي" + +msgid "June" +msgstr "ئىيۇن" + +msgid "July" +msgstr "ئىيۇل" + +msgid "August" +msgstr "ئاۋغۇست" + +msgid "September" +msgstr "سىنتەبىر" + +msgid "October" +msgstr "ئۆكتەبىر" + +msgid "November" +msgstr "نويابىر" + +msgid "December" +msgstr "دىكابىر" + +msgid "jan" +msgstr "يان" + +msgid "feb" +msgstr "فېۋ" + +msgid "mar" +msgstr "مار" + +msgid "apr" +msgstr "ئاپ" + +msgid "may" +msgstr "ماي" + +msgid "jun" +msgstr "ئ‍ىيۇن" + +msgid "jul" +msgstr "ئىيۇل" + +msgid "aug" +msgstr "ئاۋ" + +msgid "sep" +msgstr "سېن" + +msgid "oct" +msgstr "ئۆك" + +msgid "nov" +msgstr "نوي" + +msgid "dec" +msgstr "دىك" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "يانۋار" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "فېۋرال" + +msgctxt "abbrev. month" +msgid "March" +msgstr "مارت" + +msgctxt "abbrev. month" +msgid "April" +msgstr "ئاپرىل" + +msgctxt "abbrev. month" +msgid "May" +msgstr "ماي" + +msgctxt "abbrev. month" +msgid "June" +msgstr "ئىيۇن" + +msgctxt "abbrev. month" +msgid "July" +msgstr "ئىيۇل" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "ئاۋغۇست" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "سېنتەبىر" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "ئۆكتەبىر" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "نويابىر" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "دىكابىر" + +msgctxt "alt. month" +msgid "January" +msgstr "يانۋار" + +msgctxt "alt. month" +msgid "February" +msgstr "فېۋرال" + +msgctxt "alt. month" +msgid "March" +msgstr "مارت" + +msgctxt "alt. month" +msgid "April" +msgstr "ئاپرىل" + +msgctxt "alt. month" +msgid "May" +msgstr "ماي" + +msgctxt "alt. month" +msgid "June" +msgstr "ئىيۇن" + +msgctxt "alt. month" +msgid "July" +msgstr "ئىيۇل" + +msgctxt "alt. month" +msgid "August" +msgstr "ئاۋغۇست" + +msgctxt "alt. month" +msgid "September" +msgstr "سىنتەبىر" + +msgctxt "alt. month" +msgid "October" +msgstr "ئۆكتەبىر" + +msgctxt "alt. month" +msgid "November" +msgstr "نويابىر" + +msgctxt "alt. month" +msgid "December" +msgstr "دىكابىر" + +msgid "This is not a valid IPv6 address." +msgstr "بۇ ئىناۋەتلىك IPv6 ئادرېس ئەمەس." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "ياكى" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "،" + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d يىل" +msgstr[1] "%(num)d يىل" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d ئاي" +msgstr[1] "%(num)d ئاي" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d ھەپتە" +msgstr[1] "%(num)d ھەپتە" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d كۈن" +msgstr[1] "%(num)d كۈن" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d سائەت" +msgstr[1] "%(num)d سائەت" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d مىنۇت" +msgstr[1] "%(num)d مىنۇت" + +msgid "Forbidden" +msgstr "چەكلەنگەن" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF دەلىللەش مەغلۇپ بولدى. تەلەپ ئەمەلدىن قالدۇرۇلدى." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"چۈنكى بۇ HTTPS تور بېكىتى توركۆرگۈڭىز تەرىپىدىن پايدىلانما ئۇچۇرلىرىنى " +"ئەۋەتىشنى تەلەب قىلىدۇ، ئەمما ھېچقايسىسى ئەۋەتىلمىدى، شۇ سەۋەبتىن سىز بۇ " +"ئۇچۇرنى كۆرىۋاتىسىز.\n" +"بۇ ئۇچۇرلار سىزنىڭ بىخەتەرلىكڭىز ۋە تور كۆرگۈڭىزنىڭ ئۈچۈنجى شەخىس تەرىپىدىن " +"تۇتقۇن قىلىنىشىنىڭ ئالدىنى ئېلىش ئۈچۈندۇر. " + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"ئەگەر سىز توركۆرگۈچىڭىزنى “Referer” بېكەت سېكىرتكۈچىنى چەكلەپ تەڭشىسىڭىز، بۇ " +"تور بېكەت، ياكى HTTPS ئۇلىنىشى، ياكى “ئوخشاش-مەنبە” ئىلتىماسلىرى ئۈچۈن ئۇنى " +"قايتا ئىچىپ قويۇڭ." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"ئەگەر سىز تەگىنى ياكى " +"“Referrer-Policy: no-referrer” بېكەت سېكىرتكۈچىنى ئىشلىتىۋاتىسىز، ئۇلارنى " +"ئۆچۈرۈڭ. CSRF قوغداش تەلەپ قىلىدۇ “Referer” بېكەت سېكىرتكۈچى قاتتىق " +"سېكىرتىشنى ئېلىپ بېرىشى كېرەك. ئەگەر سىز شەخسىيەتىڭىزگە قاراشقا ئۆزىڭىزنى " +"ئۆزىڭىز قارغىلى بولسىڭىز، ئۈچىنچى تەرەپ تور بېكەتلىرىگە ئۇلىنىشلاردا قاتارلىق ئالتۇرناتىۋىلارنى ئىشلىتىڭ." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +" بۇ تور بېكەت جەدۋەل يوللىغاندا CSRF ساقلانمىسىنى تەلەپ قىلىدۇ. بۇ " +"ساقلانمىلار بىخەتەرلىكنى كۆزدە تۇتۇپ ، تور كۆرگۈچىڭىزنىڭ ئۈچىنچى تەرەپ " +"تەرىپىدىن ئوغرىلانماسلىقىغا كاپالەتلىك قىلىدۇ." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"ئەگەر توركۆرگۈڭىزنى ساقلانمىلارنى چەكلەش ئۈچۈن تەڭشىگەن بولسىڭىز ، ھېچ " +"بولمىغاندا بۇ تور بېكەت ياكى «ئوخشاش مەنبە» تەلەپلىرى ئۈچۈن ئۇلارنى قايتا " +"قوزغىتىڭ." + +msgid "More information is available with DEBUG=True." +msgstr "DEBUG = True بىلەن تېخىمۇ كۆپ ئۇچۇرلارغا ئېرىشكىلى بولىدۇ." + +msgid "No year specified" +msgstr "يىل بەلگىلەنمىدى" + +msgid "Date out of range" +msgstr "ۋاقىت چەكلىمىسىدىن ئېشىب كەتتى" + +msgid "No month specified" +msgstr "ئاي بەلگىلەنمىدى" + +msgid "No day specified" +msgstr "كۈن بەلگىلەنمىدى" + +msgid "No week specified" +msgstr "ھەپتە بەلگىلەنمىدى" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s يوق" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"كەلگۈسى %(verbose_name_plural)s ئىشلەتكىلى بولمايدۇ ، چۈنكى %(class_name)s." +"allow_future بولسا False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "ئىناۋەتسىز چېسلا تىزمىسى «%(datestr)s» بېرىلگەن فورمات «%(format)s»" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "بۇ سوئالغا ماس كېلىدىغان %(verbose_name)s تېپىلمىدى" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "بەت «ئاخىرقى» ئەمەس ،ياكى ئۇنى int غا ئايلاندۇرغىلى بولمىدى." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "ئىناۋەتسىز بەت (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "بوش تىزىملىك %(class_name)s ۋە «.allow_empty» بولسا False." + +msgid "Directory indexes are not allowed here." +msgstr "ھۆججەت مۇندەرىجىسى بۇ يەردە رۇخسەت قىلىنمايدۇ." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "%(path)s مەۋجۇت ئەمەس" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s نىڭ كۆرسەتكۈچىسى" + +msgid "The install worked successfully! Congratulations!" +msgstr "قاچىلاش مۇۋەپپەقىيەتلىك بولدى! مۇبارەك بولسۇن!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +" Django %(version)s ئۈچۈن ئېلان قىلىش " +"خاتىرىسى نى كۆرۈڭ" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"سىز بۇ بەتنى كۆرۈۋاتىسىز ، چۈنكى DEBUG = " +"True سىزنىڭ تەڭشەك ھۆججىتىڭىزدە ،شۇنداقلا ھېچقانداق URL تەڭشەلىمىگەن." + +msgid "Django Documentation" +msgstr " Django قوللانمىسى" + +msgid "Topics, references, & how-to’s" +msgstr "تېما ، پايدىلانما ، & amp; قانداق قىلىش " + +msgid "Tutorial: A Polling App" +msgstr "دەرسلىك: بىر بېلەت تاشلاش دىتالى" + +msgid "Get started with Django" +msgstr "Django بىلەن تونۇشۇش" + +msgid "Django Community" +msgstr "Django جەمىيىتى" + +msgid "Connect, get help, or contribute" +msgstr "قوشۇلۇش ، ياردەمگە ئېرىشىش ياكى تۆھپە قوشۇش" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ug/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/ug/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ug/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/ug/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fe1fd46d394b82595c2e7483da9ae1795b373317 GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF8&(HS^H3}6ro zSi}Ji)j$o^K^^gcM-9+GO^fQaN^aRzx^Bsghl`TgGh&pSD+Ij!navsrvYXN;$Iq z9(KWK=s8)KX5MQU=h%~QP$c0h&%7wiav#IgFX9tET|9f)A`frYe(>UxDi1CFRfL5A qujWFG13wOhA`<2}P5e9?tlu{LZGuq|hj-NnW>*AQmZeV*PyYa>j)2Pm literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ug/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/ug/formats.py new file mode 100644 index 0000000..92f0134 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ug/formats.py @@ -0,0 +1,14 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "j F Y" +TIME_FORMAT = "G:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "Y/m/d" +SHORT_DATETIME_FORMAT = "Y/m/d G:i" +FIRST_DAY_OF_WEEK = 1 +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "," +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..0e9dc9f0794bba4ffe5d3f852d1f6bdd2ac180ca GIT binary patch literal 29855 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 V4@8+3Z;)A6eZ6eg+^>AW{NEOvY7YPa literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po new file mode 100644 index 0000000..b2a7187 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po @@ -0,0 +1,1382 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Oleksandr Chernihov , 2014 +# Boryslav Larin , 2011,2022 +# Denis Podlesniy , 2016 +# Igor Melnyk, 2014-2015,2017 +# Illia Volochii , 2019,2021-2023 +# Jannis Leidel , 2011 +# Kirill Gagarski , 2014 +# Max V. Stotsky , 2014 +# Mikhail Kolesnik , 2015 +# Mykola Zamkovoi , 2014 +# Natalia, 2024 +# Alex Bolotov , 2013-2014 +# Roman Kozlovskyi , 2012 +# Sergiy Kuzmenko , 2011 +# tarasyyyk , 2018 +# tarasyyyk , 2019 +# Zoriana Zaiats, 2016-2017 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: Natalia, 2024\n" +"Language-Team: Ukrainian (http://app.transifex.com/django/django/language/" +"uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != " +"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % " +"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || " +"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +msgid "Afrikaans" +msgstr "Африканська" + +msgid "Arabic" +msgstr "Арабська" + +msgid "Algerian Arabic" +msgstr "Алжирська арабська" + +msgid "Asturian" +msgstr "Астурійська" + +msgid "Azerbaijani" +msgstr "Азербайджанська" + +msgid "Bulgarian" +msgstr "Болгарська" + +msgid "Belarusian" +msgstr "Білоруська" + +msgid "Bengali" +msgstr "Бенгальська" + +msgid "Breton" +msgstr "Бретонська" + +msgid "Bosnian" +msgstr "Боснійська" + +msgid "Catalan" +msgstr "Каталонська" + +msgid "Central Kurdish (Sorani)" +msgstr "Центральнокурдська (сорані)" + +msgid "Czech" +msgstr "Чеська" + +msgid "Welsh" +msgstr "Валлійська" + +msgid "Danish" +msgstr "Датська" + +msgid "German" +msgstr "Німецька" + +msgid "Lower Sorbian" +msgstr "Нижньолужицька" + +msgid "Greek" +msgstr "Грецька" + +msgid "English" +msgstr "Англійська" + +msgid "Australian English" +msgstr "Австралійська англійська" + +msgid "British English" +msgstr "Англійська (Великобританія)" + +msgid "Esperanto" +msgstr "Есперанто" + +msgid "Spanish" +msgstr "Іспанська" + +msgid "Argentinian Spanish" +msgstr "Іспанська (Аргентина)" + +msgid "Colombian Spanish" +msgstr "Колумбійська іспанська" + +msgid "Mexican Spanish" +msgstr "Мексиканська іспанська" + +msgid "Nicaraguan Spanish" +msgstr "Нікарагуанська іспанська" + +msgid "Venezuelan Spanish" +msgstr "Венесуельська іспанська" + +msgid "Estonian" +msgstr "Естонська" + +msgid "Basque" +msgstr "Баскська" + +msgid "Persian" +msgstr "Перська" + +msgid "Finnish" +msgstr "Фінська" + +msgid "French" +msgstr "Французька" + +msgid "Frisian" +msgstr "Фризька" + +msgid "Irish" +msgstr "Ірландська" + +msgid "Scottish Gaelic" +msgstr "Шотландська ґельська" + +msgid "Galician" +msgstr "Галіційська" + +msgid "Hebrew" +msgstr "Іврит" + +msgid "Hindi" +msgstr "Хінді" + +msgid "Croatian" +msgstr "Хорватська" + +msgid "Upper Sorbian" +msgstr "Верхньолужицька" + +msgid "Hungarian" +msgstr "Угорська" + +msgid "Armenian" +msgstr "Вірменська" + +msgid "Interlingua" +msgstr "Інтерлінгва" + +msgid "Indonesian" +msgstr "Індонезійська" + +msgid "Igbo" +msgstr "Ігбо" + +msgid "Ido" +msgstr "Ідо" + +msgid "Icelandic" +msgstr "Ісландська" + +msgid "Italian" +msgstr "Італійська" + +msgid "Japanese" +msgstr "Японська" + +msgid "Georgian" +msgstr "Грузинська" + +msgid "Kabyle" +msgstr "Кабіли" + +msgid "Kazakh" +msgstr "Казахська" + +msgid "Khmer" +msgstr "Кхмерська" + +msgid "Kannada" +msgstr "Каннадська" + +msgid "Korean" +msgstr "Корейська" + +msgid "Kyrgyz" +msgstr "Киргизька" + +msgid "Luxembourgish" +msgstr "Люксембурзька" + +msgid "Lithuanian" +msgstr "Литовська" + +msgid "Latvian" +msgstr "Латвійська" + +msgid "Macedonian" +msgstr "Македонська" + +msgid "Malayalam" +msgstr "Малаялам" + +msgid "Mongolian" +msgstr "Монгольська" + +msgid "Marathi" +msgstr "Маратхі" + +msgid "Malay" +msgstr "Малайська" + +msgid "Burmese" +msgstr "Бірманська" + +msgid "Norwegian Bokmål" +msgstr "Норвезька (Букмол)" + +msgid "Nepali" +msgstr "Непальська" + +msgid "Dutch" +msgstr "Голландська" + +msgid "Norwegian Nynorsk" +msgstr "Норвезька (Нюнорськ)" + +msgid "Ossetic" +msgstr "Осетинська" + +msgid "Punjabi" +msgstr "Панджабі" + +msgid "Polish" +msgstr "Польська" + +msgid "Portuguese" +msgstr "Португальська" + +msgid "Brazilian Portuguese" +msgstr "Бразильська португальська" + +msgid "Romanian" +msgstr "Румунська" + +msgid "Russian" +msgstr "Російська" + +msgid "Slovak" +msgstr "Словацька" + +msgid "Slovenian" +msgstr "Словенська" + +msgid "Albanian" +msgstr "Албанська" + +msgid "Serbian" +msgstr "Сербська" + +msgid "Serbian Latin" +msgstr "Сербська (латинська)" + +msgid "Swedish" +msgstr "Шведська" + +msgid "Swahili" +msgstr "Суахілі" + +msgid "Tamil" +msgstr "Тамільська" + +msgid "Telugu" +msgstr "Телугу" + +msgid "Tajik" +msgstr "Таджицька" + +msgid "Thai" +msgstr "Тайська" + +msgid "Turkmen" +msgstr "Туркменська" + +msgid "Turkish" +msgstr "Турецька" + +msgid "Tatar" +msgstr "Татарська" + +msgid "Udmurt" +msgstr "Удмуртська" + +msgid "Uyghur" +msgstr "" + +msgid "Ukrainian" +msgstr "Українська" + +msgid "Urdu" +msgstr "Урду" + +msgid "Uzbek" +msgstr "Узбецька" + +msgid "Vietnamese" +msgstr "В'єтнамська" + +msgid "Simplified Chinese" +msgstr "Китайська спрощена" + +msgid "Traditional Chinese" +msgstr "Китайська традиційна" + +msgid "Messages" +msgstr "Повідомлення" + +msgid "Site Maps" +msgstr "Мапи сайту" + +msgid "Static Files" +msgstr "Статичні файли" + +msgid "Syndication" +msgstr "Об'єднання" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "Номер сторінки не є цілим числом" + +msgid "That page number is less than 1" +msgstr "Номер сторінки менше 1" + +msgid "That page contains no results" +msgstr "Сторінка не містить результатів" + +msgid "Enter a valid value." +msgstr "Введіть коректне значення." + +msgid "Enter a valid domain name." +msgstr "" + +msgid "Enter a valid URL." +msgstr "Введіть коректний URL." + +msgid "Enter a valid integer." +msgstr "Введіть коректне ціле число." + +msgid "Enter a valid email address." +msgstr "Введіть коректну email адресу." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Введіть коректне значення 'slug' (короткого заголовку), що може містити " +"тільки літери, числа, символи підкреслювання або дефіси." + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "" + +msgid "IPv4" +msgstr "" + +msgid "IPv6" +msgstr "" + +msgid "IPv4 or IPv6" +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "Введіть тільки цифри, що розділені комами." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Переконайтеся, що це значення дорівнює %(limit_value)s (зараз " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Переконайтеся, що це значення менше чи дорівнює %(limit_value)s." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Переконайтеся, що це значення більше чи дорівнює %(limit_value)s." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Переконайтеся, що це значення містить не менш ніж %(limit_value)d символ " +"(зараз %(show_value)d)." +msgstr[1] "" +"Переконайтеся, що це значення містить не менш ніж %(limit_value)d символів " +"(зараз %(show_value)d)." +msgstr[2] "" +"Переконайтеся, що це значення містить не менш ніж %(limit_value)d символів " +"(зараз %(show_value)d)." +msgstr[3] "" +"Переконайтеся, що це значення містить не менш ніж %(limit_value)d символів " +"(зараз %(show_value)d)." + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Переконайтеся, що це значення містить не більше ніж %(limit_value)d символ " +"(зараз %(show_value)d)." +msgstr[1] "" +"Переконайтеся, що це значення містить не більше ніж %(limit_value)d символи " +"(зараз %(show_value)d)." +msgstr[2] "" +"Переконайтеся, що це значення містить не більше ніж %(limit_value)d символів " +"(зараз %(show_value)d)." +msgstr[3] "" +"Переконайтеся, що це значення містить не більше ніж %(limit_value)d символів " +"(зараз %(show_value)d)." + +msgid "Enter a number." +msgstr "Введіть число." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Переконайтеся, що загалом тут не більше ніж %(max)s цифра." +msgstr[1] "Переконайтеся, що загалом тут не більше ніж %(max)s цифер." +msgstr[2] "Переконайтеся, що загалом тут не більше ніж %(max)s цифер." +msgstr[3] "Переконайтеся, що загалом тут не більше ніж %(max)s цифер." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"Переконайтеся, що тут не більше ніж %(max)s цифра після десяткової коми." +msgstr[1] "" +"Переконайтеся, що тут не більше ніж %(max)s цифри після десяткової коми." +msgstr[2] "" +"Переконайтеся, що тут не більше ніж %(max)s цифер після десяткової коми." +msgstr[3] "" +"Переконайтеся, що тут не більше ніж %(max)s цифер після десяткової коми." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Переконайтеся, що тут не більше ніж %(max)s цифра до десяткової коми." +msgstr[1] "" +"Переконайтеся, що тут не більше ніж %(max)s цифри до десяткової коми." +msgstr[2] "" +"Переконайтеся, що тут не більше ніж %(max)s цифер до десяткової коми." +msgstr[3] "" +"Переконайтеся, що тут не більше ніж %(max)s цифер до десяткової коми." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"Розширення файлу '%(extension)s' не дозволено. Дозволені розширення: ' " +"%(allowed_extensions)s'." + +msgid "Null characters are not allowed." +msgstr "Символи Null не дозволені." + +msgid "and" +msgstr "та" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s з таким %(field_labels)s вже існує." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Значення %(value)r не є дозволеним вибором." + +msgid "This field cannot be null." +msgstr "Це поле не може бути пустим." + +msgid "This field cannot be blank." +msgstr "Це поле не може бути порожнім." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s з таким %(field_label)s вже існує." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s повинне бути унікальним для %(date_field_label)s " +"%(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Тип поля: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "Значення \"%(value)s\" повинне бути True, False, або None." + +msgid "Boolean (Either True or False)" +msgstr "Булеве значення (True або False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Рядок (до %(max_length)s)" + +msgid "String (unlimited)" +msgstr "Рядок (необмежений)" + +msgid "Comma-separated integers" +msgstr "Цілі, розділені комою" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Дата (без часу)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"Значення \"%(value)s\" має невірний формат. Воно повинне бути у форматі YYYY-" +"MM-DD HH:MM[:ss[.uuuuuu]][TZ]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Дата (з часом)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Десяткове число" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "Тривалість" + +msgid "Email address" +msgstr "E-mail адреса" + +msgid "File path" +msgstr "Шлях до файла" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Число з плаваючою комою" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Ціле число" + +msgid "Big (8 byte) integer" +msgstr "Велике (8 байтів) ціле число" + +msgid "Small integer" +msgstr "Мале ціле число" + +msgid "IPv4 address" +msgstr "IPv4 адреса" + +msgid "IP address" +msgstr "IP адреса" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Булеве значення (включаючи True, False або None)" + +msgid "Positive big integer" +msgstr "Додатнє велике ціле число" + +msgid "Positive integer" +msgstr "Додатнє ціле число" + +msgid "Positive small integer" +msgstr "Додатнє мале ціле число" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (до %(max_length)s)" + +msgid "Text" +msgstr "Текст" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"Значення \"%(value)s\" має невірний формат. Воно повинне бути у форматі HH:" +"MM[:ss[.uuuuuu]]." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Час" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "Необроблені двійкові дані" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” не є валідним UUID." + +msgid "Universally unique identifier" +msgstr "Універсальний унікальний ідентифікатор" + +msgid "File" +msgstr "Файл" + +msgid "Image" +msgstr "Зображення" + +msgid "A JSON object" +msgstr "JSON-об'єкт" + +msgid "Value must be valid JSON." +msgstr "Значення має бути коректним JSON." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "Екземпляр %(model)s з %(field)s %(value)r не існує." + +msgid "Foreign Key (type determined by related field)" +msgstr "Зовнішній ключ (тип визначається відповідно поля)" + +msgid "One-to-one relationship" +msgstr "Один-до-одного" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s звязок" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s звязки" + +msgid "Many-to-many relationship" +msgstr "Багато-до-багатьох" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Це поле обов'язкове." + +msgid "Enter a whole number." +msgstr "Введіть ціле число." + +msgid "Enter a valid date." +msgstr "Введіть коректну дату." + +msgid "Enter a valid time." +msgstr "Введіть коректний час." + +msgid "Enter a valid date/time." +msgstr "Введіть коректну дату/час." + +msgid "Enter a valid duration." +msgstr "Введіть коректну тривалість." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Кількість днів повинна бути від {min_days} до {max_days}." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Файл не надіслано. Перевірте тип кодування форми." + +msgid "No file was submitted." +msgstr "Файл не було надіслано." + +msgid "The submitted file is empty." +msgstr "Переданий файл порожній." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Переконайтеся, що це ім'я файлу містить не більше ніж з %(max)d символ " +"(зараз %(length)d)." +msgstr[1] "" +"Переконайтеся, що це ім'я файлу містить не більше ніж з %(max)d символи " +"(зараз %(length)d)." +msgstr[2] "" +"Переконайтеся, що це ім'я файлу містить не більше ніж з %(max)d символів " +"(зараз %(length)d)." +msgstr[3] "" +"Переконайтеся, що це ім'я файлу містить не більше ніж з %(max)d символів " +"(зараз %(length)d)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Будь ласка, або завантажте файл, або відмітьте прапорець очищення, а не " +"обидва варіанти одразу" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Завантажте правильний малюнок. Файл, який ви завантажили, не є малюнком, або " +"є зіпсованим малюнком." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "Зробить коректний вибір, %(value)s немає серед варіантів вибору." + +msgid "Enter a list of values." +msgstr "Введіть список значень." + +msgid "Enter a complete value." +msgstr "Введіть значення повністю." + +msgid "Enter a valid UUID." +msgstr "Введіть коректне значення UUID." + +msgid "Enter a valid JSON." +msgstr "Введіть коректний JSON." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Приховане поле %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +msgid "Order" +msgstr "Послідовність" + +msgid "Delete" +msgstr "Видалити" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Будь ласка, виправте повторювані дані для поля %(field)s." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Будь ласка, виправте повторювані дані для поля %(field)s, яке має бути " +"унікальним." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Будь ласка, виправте повторювані дані для поля %(field_name)s, яке має бути " +"унікальним для вибірки %(lookup)s на %(date_field)s." + +msgid "Please correct the duplicate values below." +msgstr "Будь ласка, виправте повторювані значення нижче." + +msgid "The inline value did not match the parent instance." +msgstr "Зв'язане значення не відповідає батьківському екземпляру." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "Зробить коректний вибір. Такого варіанту нема серед доступних." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Очистити" + +msgid "Currently" +msgstr "Наразі" + +msgid "Change" +msgstr "Змінити" + +msgid "Unknown" +msgstr "Невідомо" + +msgid "Yes" +msgstr "Так" + +msgid "No" +msgstr "Ні" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "так,ні,можливо" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d байт" +msgstr[1] "%(size)d байти" +msgstr[2] "%(size)d байтів" +msgstr[3] "%(size)d байтів" + +#, python-format +msgid "%s KB" +msgstr "%s Кб" + +#, python-format +msgid "%s MB" +msgstr "%s Мб" + +#, python-format +msgid "%s GB" +msgstr "%s Гб" + +#, python-format +msgid "%s TB" +msgstr "%s Тб" + +#, python-format +msgid "%s PB" +msgstr "%s Пб" + +msgid "p.m." +msgstr "після полудня" + +msgid "a.m." +msgstr "до полудня" + +msgid "PM" +msgstr "після полудня" + +msgid "AM" +msgstr "до полудня" + +msgid "midnight" +msgstr "північ" + +msgid "noon" +msgstr "полудень" + +msgid "Monday" +msgstr "Понеділок" + +msgid "Tuesday" +msgstr "Вівторок" + +msgid "Wednesday" +msgstr "Середа" + +msgid "Thursday" +msgstr "Четвер" + +msgid "Friday" +msgstr "П'ятниця" + +msgid "Saturday" +msgstr "Субота" + +msgid "Sunday" +msgstr "Неділя" + +msgid "Mon" +msgstr "Пн" + +msgid "Tue" +msgstr "Вт" + +msgid "Wed" +msgstr "Ср" + +msgid "Thu" +msgstr "Чт" + +msgid "Fri" +msgstr "Пт" + +msgid "Sat" +msgstr "Сб" + +msgid "Sun" +msgstr "Нд" + +msgid "January" +msgstr "Січень" + +msgid "February" +msgstr "Лютий" + +msgid "March" +msgstr "Березень" + +msgid "April" +msgstr "Квітень" + +msgid "May" +msgstr "Травень" + +msgid "June" +msgstr "Червень" + +msgid "July" +msgstr "Липень" + +msgid "August" +msgstr "Серпень" + +msgid "September" +msgstr "Вересень" + +msgid "October" +msgstr "Жовтень" + +msgid "November" +msgstr "Листопад" + +msgid "December" +msgstr "Грудень" + +msgid "jan" +msgstr "січ" + +msgid "feb" +msgstr "лют" + +msgid "mar" +msgstr "бер" + +msgid "apr" +msgstr "кві" + +msgid "may" +msgstr "тра" + +msgid "jun" +msgstr "чер" + +msgid "jul" +msgstr "лип" + +msgid "aug" +msgstr "сер" + +msgid "sep" +msgstr "вер" + +msgid "oct" +msgstr "жов" + +msgid "nov" +msgstr "лис" + +msgid "dec" +msgstr "гру" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Січ." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Лют." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Березень" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Квітень" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Травень" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Червень" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Липень" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Сер." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Вер." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Жов." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Лис." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Гру." + +msgctxt "alt. month" +msgid "January" +msgstr "січня" + +msgctxt "alt. month" +msgid "February" +msgstr "лютого" + +msgctxt "alt. month" +msgid "March" +msgstr "березня" + +msgctxt "alt. month" +msgid "April" +msgstr "квітня" + +msgctxt "alt. month" +msgid "May" +msgstr "травня" + +msgctxt "alt. month" +msgid "June" +msgstr "червня" + +msgctxt "alt. month" +msgid "July" +msgstr "липня" + +msgctxt "alt. month" +msgid "August" +msgstr "серпня" + +msgctxt "alt. month" +msgid "September" +msgstr "вересня" + +msgctxt "alt. month" +msgid "October" +msgstr "жовтня" + +msgctxt "alt. month" +msgid "November" +msgstr "листопада" + +msgctxt "alt. month" +msgid "December" +msgstr "грудня" + +msgid "This is not a valid IPv6 address." +msgstr "Це не є правильною адресою IPv6." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "або" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d рік" +msgstr[1] "%(num)d роки" +msgstr[2] "%(num)d років" +msgstr[3] "%(num)d років" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d місяць" +msgstr[1] "%(num)d місяці" +msgstr[2] "%(num)d місяців" +msgstr[3] "%(num)d місяців" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d тиждень" +msgstr[1] "%(num)d тижні" +msgstr[2] "%(num)d тижнів" +msgstr[3] "%(num)d тижнів" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d день" +msgstr[1] "%(num)d дні" +msgstr[2] "%(num)d днів" +msgstr[3] "%(num)d днів" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d година" +msgstr[1] "%(num)d години" +msgstr[2] "%(num)d годин" +msgstr[3] "%(num)d годин" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d хвилина" +msgstr[1] "%(num)d хвилини" +msgstr[2] "%(num)d хвилин" +msgstr[3] "%(num)d хвилин" + +msgid "Forbidden" +msgstr "Заборонено" + +msgid "CSRF verification failed. Request aborted." +msgstr "Помилка перевірки CSRF. Запит відхилений." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Якщо ви налаштували свій браузер таким чином, щоб заборонити йому передавати " +"заголовок «Referer», будь ласка, дозвольте йому відсилати даний заголовок " +"принаймні для даного сайту, або для всіх HTTPS-з'єднань, або для подібних " +"запитів." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Ви бачите це повідомлення, тому що даний сайт вимагає, щоб при відправці " +"форм була відправлена ​​і CSRF-cookie. Даний тип cookie необхідний з міркувань " +"безпеки, щоб переконатися, що ваш браузер не був взламаний третьою стороною." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "Більше інформації можна отримати з DEBUG=True." + +msgid "No year specified" +msgstr "Рік не вказано" + +msgid "Date out of range" +msgstr "Дата поза діапазоном" + +msgid "No month specified" +msgstr "Місяць не вказано" + +msgid "No day specified" +msgstr "День не вказано" + +msgid "No week specified" +msgstr "Тиждень не вказано" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s недоступні" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Майбутні %(verbose_name_plural)s недоступні, тому що %(class_name)s." +"allow_future має нульове значення." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Жодні %(verbose_name)s не були знайдені по запиту" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Невірна сторінка (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Перегляд вмісту каталогу не дозволено." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" не існує" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Вміст директорії %(directory)s" + +msgid "The install worked successfully! Congratulations!" +msgstr "Вітаємо, команда install завершилась успішно!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Нотатки релізу for Django %(version)s" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Ви бачите цю сторінку тому що змінна DEBUG встановлена на True у вашому файлі " +"конфігурації і ви не налаштували жодного URL." + +msgid "Django Documentation" +msgstr "Документація Django" + +msgid "Topics, references, & how-to’s" +msgstr "Статті, довідки та інструкції" + +msgid "Tutorial: A Polling App" +msgstr "Посібник: програма голосування" + +msgid "Get started with Django" +msgstr "Початок роботи з Django" + +msgid "Django Community" +msgstr "Спільнота Django" + +msgid "Connect, get help, or contribute" +msgstr "Отримати допомогу, чи допомогти" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uk/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/uk/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/uk/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4707c0af0ad42bbe34aca0884d37f667ba6a8855 GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYFfmuPN5w%=klHNA4a3eMX^WWb@MA&eB&tU2T7WX!O1JU3j-TO zK?>23Mhs*S3t7ZL4)Ksj9oRt!@Bj&@yI`QOpiu7<4ZGO)vG1Wn*heBfL<1PkWPUV zj#(TVQ^}f2Ue(`6vNW&wIvIDW(Ow1iBh;_*$$xuBG^}@0-?RG9;BI7=@bR#+GCI#$IrApQ%c?CnL{rTt9A3efk%* z#_6W(k}fN_ReZEHc z#a0_^Xb0A*=Emo)6UOvC-Z!}PIiTS_2Ikla-E}c dm7S2+Qvhr@j-#6&!!tDZTi^tq6F6F+{{Xs1&4vH~ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uk/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/uk/formats.py new file mode 100644 index 0000000..0f28831 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/uk/formats.py @@ -0,0 +1,35 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "d E Y р." +TIME_FORMAT = "H:i" +DATETIME_FORMAT = "d E Y р. H:i" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "d F" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d %B %Y", # '25 October 2006' +] +TIME_INPUT_FORMATS = [ + "%H:%M:%S", # '14:30:59' + "%H:%M:%S.%f", # '14:30:59.000200' + "%H:%M", # '14:30' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d %B %Y %H:%M:%S", # '25 October 2006 14:30:59' + "%d %B %Y %H:%M:%S.%f", # '25 October 2006 14:30:59.000200' + "%d %B %Y %H:%M", # '25 October 2006 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..706c2ce7a14dfb9c05ba8d97206e4742419620ab GIT binary patch literal 12291 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 PZJYMr#Kze)zTNx}uxfxN literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po new file mode 100644 index 0000000..6067c00 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po @@ -0,0 +1,1222 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Mansoorulhaq Mansoor , 2011 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-27 22:40+0200\n" +"PO-Revision-Date: 2019-11-05 00:38+0000\n" +"Last-Translator: Ramiro Morales\n" +"Language-Team: Urdu (http://www.transifex.com/django/django/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Afrikaans" +msgstr "" + +msgid "Arabic" +msgstr "عربی" + +msgid "Asturian" +msgstr "" + +msgid "Azerbaijani" +msgstr "" + +msgid "Bulgarian" +msgstr "بلغاری" + +msgid "Belarusian" +msgstr "" + +msgid "Bengali" +msgstr "بنگالی" + +msgid "Breton" +msgstr "" + +msgid "Bosnian" +msgstr "بوسنیائی" + +msgid "Catalan" +msgstr "کیٹالانی" + +msgid "Czech" +msgstr "زیچ" + +msgid "Welsh" +msgstr "ویلش" + +msgid "Danish" +msgstr "ڈینش" + +msgid "German" +msgstr "جرمن" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "گریک" + +msgid "English" +msgstr "انگلش" + +msgid "Australian English" +msgstr "" + +msgid "British English" +msgstr "برطانوی انگلش" + +msgid "Esperanto" +msgstr "" + +msgid "Spanish" +msgstr "ھسپانوی" + +msgid "Argentinian Spanish" +msgstr "ارجنٹائنی سپینش" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "" + +msgid "Nicaraguan Spanish" +msgstr "" + +msgid "Venezuelan Spanish" +msgstr "" + +msgid "Estonian" +msgstr "اسٹانین" + +msgid "Basque" +msgstr "باسک" + +msgid "Persian" +msgstr "فارسی" + +msgid "Finnish" +msgstr "فنش" + +msgid "French" +msgstr "فرانسیسی" + +msgid "Frisian" +msgstr "فریسی" + +msgid "Irish" +msgstr "آئرش" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "گیلیشین" + +msgid "Hebrew" +msgstr "عبرانی" + +msgid "Hindi" +msgstr "ھندی" + +msgid "Croatian" +msgstr "کروشن" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "ھونگارین" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "" + +msgid "Indonesian" +msgstr "انڈونیشین" + +msgid "Ido" +msgstr "" + +msgid "Icelandic" +msgstr "آئس لینڈک" + +msgid "Italian" +msgstr "اطالوی" + +msgid "Japanese" +msgstr "جاپانی" + +msgid "Georgian" +msgstr "جارجیائی" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "" + +msgid "Khmer" +msgstr "خمر" + +msgid "Kannada" +msgstr "کناڈا" + +msgid "Korean" +msgstr "کوریائی" + +msgid "Luxembourgish" +msgstr "" + +msgid "Lithuanian" +msgstr "لیتھونیائی" + +msgid "Latvian" +msgstr "لتوینی" + +msgid "Macedonian" +msgstr "میسیڈونین" + +msgid "Malayalam" +msgstr "ملایالم" + +msgid "Mongolian" +msgstr "منگولین" + +msgid "Marathi" +msgstr "" + +msgid "Burmese" +msgstr "" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "" + +msgid "Dutch" +msgstr "ڈچ" + +msgid "Norwegian Nynorsk" +msgstr "نارویائی نینورسک" + +msgid "Ossetic" +msgstr "" + +msgid "Punjabi" +msgstr "پنجابی" + +msgid "Polish" +msgstr "پولش" + +msgid "Portuguese" +msgstr "پورتگیز" + +msgid "Brazilian Portuguese" +msgstr "برازیلی پورتگیز" + +msgid "Romanian" +msgstr "رومانی" + +msgid "Russian" +msgstr "روسی" + +msgid "Slovak" +msgstr "سلووک" + +msgid "Slovenian" +msgstr "سلووینین" + +msgid "Albanian" +msgstr "البانوی" + +msgid "Serbian" +msgstr "سربین" + +msgid "Serbian Latin" +msgstr "سربین لاطینی" + +msgid "Swedish" +msgstr "سویڈش" + +msgid "Swahili" +msgstr "" + +msgid "Tamil" +msgstr "تاملی" + +msgid "Telugu" +msgstr "تیلگو" + +msgid "Thai" +msgstr "تھائی" + +msgid "Turkish" +msgstr "ترکش" + +msgid "Tatar" +msgstr "" + +msgid "Udmurt" +msgstr "" + +msgid "Ukrainian" +msgstr "یوکرائنی" + +msgid "Urdu" +msgstr "" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "ویتنامی" + +msgid "Simplified Chinese" +msgstr "سادی چینی" + +msgid "Traditional Chinese" +msgstr "روایتی چینی" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "" + +msgid "Static Files" +msgstr "" + +msgid "Syndication" +msgstr "" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "درست قیمت (ویلیو) درج کریں۔" + +msgid "Enter a valid URL." +msgstr "درست یو آر ایل (URL) درج کریں۔" + +msgid "Enter a valid integer." +msgstr "" + +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "IPv4 کا درست پتہ درج کریں۔" + +msgid "Enter a valid IPv6 address." +msgstr "" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +msgid "Enter only digits separated by commas." +msgstr "صرف اعداد درج کریں جو کوموں سے الگ کئے ھوئے ھوں۔" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"اس بات کا یقین کر لیں کہ یہ قیمت (ویلیو) %(limit_value)s ھے۔ (یہ " +"%(show_value)s ھے)%(show_value)s" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"اس بات کا یقین کر لیں کہ یہ قیمت (ویلیو) %(limit_value)s سے کم یا اس کے " +"برابر ھے۔" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"اس بات کا یقین کر لیں کہ یہ قیمت (ویلیو) %(limit_value)s سے زیادہ یا اس کے " +"برابر ھے۔" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Enter a number." +msgstr "نمبر درج کریں۔" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "اور" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +msgid "This field cannot be null." +msgstr "یہ خانہ نامعلوم (null( نھیں رہ سکتا۔" + +msgid "This field cannot be blank." +msgstr "یہ خانہ خالی نھیں چھوڑا جا سکتا۔" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s اس %(field_label)s کے ساتھ پہلے ہی موجود ھے۔" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "%(field_type)s قسم کا خانہ" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "بولین (True یا False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "سلسلۂ حروف (String) (%(max_length)s تک)" + +msgid "Comma-separated integers" +msgstr " کومے سے الگ کئے ھوئے صحیح اعداد" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "تاریخ (وقت کے بغیر)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "تاریخ (بمع وقت)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "اعشاری نمبر" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "" + +msgid "File path" +msgstr "فائل کا راستہ(path(" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "نقطہ اعشاریہ والا نمبر" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "صحیح عدد" + +msgid "Big (8 byte) integer" +msgstr "بڑا (8 بائٹ) صحیح عدد" + +msgid "IPv4 address" +msgstr "" + +msgid "IP address" +msgstr "IP ایڈریس" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "بولین (True، False یا None(" + +msgid "Positive integer" +msgstr "" + +msgid "Positive small integer" +msgstr "" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +msgid "Small integer" +msgstr "" + +msgid "Text" +msgstr "متن" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "وقت" + +msgid "URL" +msgstr "یو آر ایل" + +msgid "Raw binary data" +msgstr "" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "" + +msgid "Image" +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "بیرونی کلید (FK( (قسم متعلقہ خانے سے متعین ھو گی)" + +msgid "One-to-one relationship" +msgstr "ون-ٹو-ون ریلیشن شپ" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "مینی-ٹو-مینی ریلیشن شپ" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr "" + +msgid "This field is required." +msgstr "یہ خانہ درکار ھے۔" + +msgid "Enter a whole number." +msgstr "مکمل نمبر درج کریں۔" + +msgid "Enter a valid date." +msgstr "درست تاریخ درج کریں۔" + +msgid "Enter a valid time." +msgstr "درست وقت درج کریں۔" + +msgid "Enter a valid date/time." +msgstr "درست تاریخ/وقت درج کریں۔" + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "کوئی فائل پیش نہیں کی گئی۔ فارم پر اینکوڈنگ کی قسم چیک کریں۔" + +msgid "No file was submitted." +msgstr "کوئی فائل پیش نہیں کی گئی تھی۔" + +msgid "The submitted file is empty." +msgstr "پیش کی گئی فائل خالی ھے۔" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "براہ مھربانی فائل پیش کریں یا Clear checkbox منتخب کریں۔ نہ کہ دونوں۔" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"درست تصویر اپ لوڈ کریں۔ جو فائل آپ نے اپ لوڈ کی تھی وہ تصویر نہیں تھی یا " +"خراب تصویر تھی۔" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "درست انتخاب منتخب کریں۔ %(value)s دستیاب انتخابات میں سے کوئی نہیں۔" + +msgid "Enter a list of values." +msgstr "قیمتوں (ویلیوز) کی لسٹ درج کریں۔" + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr "" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" +msgstr[1] "" + +msgid "Order" +msgstr "ترتیب" + +msgid "Delete" +msgstr "مٹائیں" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "براہ کرم %(field)s کے لئے دوہرا مواد درست کریں۔" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"براہ کرم %(field)s کے لئے دوہرا مواد درست کریں جوکہ منفرد ھونا ضروری ھے۔" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"براہ کرم %(field_name)s میں دوہرا مواد درست کریں جو کہ %(date_field)s میں " +"%(lookup)s کے لئے منفرد ھونا ضروری ھے۔" + +msgid "Please correct the duplicate values below." +msgstr "براہ کرم نیچے دوہری قیمتیں (ویلیوز) درست کریں۔" + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "درست انتخاب منتخب کریں۔ یہ انتخاب دستیاب انتخابات میں سے کوئی نہیں ھے۔" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "صاف کریں" + +msgid "Currently" +msgstr "فی الحال" + +msgid "Change" +msgstr "تبدیل کریں" + +msgid "Unknown" +msgstr "نامعلوم" + +msgid "Yes" +msgstr "ھاں" + +msgid "No" +msgstr "نھیں" + +msgid "Year" +msgstr "" + +msgid "Month" +msgstr "" + +msgid "Day" +msgstr "" + +msgid "yes,no,maybe" +msgstr "ھاں،نہیں،ھوسکتاہے" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d بائٹ" +msgstr[1] "%(size)d بائٹس" + +#, python-format +msgid "%s KB" +msgstr "%s ک ۔ ب" + +#, python-format +msgid "%s MB" +msgstr "%s م ۔ ب" + +#, python-format +msgid "%s GB" +msgstr "%s ج ۔ ب" + +#, python-format +msgid "%s TB" +msgstr "%s ٹ ۔ ب" + +#, python-format +msgid "%s PB" +msgstr "%s پ ۔ پ" + +msgid "p.m." +msgstr "شام" + +msgid "a.m." +msgstr "صبح" + +msgid "PM" +msgstr "شام" + +msgid "AM" +msgstr "صبح" + +msgid "midnight" +msgstr "نصف رات" + +msgid "noon" +msgstr "دوپہر" + +msgid "Monday" +msgstr "سوموار" + +msgid "Tuesday" +msgstr "منگل" + +msgid "Wednesday" +msgstr "بدھ" + +msgid "Thursday" +msgstr "جمعرات" + +msgid "Friday" +msgstr "جمعہ" + +msgid "Saturday" +msgstr "ھفتہ" + +msgid "Sunday" +msgstr "اتوار" + +msgid "Mon" +msgstr "سوموار" + +msgid "Tue" +msgstr "منگل" + +msgid "Wed" +msgstr "بدھ" + +msgid "Thu" +msgstr "جمعرات" + +msgid "Fri" +msgstr "جمعہ" + +msgid "Sat" +msgstr "ھفتہ" + +msgid "Sun" +msgstr "اتوار" + +msgid "January" +msgstr "جنوری" + +msgid "February" +msgstr "فروری" + +msgid "March" +msgstr "مارچ" + +msgid "April" +msgstr "اپریل" + +msgid "May" +msgstr "مئی" + +msgid "June" +msgstr "جون" + +msgid "July" +msgstr "جولائی" + +msgid "August" +msgstr "اگست" + +msgid "September" +msgstr "ستمبر" + +msgid "October" +msgstr "اکتوبر" + +msgid "November" +msgstr "نومبر" + +msgid "December" +msgstr "دسمبر" + +msgid "jan" +msgstr "جنوری" + +msgid "feb" +msgstr "فروری" + +msgid "mar" +msgstr "مارچ" + +msgid "apr" +msgstr "اپریل" + +msgid "may" +msgstr "مئی" + +msgid "jun" +msgstr "جون" + +msgid "jul" +msgstr "جولائی" + +msgid "aug" +msgstr "اگست" + +msgid "sep" +msgstr "ستمبر" + +msgid "oct" +msgstr "اکتوبر" + +msgid "nov" +msgstr "نومبر" + +msgid "dec" +msgstr "دسمبر" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "جنوری" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "فروری" + +msgctxt "abbrev. month" +msgid "March" +msgstr "مارچ" + +msgctxt "abbrev. month" +msgid "April" +msgstr "اپریل" + +msgctxt "abbrev. month" +msgid "May" +msgstr "مئی" + +msgctxt "abbrev. month" +msgid "June" +msgstr "جون" + +msgctxt "abbrev. month" +msgid "July" +msgstr "جولائی" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "اگست" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "ستمبر" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "اکتوبر" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "نومبر" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "دسمبر" + +msgctxt "alt. month" +msgid "January" +msgstr "جنوری" + +msgctxt "alt. month" +msgid "February" +msgstr "فروری" + +msgctxt "alt. month" +msgid "March" +msgstr "مارچ" + +msgctxt "alt. month" +msgid "April" +msgstr "اپریل" + +msgctxt "alt. month" +msgid "May" +msgstr "مئی" + +msgctxt "alt. month" +msgid "June" +msgstr "جون" + +msgctxt "alt. month" +msgid "July" +msgstr "جولائی" + +msgctxt "alt. month" +msgid "August" +msgstr "اگست" + +msgctxt "alt. month" +msgid "September" +msgstr "ستمبر" + +msgctxt "alt. month" +msgid "October" +msgstr "اکتوبر" + +msgctxt "alt. month" +msgid "November" +msgstr "نومبر" + +msgctxt "alt. month" +msgid "December" +msgstr "دسمبر" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "یا" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "،" + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "" +msgstr[1] "" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +msgid "0 minutes" +msgstr "" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "" + +msgid "No day specified" +msgstr "" + +msgid "No week specified" +msgstr "" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..b003df83ef1d6d407d932a793cb838869b54eedf GIT binary patch literal 26443 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po new file mode 100644 index 0000000..ad57ba9 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/uz/LC_MESSAGES/django.po @@ -0,0 +1,1322 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Abdulaminkhon Khaydarov , 2020 +# Bedilbek Khamidov , 2019 +# Claude Paroz , 2020 +# Shukrullo Turgunov , 2023 +# Sukhrobbek Ismatov , 2019 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-09-18 11:41-0300\n" +"PO-Revision-Date: 2023-12-25 06:49+0000\n" +"Last-Translator: Shukrullo Turgunov , 2023\n" +"Language-Team: Uzbek (http://app.transifex.com/django/django/language/uz/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uz\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "Afrika tili" + +msgid "Arabic" +msgstr "Arab tili" + +msgid "Algerian Arabic" +msgstr "Jazoir arab tili" + +msgid "Asturian" +msgstr "Asturiya tili" + +msgid "Azerbaijani" +msgstr "Ozarbayjon tili" + +msgid "Bulgarian" +msgstr "Bolgar tili" + +msgid "Belarusian" +msgstr "Belorus tili" + +msgid "Bengali" +msgstr "Bengal tili" + +msgid "Breton" +msgstr "Breton tili" + +msgid "Bosnian" +msgstr "Bosniya tili" + +msgid "Catalan" +msgstr "Katalon tili" + +msgid "Central Kurdish (Sorani)" +msgstr "" + +msgid "Czech" +msgstr "Chex tili" + +msgid "Welsh" +msgstr "Uels tili" + +msgid "Danish" +msgstr "Daniya tili" + +msgid "German" +msgstr "Nemis tili" + +msgid "Lower Sorbian" +msgstr "Quyi sorbiya tili" + +msgid "Greek" +msgstr "Yunon tili" + +msgid "English" +msgstr "Ingliz tili" + +msgid "Australian English" +msgstr "Avstraliya ingliz tili" + +msgid "British English" +msgstr "Britan Ingliz tili" + +msgid "Esperanto" +msgstr "Esperanto tili" + +msgid "Spanish" +msgstr "Ispan tili" + +msgid "Argentinian Spanish" +msgstr "Argentina Ispan tili" + +msgid "Colombian Spanish" +msgstr "Kolumbiya Ispan tili" + +msgid "Mexican Spanish" +msgstr "Meksika Ispan tili " + +msgid "Nicaraguan Spanish" +msgstr "Nikaragua Ispan tili" + +msgid "Venezuelan Spanish" +msgstr "Venesuela Ispan tili" + +msgid "Estonian" +msgstr "Estoniya tili" + +msgid "Basque" +msgstr "Bask tili" + +msgid "Persian" +msgstr "Fors tili" + +msgid "Finnish" +msgstr "Fin tili" + +msgid "French" +msgstr "Fransuz tili" + +msgid "Frisian" +msgstr "Friziya tili" + +msgid "Irish" +msgstr "Irland tili" + +msgid "Scottish Gaelic" +msgstr "Shotland Gal tili" + +msgid "Galician" +msgstr "Galisiya tili" + +msgid "Hebrew" +msgstr "Ibroniy tili" + +msgid "Hindi" +msgstr "Hind tili" + +msgid "Croatian" +msgstr "Xorvat tili" + +msgid "Upper Sorbian" +msgstr "Yuqori Sorbiya tili" + +msgid "Hungarian" +msgstr "Vengriya tili" + +msgid "Armenian" +msgstr "Arman tili" + +msgid "Interlingua" +msgstr "Interlingua tili" + +msgid "Indonesian" +msgstr "Indoneziya tili" + +msgid "Igbo" +msgstr "Igbo tili" + +msgid "Ido" +msgstr "Ido tili" + +msgid "Icelandic" +msgstr "Island tili" + +msgid "Italian" +msgstr "Italyan tili" + +msgid "Japanese" +msgstr "Yapon tili" + +msgid "Georgian" +msgstr "Gruzin tili" + +msgid "Kabyle" +msgstr "Kabil tili" + +msgid "Kazakh" +msgstr "Qozoq tili" + +msgid "Khmer" +msgstr "Xmer tili" + +msgid "Kannada" +msgstr "Kannada tili" + +msgid "Korean" +msgstr "Koreys tili" + +msgid "Kyrgyz" +msgstr "Qirg'iz tili" + +msgid "Luxembourgish" +msgstr "Lyuksemburg tili" + +msgid "Lithuanian" +msgstr "Litva tili" + +msgid "Latvian" +msgstr "Latviya tili" + +msgid "Macedonian" +msgstr "Makedoniya tili" + +msgid "Malayalam" +msgstr "Malayalam tili" + +msgid "Mongolian" +msgstr "Mo'g'ul tili" + +msgid "Marathi" +msgstr "Marati tili" + +msgid "Malay" +msgstr "" + +msgid "Burmese" +msgstr "Birma tili" + +msgid "Norwegian Bokmål" +msgstr "Norvegiya Bokmal tili" + +msgid "Nepali" +msgstr "Nepal tili" + +msgid "Dutch" +msgstr "Golland tili" + +msgid "Norwegian Nynorsk" +msgstr "Norvegiya Ninorsk tili" + +msgid "Ossetic" +msgstr "Osetik tili" + +msgid "Punjabi" +msgstr "Panjob tili" + +msgid "Polish" +msgstr "Polyak tili" + +msgid "Portuguese" +msgstr "Portugal tili" + +msgid "Brazilian Portuguese" +msgstr "Braziliya Portugal tili" + +msgid "Romanian" +msgstr "Rumin tili" + +msgid "Russian" +msgstr "Rus tili" + +msgid "Slovak" +msgstr "Slovak tili" + +msgid "Slovenian" +msgstr "Slovan tili" + +msgid "Albanian" +msgstr "Alban tili" + +msgid "Serbian" +msgstr "Serb tili" + +msgid "Serbian Latin" +msgstr "Serbiya Lotin tili" + +msgid "Swedish" +msgstr "Shved tili" + +msgid "Swahili" +msgstr "Suaxili tili" + +msgid "Tamil" +msgstr "Tamil tili" + +msgid "Telugu" +msgstr "Telugu tili" + +msgid "Tajik" +msgstr "Tojik tili" + +msgid "Thai" +msgstr "Tay tili" + +msgid "Turkmen" +msgstr "Turkman tili" + +msgid "Turkish" +msgstr "Turk tili" + +msgid "Tatar" +msgstr "Tatar tili" + +msgid "Udmurt" +msgstr "Udmurt tili" + +msgid "Uyghur" +msgstr "" + +msgid "Ukrainian" +msgstr "Ukrain tili" + +msgid "Urdu" +msgstr "Urdu tili" + +msgid "Uzbek" +msgstr "O'zbek tili" + +msgid "Vietnamese" +msgstr "Vetnam tili" + +msgid "Simplified Chinese" +msgstr "Soddalashtirilgan xitoy tili" + +msgid "Traditional Chinese" +msgstr "An'anaviy xitoy tili" + +msgid "Messages" +msgstr "Xabarlar" + +msgid "Site Maps" +msgstr "Sayt xaritalari" + +msgid "Static Files" +msgstr "Statik fayllar" + +msgid "Syndication" +msgstr "Sindikatsiya" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "" + +msgid "That page number is not an integer" +msgstr "Bu sahifa raqami butun son emas" + +msgid "That page number is less than 1" +msgstr "Bu sahifa raqami 1 dan kichik" + +msgid "That page contains no results" +msgstr "Ushbu sahifada hech qanday natija yo'q" + +msgid "Enter a valid value." +msgstr "To'g'ri qiymatni kiriting." + +msgid "Enter a valid URL." +msgstr "To'g'ri URL manzilini kiriting." + +msgid "Enter a valid integer." +msgstr "To'g'ri butun sonni kiriting." + +msgid "Enter a valid email address." +msgstr "To'g'ri elektron pochta manzilini kiriting." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" +"Harflar, raqamlar, pastki chiziqlar yoki chiziqlardan iborat to'g'ri " +"\"slug\" ni kiriting." + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" +"Unicode harflari, raqamlari, pastki chiziqlari yoki chiziqlardan iborat " +"to'g'ri \"slug\" ni kiriting." + +msgid "Enter a valid IPv4 address." +msgstr "To'g'ri IPv4 manzilini kiriting." + +msgid "Enter a valid IPv6 address." +msgstr "To'g'ri IPv6 manzilini kiriting." + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "To'g'ri IPv4 yoki IPv6 manzilini kiriting." + +msgid "Enter only digits separated by commas." +msgstr "Faqat vergul bilan ajratilgan raqamlarni kiriting." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" +"Ushbu qiymat %(limit_value)s ekanligiga ishonch hosil qiling (Hozir u " +"%(show_value)s)." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" +"Ushbu qiymat %(limit_value)s dan kichik yoki unga teng ekanligini tekshiring." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" +"Ushbu qiymat %(limit_value)s dan katta yoki unga teng ekanligini tekshiring." + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ushbu qiymat kamida %(limit_value)dga ega ekanligiga ishonch hosil qiling " +"(unda bor %(show_value)d)" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Ushbu qiymat eng ko'pi bilan %(limit_value)d ta belgidan iboratligiga " +"ishonch hosil qiling (hozir, %(show_value)d tadan iborat)." + +msgid "Enter a number." +msgstr "Raqamni kiriting." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +"Umumiy raqamlar soni %(max)s tadan ko'p bo'lmasligiga ishonch hosil qiling." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +"O'nlik kasr xonalari %(max)s tadan ko'p bo'lmasligiga ishonch hosil qiling." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"O'nli kasr nuqtasidan oldin %(max)s tadan ko'p raqam bo'lmasligiga ishonch " +"hosil qiling." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"\"%(extension)s\" fayl kengaytmasiga ruxsat berilmagan Ruxsat berilgan " +"kengaytmalar: %(allowed_extensions)s." + +msgid "Null characters are not allowed." +msgstr "Bo'shliq belgilaridan foydalanish mumkin emas." + +msgid "and" +msgstr "va" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(field_labels)s bilan %(model_name)s allaqachon mavjud." + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "%(value)r qiymati to'g'ri tanlov emas." + +msgid "This field cannot be null." +msgstr "Bu maydon bo‘shliq belgisidan iborat bo'lishi mumkin emas." + +msgid "This field cannot be blank." +msgstr "Bu maydon bo‘sh bo‘lishi mumkin emas." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "\"%(field_label)s\" %(model_name)s allaqachon mavjud." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s %(date_field_label)s %(lookup_type)s uchun noyob bo'lishi " +"kerak." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Maydon turi: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "\"%(value)s\" qiymati rost yoki yolg'on bo'lishi kerak." + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" +"\"%(value)s\" qiymati Rost, Yolg'on yoki Bo'shliq belgisidan iborat bo'lishi " +"kerak." + +msgid "Boolean (Either True or False)" +msgstr "Mantiqiy (Rost yoki Yolg'on)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Birikma uzunligi (%(max_length)s gacha)" + +msgid "String (unlimited)" +msgstr "" + +msgid "Comma-separated integers" +msgstr "Vergul bilan ajratilgan butun sonlar" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" +"\"%(value)s\" qiymati yaroqsiz sana formatiga ega. U YYYY-MM-DD formatida " +"bo'lishi kerak." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" +"\"%(value)s\" qiymati to'g'ri formatga (YYYY-MM-DD) ega, ammo bu noto'g'ri " +"sana." + +msgid "Date (without time)" +msgstr "Sana (vaqtsiz)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"\"%(value)s\" qiymati noto'g'ri formatga ega. U YYYY-MM-DD HH: MM [: ss [." +"uuuuuu]] [TZ] formatida bo'lishi kerak." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"\"%(value)s\" qiymati to'g'ri formatga ega (YYYY-MM-DD HH: MM [: ss [." +"uuuuuu]] [TZ]), lekin u noto'g'ri sana / vaqt." + +msgid "Date (with time)" +msgstr "Sana (vaqt bilan)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "\"%(value)s\" qiymati o'nlik kasr sonlardan iborat bo'lishi kerak." + +msgid "Decimal number" +msgstr "O'nli kasr son" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"\"%(value)s\" qiymati noto'g'ri formatga ega. U [DD] [[HH:] MM:] ss [." +"uuuuuu] formatida bo'lishi kerak." + +msgid "Duration" +msgstr "Davomiyligi" + +msgid "Email address" +msgstr "Elektron pochta manzili" + +msgid "File path" +msgstr "Fayl manzili" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "\"%(value)s\" qiymati haqiqiy son bo'lishi kerak." + +msgid "Floating point number" +msgstr "Haqiqiy son" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "\"%(value)s\" qiymati butun son bo'lishi kerak." + +msgid "Integer" +msgstr "Butun son" + +msgid "Big (8 byte) integer" +msgstr "Katta (8 bayt) butun son" + +msgid "Small integer" +msgstr "Kichik butun son" + +msgid "IPv4 address" +msgstr "IPv4 manzili" + +msgid "IP address" +msgstr "IP manzili" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "\"%(value)s\" qiymati Yo‘q, To‘g‘ri yoki Noto'g'ri bo'lishi kerak." + +msgid "Boolean (Either True, False or None)" +msgstr "Boolean (To'g'ri, Yolg'on yoki Hech biri)" + +msgid "Positive big integer" +msgstr "Musbat katta butun son" + +msgid "Positive integer" +msgstr "Ijobiy butun son" + +msgid "Positive small integer" +msgstr "Musbat kichik butun son" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug uzunligi (%(max_length)s gacha)" + +msgid "Text" +msgstr "Matn" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" +"\"%(value)s\" qiymati noto'g'ri formatga ega. U HH: MM [: ss [.uuuuuu]] " +"formatida bo'lishi kerak." + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" +"\"%(value)s\" qiymati to'g'ri formatga ega (HH: MM [: ss [.uuuuuu]]), lekin " +"bu noto'g'ri vaqt." + +msgid "Time" +msgstr "Vaqt" + +msgid "URL" +msgstr "URL manzili" + +msgid "Raw binary data" +msgstr "Tartibsiz Ikkilik ma'lumotlar" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "\"%(value)s\" to'g'ri UUID emas." + +msgid "Universally unique identifier" +msgstr "Umum noyob aniqlovchi" + +msgid "File" +msgstr "Fayl" + +msgid "Image" +msgstr "Rasm" + +msgid "A JSON object" +msgstr "JSON ob'ekti" + +msgid "Value must be valid JSON." +msgstr "Qiymat yaroqli JSON bo'lishi kerak." + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s %(value)r lari bilan %(model)s namunasi uchun mavjud emas." + +msgid "Foreign Key (type determined by related field)" +msgstr "Tashqi kalit (turi aloqador maydon tomonidan belgilanadi)" + +msgid "One-to-one relationship" +msgstr "Birga-bir yago munosabat" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s -%(to)s gacha bo'lgan munosabat" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s -%(to)s gacha bo'lgan munosabatlar" + +msgid "Many-to-many relationship" +msgstr "Ko'pchilikka-ko'pchilik munosabatlar" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Ushbu maydon to'ldirilishi shart." + +msgid "Enter a whole number." +msgstr "Butun raqamni kiriting." + +msgid "Enter a valid date." +msgstr "Sanani to‘g‘ri kiriting." + +msgid "Enter a valid time." +msgstr "Vaqtni to‘g‘ri kiriting." + +msgid "Enter a valid date/time." +msgstr "Sana/vaqtni to‘g‘ri kiriting." + +msgid "Enter a valid duration." +msgstr "Muddatni to'g'ri kiriting." + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "Kunlar soni {min_days} va {max_days} orasida bo'lishi kerak." + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Hech qanday fayl yuborilmadi. Formadagi kodlash turini tekshiring." + +msgid "No file was submitted." +msgstr "Hech qanday fayl yuborilmadi." + +msgid "The submitted file is empty." +msgstr "Yuborilgan etilgan fayl bo'sh." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +"Fayl nomi maksimum %(max)d belgilardan ko'p emasligiga ishonch hosil qiling " +"(hozir %(length)d belgi ishlatilgan)." + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" +"Iltimos, faylni yuboring yoki katachani belgilang, lekin ikkalasinimas." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"To'g'ri rasmni yuklang. Siz yuklagan fayl yoki rasm emas yoki buzilgan rasm " +"edi." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "To'g'ri tanlovni tanlang. %(value)s mavjud tanlovlardan biri emas." + +msgid "Enter a list of values." +msgstr "Qiymatlar ro'yxatini kiriting." + +msgid "Enter a complete value." +msgstr "To'liq qiymatni kiriting." + +msgid "Enter a valid UUID." +msgstr "To'g'ri UUID kiriting." + +msgid "Enter a valid JSON." +msgstr "Yaroqli JSONni kiriting." + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Yashirilgan maydon %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" + +msgid "Order" +msgstr "Buyurtma" + +msgid "Delete" +msgstr "Yo'q qilish" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Iltimos, %(field)s uchun takroriy ma'lumotni tuzating." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" +"Iltimos, noyob bo'lishi kerak bo'lgan %(field)s uchun takroriy ma'lumotlarni " +"to'g'rilang." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Iltimos, %(field_name)s uchun takroriy ma'lumotlarni %(date_field)s ga noyob " +"bo'la oladigan %(lookup)s ichidagi ma'lumotlarni moslab to'g'rilang." + +msgid "Please correct the duplicate values below." +msgstr "Iltimos, quyidagi takroriy qiymatlarni to'g'irlang." + +msgid "The inline value did not match the parent instance." +msgstr "Kiritilgan ichki qiymat ajdod misoliga mos kelmaydi." + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "To'g'ri tanlovni tanlang. Bu tanlov mavjud tanlovlardan biri emas." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "\"%(pk)s\" to'g'ri qiymat emas." + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s vaqtni %(current_timezone)s mintaqa talqinida ifodalab " +"bo'lmadi; u noaniq yoki mavjud bo'lmasligi mumkin." + +msgid "Clear" +msgstr "Aniq" + +msgid "Currently" +msgstr "Hozirda" + +msgid "Change" +msgstr "O'zgartirish" + +msgid "Unknown" +msgstr "Noma'lum" + +msgid "Yes" +msgstr "Ha" + +msgid "No" +msgstr "Yo'q" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "ha,yo'q,ehtimol" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)dbayt" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "kechqurun" + +msgid "a.m." +msgstr "ertalab" + +msgid "PM" +msgstr "Kechqurun" + +msgid "AM" +msgstr "Ertalab" + +msgid "midnight" +msgstr "yarim tunda" + +msgid "noon" +msgstr "peshin" + +msgid "Monday" +msgstr "Dushanba" + +msgid "Tuesday" +msgstr "Seshanba" + +msgid "Wednesday" +msgstr "Chorshanba" + +msgid "Thursday" +msgstr "Payshanba" + +msgid "Friday" +msgstr "Juma" + +msgid "Saturday" +msgstr "Shanba" + +msgid "Sunday" +msgstr "Yakshanba" + +msgid "Mon" +msgstr "Dush" + +msgid "Tue" +msgstr "Sesh" + +msgid "Wed" +msgstr "Chor" + +msgid "Thu" +msgstr "Pay" + +msgid "Fri" +msgstr "Jum" + +msgid "Sat" +msgstr "Shan" + +msgid "Sun" +msgstr "Yak" + +msgid "January" +msgstr "Yanvar" + +msgid "February" +msgstr "Fevral" + +msgid "March" +msgstr "Mart" + +msgid "April" +msgstr "Aprel" + +msgid "May" +msgstr "May" + +msgid "June" +msgstr "Iyun" + +msgid "July" +msgstr "Iyul" + +msgid "August" +msgstr "Avgust" + +msgid "September" +msgstr "Sentabr" + +msgid "October" +msgstr "Oktabr" + +msgid "November" +msgstr "Noyabr" + +msgid "December" +msgstr "Dekabr" + +msgid "jan" +msgstr "yan" + +msgid "feb" +msgstr "fev" + +msgid "mar" +msgstr "mar" + +msgid "apr" +msgstr "apr" + +msgid "may" +msgstr "may" + +msgid "jun" +msgstr "iyn" + +msgid "jul" +msgstr "iyl" + +msgid "aug" +msgstr "avg" + +msgid "sep" +msgstr "sen" + +msgid "oct" +msgstr "okt" + +msgid "nov" +msgstr "noy" + +msgid "dec" +msgstr "dek" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Yan," + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Fev." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Mart" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Aprel" + +msgctxt "abbrev. month" +msgid "May" +msgstr "May" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Iyun" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Iyul" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Avg." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Sen." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Okt." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Noy." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Dek." + +msgctxt "alt. month" +msgid "January" +msgstr "Yanvar" + +msgctxt "alt. month" +msgid "February" +msgstr "Fevral" + +msgctxt "alt. month" +msgid "March" +msgstr "Mart" + +msgctxt "alt. month" +msgid "April" +msgstr "Aprel" + +msgctxt "alt. month" +msgid "May" +msgstr "May" + +msgctxt "alt. month" +msgid "June" +msgstr "Iyun" + +msgctxt "alt. month" +msgid "July" +msgstr "Iyul" + +msgctxt "alt. month" +msgid "August" +msgstr "Avgust" + +msgctxt "alt. month" +msgid "September" +msgstr "Sentabr" + +msgctxt "alt. month" +msgid "October" +msgstr "Oktabr" + +msgctxt "alt. month" +msgid "November" +msgstr "Noyabr" + +msgctxt "alt. month" +msgid "December" +msgstr "Dekabr" + +msgid "This is not a valid IPv6 address." +msgstr "Bu to'g'ri IPv6 manzili emas." + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "yoki" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d yil" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)doy" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d hafta" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d kun" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d soat" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d daqiqa" + +msgid "Forbidden" +msgstr "Taqiqlangan" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF tekshiruvi amalga oshmadi. So‘rov bekor qilindi." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"Agar siz \"Referer\" sarlavhalarini o'chirib qo'yish uchun brauzeringizni " +"sozlagan bo'lsangiz, iltimos, hech bo'lmasa ushbu sayt uchun, HTTPS " +"ulanishlari, yoki \"same-origin\" so'rovlari uchun ularni qayta yoqib " +"qo'ying." + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"Agar siz yorlig'idan yoki " +"\"Referrer-Policy: no-referer\" sarlavhasidan foydalanayotgan bo'lsangiz, " +"iltimos ularni olib tashlang. CSRF himoyasi \"Referer\" sarlavhasini " +"havolalarni qat'iy tekshirishni talab qiladi. Agar maxfiyligingiz haqida " +"xavotirda bo'lsangiz, uchinchi tomon saytlari kabi " +"havola alternativalaridan foydalaning." + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"Siz ushbu xabarni ko'rmoqdasiz, chunki ushbu sayt formalarni yuborishda CSRF " +"cookie ma'lumotlarini talab qiladi. Ushbu cookie ma'lumotlari xavfsizlik " +"nuqtai nazaridan, brauzeringizni uchinchi shaxslar tomonidan " +"o'g'irlanmasligini ta'minlash uchun xizmat qilinadi." + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"Agar siz cookie ma'lumotlarni o'chirib qo'yish uchun brauzeringizni " +"konfiguratsiya qilgan bo'lsangiz, iltimos, ushbu sayt yoki \"same-origin\" " +"so'rovlari uchun ularni qayta yoqib qo'ying." + +msgid "More information is available with DEBUG=True." +msgstr "Qo'shimcha ma'lumotlarni DEBUG = True ifodasi bilan ko'rish mumkin." + +msgid "No year specified" +msgstr "Yil ko‘rsatilmagan" + +msgid "Date out of range" +msgstr "Sana chegaradan tashqarida" + +msgid "No month specified" +msgstr "Oy ko'rsatilmagan" + +msgid "No day specified" +msgstr "Hech qanday kun ko‘rsatilmagan" + +msgid "No week specified" +msgstr "Hech qanday hafta belgilanmagan" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Hech qanday %(verbose_name_plural)s lar mavjud emas" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"Kelajak %(verbose_name_plural)s lari mavjud emas, chunki %(class_name)s." +"allow_future yolg'ondur." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" +"\"%(datestr)s\" sana birikmasi noto'g'ri berilgan. \"%(format)s\" formati " +"tavsiya etilgan" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "So'rovga mos keladigan %(verbose_name)s topilmadi" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "Sahifa \"oxirgi\" emas va uni butun songa aylantirish mumkin emas." + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Noto'g'ri sahifa (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "Bo'sh ro'yxat va \"%(class_name)s.allow_empty\" yolg'on." + +msgid "Directory indexes are not allowed here." +msgstr "Bu yerda katalog indekslaridan foydalanib bo'lmaydi." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "\"%(path)s\" mavjud emas" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s indeksi" + +msgid "The install worked successfully! Congratulations!" +msgstr "O'rnatish muvaffaqiyatli amalga oshdi! Tabriklaymiz!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"Django %(version)s uchun chiqarilgan " +"nashrlarni ko'rish" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"Siz ushbu sahifani ko'rmoqdasiz, chunki DEBUG = True ifodasi sizning sozlamalar faylingizda " +"ko'rsatilgan va siz biron bir URL manzilini to'gri sozlamagansiz." + +msgid "Django Documentation" +msgstr "Django Hujjatlari" + +msgid "Topics, references, & how-to’s" +msgstr "Mavzular, havolalar va qanday qilish yo'llari" + +msgid "Tutorial: A Polling App" +msgstr "Qo'llanma: So'rovnoma" + +msgid "Get started with Django" +msgstr "Django bilan boshlang" + +msgid "Django Community" +msgstr "Django hamjamiyati" + +msgid "Connect, get help, or contribute" +msgstr "Bog'laning, yordam oling yoki hissa qo'shing" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uz/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/uz/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/uz/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f66203e86daea8f8180ef8ab9e4d72b6c4f82635 GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF0#R>^g79&zHk-@6GPtxA1 z-ufDSj9z=n15~PVs0wbKfSO(H%+7CS{@Pt_&MCl)ptBIcTt zr(>7%c3$G8sIw3fG-|PNjr#LOO_fFzexeG4^&nco!;eCkGGWVoB+-A|bEW9`>${_bQ!8UE}uab9O zk(3d46NK-Bs>*}c!8*=oVZL6?(mV{(XtqVORldoBvfyua-|6!#hubuIRsW9SWo1Z` S#G8|#2%P*)lO#>zH2wz%SjsX0 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/uz/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/uz/formats.py new file mode 100644 index 0000000..2c7ee73 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/uz/formats.py @@ -0,0 +1,30 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = r"j-E, Y-\y\i\l" +TIME_FORMAT = "G:i" +DATETIME_FORMAT = r"j-E, Y-\y\i\l G:i" +YEAR_MONTH_FORMAT = r"F Y-\y\i\l" +MONTH_DAY_FORMAT = "j-E" +SHORT_DATE_FORMAT = "d.m.Y" +SHORT_DATETIME_FORMAT = "d.m.Y H:i" +FIRST_DAY_OF_WEEK = 1 # Monday + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%d.%m.%Y", # '25.10.2006' + "%d-%B, %Y-yil", # '25-Oktabr, 2006-yil' +] +DATETIME_INPUT_FORMATS = [ + "%d.%m.%Y %H:%M:%S", # '25.10.2006 14:30:59' + "%d.%m.%Y %H:%M:%S.%f", # '25.10.2006 14:30:59.000200' + "%d.%m.%Y %H:%M", # '25.10.2006 14:30' + "%d-%B, %Y-yil %H:%M:%S", # '25-Oktabr, 2006-yil 14:30:59' + "%d-%B, %Y-yil %H:%M:%S.%f", # '25-Oktabr, 2006-yil 14:30:59.000200' + "%d-%B, %Y-yil %H:%M", # '25-Oktabr, 2006-yil 14:30' +] +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "\xa0" # non-breaking space +NUMBER_GROUPING = 3 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..43a2a61928d77bcfdb2122edf600d5c698e1f231 GIT binary patch literal 17396 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po new file mode 100644 index 0000000..a0e6eb4 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po @@ -0,0 +1,1234 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Claude Paroz , 2020 +# Jannis Leidel , 2011 +# Anh Phan , 2013 +# Thanh Le Viet , 2013 +# Tran , 2011 +# Tran Van , 2011,2013 +# Vuong Nguyen , 2011 +# xgenvn , 2014 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-05-19 20:23+0200\n" +"PO-Revision-Date: 2020-07-14 21:42+0000\n" +"Last-Translator: Transifex Bot <>\n" +"Language-Team: Vietnamese (http://www.transifex.com/django/django/language/" +"vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "Afrikaans" + +msgid "Arabic" +msgstr "Tiếng Ả Rập" + +msgid "Algerian Arabic" +msgstr "" + +msgid "Asturian" +msgstr "Asturian" + +msgid "Azerbaijani" +msgstr "Tiếng Azerbaijan" + +msgid "Bulgarian" +msgstr "Tiếng Bun-ga-ri" + +msgid "Belarusian" +msgstr "Tiếng Bê-la-rút" + +msgid "Bengali" +msgstr "Tiếng Bengal" + +msgid "Breton" +msgstr "Tiếng Breton" + +msgid "Bosnian" +msgstr "Tiếng Bosnia" + +msgid "Catalan" +msgstr "Tiếng Catala" + +msgid "Czech" +msgstr "Tiếng Séc" + +msgid "Welsh" +msgstr "Xứ Wales" + +msgid "Danish" +msgstr "Tiếng Đan Mạch" + +msgid "German" +msgstr "Tiếng Đức" + +msgid "Lower Sorbian" +msgstr "" + +msgid "Greek" +msgstr "Tiếng Hy Lạp" + +msgid "English" +msgstr "Tiếng Anh" + +msgid "Australian English" +msgstr "Tiếng Anh ở Úc" + +msgid "British English" +msgstr "British English" + +msgid "Esperanto" +msgstr "Quốc Tế Ngữ" + +msgid "Spanish" +msgstr "Tiếng Tây Ban Nha" + +msgid "Argentinian Spanish" +msgstr "Argentinian Spanish" + +msgid "Colombian Spanish" +msgstr "" + +msgid "Mexican Spanish" +msgstr "Mexican Spanish" + +msgid "Nicaraguan Spanish" +msgstr "Tiếng Tây Ban Nha-Nicaragua" + +msgid "Venezuelan Spanish" +msgstr "Tiếng Vê-nê-du-ê-la" + +msgid "Estonian" +msgstr "Tiếng Estonia" + +msgid "Basque" +msgstr "Tiếng Baxcơ" + +msgid "Persian" +msgstr "Tiếng Ba Tư" + +msgid "Finnish" +msgstr "Tiếng Phần Lan" + +msgid "French" +msgstr "Tiếng Pháp" + +msgid "Frisian" +msgstr "Tiếng Frisco" + +msgid "Irish" +msgstr "Tiếng Ai-len" + +msgid "Scottish Gaelic" +msgstr "" + +msgid "Galician" +msgstr "Tiếng Pháp cổ" + +msgid "Hebrew" +msgstr "Tiếng Do Thái cổ" + +msgid "Hindi" +msgstr "Tiếng Hindi" + +msgid "Croatian" +msgstr "Tiếng Croatia" + +msgid "Upper Sorbian" +msgstr "" + +msgid "Hungarian" +msgstr "Tiếng Hung-ga-ri" + +msgid "Armenian" +msgstr "" + +msgid "Interlingua" +msgstr "Tiếng Khoa học Quốc tế" + +msgid "Indonesian" +msgstr "Tiếng In-đô-nê-xi-a" + +msgid "Igbo" +msgstr "" + +msgid "Ido" +msgstr "Ido" + +msgid "Icelandic" +msgstr "Tiếng Aixơlen" + +msgid "Italian" +msgstr "Tiếng Ý" + +msgid "Japanese" +msgstr "Tiếng Nhật Bản" + +msgid "Georgian" +msgstr "Georgian" + +msgid "Kabyle" +msgstr "" + +msgid "Kazakh" +msgstr "Tiếng Kazakh" + +msgid "Khmer" +msgstr "Tiếng Khơ-me" + +msgid "Kannada" +msgstr "Tiếng Kannada" + +msgid "Korean" +msgstr "Tiếng Hàn Quốc" + +msgid "Kyrgyz" +msgstr "" + +msgid "Luxembourgish" +msgstr "Tiếng Luxembourg" + +msgid "Lithuanian" +msgstr "Tiếng Lat-vi" + +msgid "Latvian" +msgstr "Ngôn ngữ vùng Bantic" + +msgid "Macedonian" +msgstr "Tiếng Maxêđôni" + +msgid "Malayalam" +msgstr "Tiếng Malayalam" + +msgid "Mongolian" +msgstr "Tiếng Mông Cổ" + +msgid "Marathi" +msgstr "Marathi" + +msgid "Burmese" +msgstr "My-an-ma" + +msgid "Norwegian Bokmål" +msgstr "" + +msgid "Nepali" +msgstr "Nê-pan" + +msgid "Dutch" +msgstr "Tiếng Hà Lan" + +msgid "Norwegian Nynorsk" +msgstr "Tiếng Na Uy Nynorsk" + +msgid "Ossetic" +msgstr "Ô-sét-ti-a" + +msgid "Punjabi" +msgstr "Punjabi" + +msgid "Polish" +msgstr "Tiếng Ba lan" + +msgid "Portuguese" +msgstr "Tiếng Bồ Đào Nha" + +msgid "Brazilian Portuguese" +msgstr "Brazilian Portuguese" + +msgid "Romanian" +msgstr "Tiếng Ru-ma-ni" + +msgid "Russian" +msgstr "Tiếng Nga" + +msgid "Slovak" +msgstr "Ngôn ngữ Slô-vac" + +msgid "Slovenian" +msgstr "Tiếng Slôven" + +msgid "Albanian" +msgstr "Tiếng Albania" + +msgid "Serbian" +msgstr "Tiếng Xéc-bi" + +msgid "Serbian Latin" +msgstr "Serbian Latin" + +msgid "Swedish" +msgstr "Tiếng Thụy Điển" + +msgid "Swahili" +msgstr "Xì-qua-hi-đi thuộc ngôn ngữ Bantu" + +msgid "Tamil" +msgstr "Tiếng Ta-min" + +msgid "Telugu" +msgstr "Telugu" + +msgid "Tajik" +msgstr "" + +msgid "Thai" +msgstr "Tiếng Thái" + +msgid "Turkmen" +msgstr "" + +msgid "Turkish" +msgstr "Tiếng Thổ Nhĩ Kỳ" + +msgid "Tatar" +msgstr "Tác-ta" + +msgid "Udmurt" +msgstr "Udmurt" + +msgid "Ukrainian" +msgstr "Tiếng Ukraina" + +msgid "Urdu" +msgstr "Urdu" + +msgid "Uzbek" +msgstr "" + +msgid "Vietnamese" +msgstr "Tiếng Việt Nam" + +msgid "Simplified Chinese" +msgstr "Tiếng Tàu giản thể" + +msgid "Traditional Chinese" +msgstr "Tiếng Tàu truyền thống" + +msgid "Messages" +msgstr "" + +msgid "Site Maps" +msgstr "Bản đồ trang web" + +msgid "Static Files" +msgstr "Tập tin tĩnh" + +msgid "Syndication" +msgstr "Syndication" + +msgid "That page number is not an integer" +msgstr "" + +msgid "That page number is less than 1" +msgstr "" + +msgid "That page contains no results" +msgstr "" + +msgid "Enter a valid value." +msgstr "Nhập một giá trị hợp lệ." + +msgid "Enter a valid URL." +msgstr "Nhập một URL hợp lệ." + +msgid "Enter a valid integer." +msgstr "Nhập một số nguyên hợp lệ." + +msgid "Enter a valid email address." +msgstr "Nhập địa chỉ email." + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +msgid "Enter a valid IPv4 address." +msgstr "Nhập một địa chỉ IPv4 hợp lệ." + +msgid "Enter a valid IPv6 address." +msgstr "Nhập địa chỉ IPv6 hợp lệ" + +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "Nhập địa chỉ IPv4 hoặc IPv6 hợp lệ" + +msgid "Enter only digits separated by commas." +msgstr "Chỉ nhập chữ số, cách nhau bằng dấu phẩy." + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "Đảm bảo giá trị này là %(limit_value)s (nó là %(show_value)s )." + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "Đảm bảo giá trị này là nhỏ hơn hoặc bằng với %(limit_value)s ." + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "Đảm bảo giá trị này lớn hơn hoặc bằng với %(limit_value)s ." + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Giá trị này phải có ít nhất %(limit_value)d kí tự (hiện có %(show_value)d)" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"Giá trị này chỉ có tối đa %(limit_value)d kí tự (hiện có %(show_value)d)" + +msgid "Enter a number." +msgstr "Nhập một số." + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "Đảm bảo rằng tối đa không có nhiều hơn %(max)s số." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "Hãy chắc chắn rằng không có nhiều hơn %(max)s chữ số thập phân." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +"Hãy chắc chắn rằng không có nhiều hơn %(max)s chữ số trước dấu phẩy thập " +"phân." + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +msgid "Null characters are not allowed." +msgstr "" + +msgid "and" +msgstr "và" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "%(model_name)s với thông tin %(field_labels)s đã tồn tại" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "Giá trị %(value)r không phải là lựa chọn hợp lệ." + +msgid "This field cannot be null." +msgstr "Trường này không thể để trống." + +msgid "This field cannot be blank." +msgstr "Trường này không được để trắng." + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "%(model_name)s có %(field_label)s đã tồn tại." + +#. Translators: The 'lookup_type' is one of 'date', 'year' or 'month'. +#. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "%(field_label)s phải là duy nhất %(date_field_label)s %(lookup_type)s." + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "Trường thuộc dạng: %(field_type)s " + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +msgid "Boolean (Either True or False)" +msgstr "Boolean (hoặc là Đúng hoặc là Sai)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "Chuỗi (dài đến %(max_length)s ký tự )" + +msgid "Comma-separated integers" +msgstr "Các số nguyên được phân cách bằng dấu phẩy" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +msgid "Date (without time)" +msgstr "Ngày (không có giờ)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +msgid "Date (with time)" +msgstr "Ngày (có giờ)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +msgid "Decimal number" +msgstr "Số thập phân" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +msgid "Duration" +msgstr "" + +msgid "Email address" +msgstr "Địa chỉ email" + +msgid "File path" +msgstr "Đường dẫn tắt tới file" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +msgid "Floating point number" +msgstr "Giá trị dấu chấm động" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +msgid "Integer" +msgstr "Số nguyên" + +msgid "Big (8 byte) integer" +msgstr "Big (8 byte) integer" + +msgid "IPv4 address" +msgstr "Địa chỉ IPv4" + +msgid "IP address" +msgstr "Địa chỉ IP" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +msgid "Boolean (Either True, False or None)" +msgstr "Luận lý (Có thể Đúng, Sai hoặc Không cái nào đúng)" + +msgid "Positive big integer" +msgstr "" + +msgid "Positive integer" +msgstr "Số nguyên dương" + +msgid "Positive small integer" +msgstr "Số nguyên dương nhỏ" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug(lên đến %(max_length)s)" + +msgid "Small integer" +msgstr "Số nguyên nhỏ" + +msgid "Text" +msgstr "Đoạn văn" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +msgid "Time" +msgstr "Giờ" + +msgid "URL" +msgstr "Đường dẫn URL" + +msgid "Raw binary data" +msgstr "Dữ liệu nhị phân " + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +msgid "Universally unique identifier" +msgstr "" + +msgid "File" +msgstr "File" + +msgid "Image" +msgstr "Image" + +msgid "A JSON object" +msgstr "" + +msgid "Value must be valid JSON." +msgstr "" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +msgid "Foreign Key (type determined by related field)" +msgstr "Khóa ngoại (kiểu được xác định bởi trường liên hệ)" + +msgid "One-to-one relationship" +msgstr "Mối quan hệ một-một" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +msgid "Many-to-many relationship" +msgstr "Mối quan hệ nhiều-nhiều" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "Trường này là bắt buộc." + +msgid "Enter a whole number." +msgstr "Nhập một số tổng thể." + +msgid "Enter a valid date." +msgstr "Nhập một ngày hợp lệ." + +msgid "Enter a valid time." +msgstr "Nhập một thời gian hợp lệ." + +msgid "Enter a valid date/time." +msgstr "Nhập một ngày/thời gian hợp lệ." + +msgid "Enter a valid duration." +msgstr "" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "Không có tập tin nào được gửi. Hãy kiểm tra kiểu mã hóa của biểu mẫu." + +msgid "No file was submitted." +msgstr "Không có tập tin nào được gửi." + +msgid "The submitted file is empty." +msgstr "Tập tin được gửi là rỗng." + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "Tên tệp tin có tối đa %(max)d kí tự (Hiện có %(length)d)" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "Vui lòng gửi một tập tin hoặc để ô chọn trắng, không chọn cả hai." + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" +"Hãy tải lên một hình ảnh hợp lệ. Tập tin mà bạn đã tải không phải là hình " +"ảnh hoặc đã bị hư hỏng." + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" +"Hãy chọn một lựa chọn hợp lệ. %(value)s không phải là một trong các lựa chọn " +"khả thi." + +msgid "Enter a list of values." +msgstr "Nhập một danh sách giá trị." + +msgid "Enter a complete value." +msgstr "" + +msgid "Enter a valid UUID." +msgstr "" + +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(Trường ẩn %(name)s) %(error)s" + +msgid "ManagementForm data is missing or has been tampered with" +msgstr "" + +#, python-format +msgid "Please submit %d or fewer forms." +msgid_plural "Please submit %d or fewer forms." +msgstr[0] "Vui lòng đệ trình %d hoặc ít các mẫu đơn hơn." + +#, python-format +msgid "Please submit %d or more forms." +msgid_plural "Please submit %d or more forms." +msgstr[0] "" + +msgid "Order" +msgstr "Thứ tự" + +msgid "Delete" +msgstr "Xóa" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "Hãy sửa các dữ liệu trùng lặp cho %(field)s ." + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "Hãy sửa các dữ liệu trùng lặp cho %(field)s, mà phải là duy nhất." + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"Hãy sửa các dữ liệu trùng lặp cho %(field_name)s mà phải là duy nhất cho " +"%(lookup)s tại %(date_field)s ." + +msgid "Please correct the duplicate values below." +msgstr "Hãy sửa các giá trị trùng lặp dưới đây." + +msgid "The inline value did not match the parent instance." +msgstr "" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" +"Hãy chọn một lựa chọn hợp lệ. Lựa chọn đó không phải là một trong các lựa " +"chọn khả thi." + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +msgid "Clear" +msgstr "Xóa" + +msgid "Currently" +msgstr "Hiện nay" + +msgid "Change" +msgstr "Thay đổi" + +msgid "Unknown" +msgstr "Chưa xác định" + +msgid "Yes" +msgstr "Có" + +msgid "No" +msgstr "Không" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "Có,Không,Có thể" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d byte" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "chiều" + +msgid "AM" +msgstr "sáng" + +msgid "midnight" +msgstr "Nửa đêm" + +msgid "noon" +msgstr "Buổi trưa" + +msgid "Monday" +msgstr "Thứ 2" + +msgid "Tuesday" +msgstr "Thứ 3" + +msgid "Wednesday" +msgstr "Thứ 4" + +msgid "Thursday" +msgstr "Thứ 5" + +msgid "Friday" +msgstr "Thứ 6" + +msgid "Saturday" +msgstr "Thứ 7" + +msgid "Sunday" +msgstr "Chủ nhật" + +msgid "Mon" +msgstr "Thứ 2" + +msgid "Tue" +msgstr "Thứ 3" + +msgid "Wed" +msgstr "Thứ 4" + +msgid "Thu" +msgstr "Thứ 5" + +msgid "Fri" +msgstr "Thứ 6" + +msgid "Sat" +msgstr "Thứ 7" + +msgid "Sun" +msgstr "Chủ nhật" + +msgid "January" +msgstr "Tháng 1" + +msgid "February" +msgstr "Tháng 2" + +msgid "March" +msgstr "Tháng 3" + +msgid "April" +msgstr "Tháng 4" + +msgid "May" +msgstr "Tháng 5" + +msgid "June" +msgstr "Tháng 6" + +msgid "July" +msgstr "Tháng 7" + +msgid "August" +msgstr "Tháng 8" + +msgid "September" +msgstr "Tháng 9" + +msgid "October" +msgstr "Tháng 10" + +msgid "November" +msgstr "Tháng 11" + +msgid "December" +msgstr "Tháng 12" + +msgid "jan" +msgstr "Tháng 1" + +msgid "feb" +msgstr "Tháng 2" + +msgid "mar" +msgstr "Tháng 3" + +msgid "apr" +msgstr "Tháng 4" + +msgid "may" +msgstr "Tháng 5" + +msgid "jun" +msgstr "Tháng 6" + +msgid "jul" +msgstr "Tháng 7" + +msgid "aug" +msgstr "Tháng 8" + +msgid "sep" +msgstr "Tháng 9" + +msgid "oct" +msgstr "Tháng 10" + +msgid "nov" +msgstr "Tháng 11" + +msgid "dec" +msgstr "Tháng 12" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "Tháng 1." + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "Tháng 2." + +msgctxt "abbrev. month" +msgid "March" +msgstr "Tháng ba" + +msgctxt "abbrev. month" +msgid "April" +msgstr "Tháng tư" + +msgctxt "abbrev. month" +msgid "May" +msgstr "Tháng năm" + +msgctxt "abbrev. month" +msgid "June" +msgstr "Tháng sáu" + +msgctxt "abbrev. month" +msgid "July" +msgstr "Tháng bảy" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "Tháng 8." + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "Tháng 9." + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "Tháng 10." + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "Tháng 11." + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "Tháng 12." + +msgctxt "alt. month" +msgid "January" +msgstr "Tháng một" + +msgctxt "alt. month" +msgid "February" +msgstr "Tháng hai" + +msgctxt "alt. month" +msgid "March" +msgstr "Tháng ba" + +msgctxt "alt. month" +msgid "April" +msgstr "Tháng tư" + +msgctxt "alt. month" +msgid "May" +msgstr "Tháng năm" + +msgctxt "alt. month" +msgid "June" +msgstr "Tháng sáu" + +msgctxt "alt. month" +msgid "July" +msgstr "Tháng bảy" + +msgctxt "alt. month" +msgid "August" +msgstr "Tháng tám" + +msgctxt "alt. month" +msgid "September" +msgstr "Tháng Chín" + +msgctxt "alt. month" +msgid "October" +msgstr "Tháng Mười" + +msgctxt "alt. month" +msgid "November" +msgstr "Tháng mười một" + +msgctxt "alt. month" +msgid "December" +msgstr "Tháng mười hai" + +msgid "This is not a valid IPv6 address." +msgstr "" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +msgid "or" +msgstr "hoặc" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%d year" +msgid_plural "%d years" +msgstr[0] "%d năm" + +#, python-format +msgid "%d month" +msgid_plural "%d months" +msgstr[0] "%d tháng" + +#, python-format +msgid "%d week" +msgid_plural "%d weeks" +msgstr[0] "%d tuần" + +#, python-format +msgid "%d day" +msgid_plural "%d days" +msgstr[0] "%d ngày" + +#, python-format +msgid "%d hour" +msgid_plural "%d hours" +msgstr[0] "%d giờ" + +#, python-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d phút" + +msgid "Forbidden" +msgstr "" + +msgid "CSRF verification failed. Request aborted." +msgstr "" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your Web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +msgid "More information is available with DEBUG=True." +msgstr "" + +msgid "No year specified" +msgstr "Không có năm xác định" + +msgid "Date out of range" +msgstr "" + +msgid "No month specified" +msgstr "Không có tháng xác định" + +msgid "No day specified" +msgstr "Không có ngày xác định" + +msgid "No week specified" +msgstr "Không có tuần xác định" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "Không có %(verbose_name_plural)s phù hợp" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"%(verbose_name_plural)s trong tương lai không có sẵn vì %(class_name)s." +"allow_future là False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "Không có %(verbose_name)s tìm thấy phù hợp với truy vấn" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "Trang không hợp lệ (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +msgid "Directory indexes are not allowed here." +msgstr "Tại đây không cho phép đánh số chỉ mục dành cho thư mục." + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#, python-format +msgid "Index of %(directory)s" +msgstr "Index của %(directory)s" + +msgid "Django: the Web framework for perfectionists with deadlines." +msgstr "" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not configured any " +"URLs." +msgstr "" + +msgid "Django Documentation" +msgstr "" + +msgid "Topics, references, & how-to’s" +msgstr "" + +msgid "Tutorial: A Polling App" +msgstr "" + +msgid "Get started with Django" +msgstr "" + +msgid "Django Community" +msgstr "" + +msgid "Connect, get help, or contribute" +msgstr "" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/vi/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/vi/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/vi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e503d103fa3e36fb0a4ce232c87e862d82b3023b GIT binary patch literal 193 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_YvsFxJacWU< zOnGWfNq&q=esXDUYF3>cz<^a_F#02>*-c)k zPZgk>BTY5>`@q>RlfiVa)W>~IH_ZIh^MiCWPFA{u5g3|d8NUgESCmi=f^7s7KZ ubctk>a3=Z0wtPo=@}wDw0xOBzi{(bR4hT+t=O+8gxIuyEc{aBMf&BrEyONFo literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/vi/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/vi/formats.py new file mode 100644 index 0000000..7b76020 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/vi/formats.py @@ -0,0 +1,21 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = r"\N\gà\y d \t\há\n\g n \nă\m Y" +TIME_FORMAT = "H:i" +DATETIME_FORMAT = r"H:i \N\gà\y d \t\há\n\g n \nă\m Y" +YEAR_MONTH_FORMAT = "F Y" +MONTH_DAY_FORMAT = "j F" +SHORT_DATE_FORMAT = "d-m-Y" +SHORT_DATETIME_FORMAT = "H:i d-m-Y" +# FIRST_DAY_OF_WEEK = + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +# DATE_INPUT_FORMATS = +# TIME_INPUT_FORMATS = +# DATETIME_INPUT_FORMATS = +DECIMAL_SEPARATOR = "," +THOUSAND_SEPARATOR = "." +# NUMBER_GROUPING = diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..c68035c84dd354975f87aec4a7772c227516279f GIT binary patch literal 26944 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 C*QW^p literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po new file mode 100644 index 0000000..012741f --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/LC_MESSAGES/django.po @@ -0,0 +1,1326 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# HuanCheng Bai白宦成(Bestony) , 2017-2018 +# lanbla , 2021 +# Daniel Duan , 2013 +# Fan Xu , 2022 +# Ford Guo , 2022 +# Huanqun Yang, 2022 +# jack yang, 2023 +# jamin M , 2019 +# Jannis Leidel , 2011 +# Kevin Sze , 2012 +# Lele Long , 2011,2015,2017 +# Le Yang , 2018 +# li beite , 2020 +# Liping Wang , 2016-2017 +# L., 2024 +# matthew Yip , 2020 +# mozillazg , 2016 +# Ronald White , 2014 +# Lemon Li , 2013 +# Ray Wang , 2017 +# slene , 2011 +# Sun Liwen , 2014 +# Suntravel Chris , 2019 +# Veoco , 2021 +# Liping Wang , 2016 +# Wentao Han , 2018 +# wolf ice , 2020 +# Xiang Yu , 2014 +# Jeff Yin , 2013 +# Zhengyang Wang , 2017 +# ced773123cfad7b4e8b79ca80f736af9, 2011-2012 +# Ziya Tang , 2018 +# 付峥 , 2018 +# L., 2024 +# LatteFang <370358679@qq.com>, 2020 +# Kevin Sze , 2012 +# 高乐喆 , 2023 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-10-07 06:49+0000\n" +"Last-Translator: L., 2024\n" +"Language-Team: Chinese (China) (http://app.transifex.com/django/django/" +"language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "南非荷兰语" + +msgid "Arabic" +msgstr "阿拉伯语" + +msgid "Algerian Arabic" +msgstr "阿尔及利亚的阿拉伯语" + +msgid "Asturian" +msgstr "阿斯图里亚斯" + +msgid "Azerbaijani" +msgstr "阿塞拜疆语" + +msgid "Bulgarian" +msgstr "保加利亚语" + +msgid "Belarusian" +msgstr "白俄罗斯语" + +msgid "Bengali" +msgstr "孟加拉语" + +msgid "Breton" +msgstr "布雷顿" + +msgid "Bosnian" +msgstr "波斯尼亚语" + +msgid "Catalan" +msgstr "加泰罗尼亚语" + +msgid "Central Kurdish (Sorani)" +msgstr "中部库尔德语(Sorani)" + +msgid "Czech" +msgstr "捷克语" + +msgid "Welsh" +msgstr "威尔士语" + +msgid "Danish" +msgstr "丹麦语" + +msgid "German" +msgstr "德语" + +msgid "Lower Sorbian" +msgstr "下索布" + +msgid "Greek" +msgstr "希腊语" + +msgid "English" +msgstr "英语" + +msgid "Australian English" +msgstr "澳大利亚英语" + +msgid "British English" +msgstr "英国英语" + +msgid "Esperanto" +msgstr "世界语" + +msgid "Spanish" +msgstr "西班牙语" + +msgid "Argentinian Spanish" +msgstr "阿根廷西班牙语" + +msgid "Colombian Spanish" +msgstr "哥伦比亚西班牙语" + +msgid "Mexican Spanish" +msgstr "墨西哥西班牙语" + +msgid "Nicaraguan Spanish" +msgstr "尼加拉瓜西班牙语" + +msgid "Venezuelan Spanish" +msgstr "委内瑞拉西班牙语" + +msgid "Estonian" +msgstr "爱沙尼亚语" + +msgid "Basque" +msgstr "巴斯克语" + +msgid "Persian" +msgstr "波斯语" + +msgid "Finnish" +msgstr "芬兰语" + +msgid "French" +msgstr "法语" + +msgid "Frisian" +msgstr "夫里斯兰语" + +msgid "Irish" +msgstr "爱尔兰语" + +msgid "Scottish Gaelic" +msgstr "苏格兰盖尔语" + +msgid "Galician" +msgstr "加利西亚语" + +msgid "Hebrew" +msgstr "希伯来语" + +msgid "Hindi" +msgstr "北印度语" + +msgid "Croatian" +msgstr "克罗地亚语" + +msgid "Upper Sorbian" +msgstr "上索布" + +msgid "Hungarian" +msgstr "匈牙利语" + +msgid "Armenian" +msgstr "亚美尼亚语" + +msgid "Interlingua" +msgstr "国际语" + +msgid "Indonesian" +msgstr "印尼语" + +msgid "Igbo" +msgstr "伊博" + +msgid "Ido" +msgstr "简化伊多语" + +msgid "Icelandic" +msgstr "冰岛语" + +msgid "Italian" +msgstr "意大利语" + +msgid "Japanese" +msgstr "日语" + +msgid "Georgian" +msgstr "格鲁吉亚语" + +msgid "Kabyle" +msgstr "卡拜尔语" + +msgid "Kazakh" +msgstr "哈萨克语" + +msgid "Khmer" +msgstr "高棉语" + +msgid "Kannada" +msgstr "埃纳德语" + +msgid "Korean" +msgstr "韩语" + +msgid "Kyrgyz" +msgstr "吉尔吉斯坦语" + +msgid "Luxembourgish" +msgstr "卢森堡语" + +msgid "Lithuanian" +msgstr "立陶宛语" + +msgid "Latvian" +msgstr "拉脱维亚语" + +msgid "Macedonian" +msgstr "马其顿语" + +msgid "Malayalam" +msgstr "马来亚拉姆语" + +msgid "Mongolian" +msgstr "蒙古语" + +msgid "Marathi" +msgstr "马拉地语" + +msgid "Malay" +msgstr "马来语" + +msgid "Burmese" +msgstr "缅甸语" + +msgid "Norwegian Bokmål" +msgstr "挪威博克马尔" + +msgid "Nepali" +msgstr "尼泊尔语" + +msgid "Dutch" +msgstr "荷兰语" + +msgid "Norwegian Nynorsk" +msgstr "新挪威语" + +msgid "Ossetic" +msgstr "奥塞梯语" + +msgid "Punjabi" +msgstr "旁遮普语 " + +msgid "Polish" +msgstr "波兰语" + +msgid "Portuguese" +msgstr "葡萄牙语" + +msgid "Brazilian Portuguese" +msgstr "巴西葡萄牙语" + +msgid "Romanian" +msgstr "罗马尼亚语" + +msgid "Russian" +msgstr "俄语" + +msgid "Slovak" +msgstr "斯洛伐克语" + +msgid "Slovenian" +msgstr "斯洛文尼亚语" + +msgid "Albanian" +msgstr "阿尔巴尼亚语" + +msgid "Serbian" +msgstr "塞尔维亚语" + +msgid "Serbian Latin" +msgstr "塞尔维亚拉丁语" + +msgid "Swedish" +msgstr "瑞典语" + +msgid "Swahili" +msgstr "斯瓦西里语" + +msgid "Tamil" +msgstr "泰米尔语" + +msgid "Telugu" +msgstr "泰卢固语" + +msgid "Tajik" +msgstr "塔吉克语" + +msgid "Thai" +msgstr "泰语" + +msgid "Turkmen" +msgstr "土库曼人" + +msgid "Turkish" +msgstr "土耳其语" + +msgid "Tatar" +msgstr "鞑靼语" + +msgid "Udmurt" +msgstr "乌德穆尔特语" + +msgid "Uyghur" +msgstr "维吾尔语" + +msgid "Ukrainian" +msgstr "乌克兰语" + +msgid "Urdu" +msgstr "乌尔都语" + +msgid "Uzbek" +msgstr "乌兹别克语" + +msgid "Vietnamese" +msgstr "越南语" + +msgid "Simplified Chinese" +msgstr "简体中文" + +msgid "Traditional Chinese" +msgstr "繁体中文" + +msgid "Messages" +msgstr "消息" + +msgid "Site Maps" +msgstr "站点地图" + +msgid "Static Files" +msgstr "静态文件" + +msgid "Syndication" +msgstr "联合" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "页码不是整数" + +msgid "That page number is less than 1" +msgstr "页码小于 1" + +msgid "That page contains no results" +msgstr "本页结果为空" + +msgid "Enter a valid value." +msgstr "输入一个有效的值。" + +msgid "Enter a valid domain name." +msgstr "输入一个有效的域名。" + +msgid "Enter a valid URL." +msgstr "输入一个有效的 URL。" + +msgid "Enter a valid integer." +msgstr "输入一个有效的整数。" + +msgid "Enter a valid email address." +msgstr "输入一个有效的 Email 地址。" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "输入由字母,数字,下划线或连字符号组成的有效“字段”。" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "输入由Unicode字母,数字,下划线或连字符号组成的有效“字段”。" + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "输入一个有效的 %(protocol)s 地址。" + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 或 IPv6" + +msgid "Enter only digits separated by commas." +msgstr "只能输入用逗号分隔的数字。" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "确保该值为 %(limit_value)s (现在为 %(show_value)s)。" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "确保该值小于或等于%(limit_value)s。" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "确保该值大于或等于%(limit_value)s。" + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "确保该值是步长的倍数%(limit_value)s" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"确保此值是步长 %(limit_value)s 的倍数,从 %(offset)s 开始,例如 " +"%(offset)s、%(valid_value1)s、%(valid_value2)s 等等。" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"确保该变量至少包含 %(limit_value)d 字符(目前字符数 %(show_value)d)。" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"确保该变量包含不超过 %(limit_value)d 字符 (目前字符数 %(show_value)d)。" + +msgid "Enter a number." +msgstr "输入一个数字。" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "确认总共不超过 %(max)s 个数字." + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "确认小数不超过 %(max)s 位." + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "确认小数点前不超过 %(max)s 位。" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" +"文件扩展“%(extension)s”是不被允许。允许的扩展为:%(allowed_extensions)s。" + +msgid "Null characters are not allowed." +msgstr "不允许是用空字符串。" + +msgid "and" +msgstr "和" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "包含 %(field_labels)s 的 %(model_name)s 已经存在。" + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "约束 “%(name)s” 是无效的" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "值 %(value)r 不是有效选项。" + +msgid "This field cannot be null." +msgstr "这个值不能为 null。" + +msgid "This field cannot be blank." +msgstr "此字段不能为空。" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "具有 %(field_label)s 的 %(model_name)s 已存在。" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" +"%(field_label)s 必须在 %(date_field_label)s 字段查找类型为 %(lookup_type)s 中" +"唯一。" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "字段类型:%(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s”的值应该为True或False" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s”的值应该为True,False或None" + +msgid "Boolean (Either True or False)" +msgstr "布尔值( True或False )" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "字符串(最长 %(max_length)s 位)" + +msgid "String (unlimited)" +msgstr "字符串(无限)" + +msgid "Comma-separated integers" +msgstr "逗号分隔的整数" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "“%(value)s”的值有一个错误的日期格式。它的格式应该是YYYY-MM-DD" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "“%(value)s”的值有正确的格式(YYYY-MM-DD)但它是一个错误的日期" + +msgid "Date (without time)" +msgstr "日期(不带时分)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s”的值有一个错误的日期格式。它的格式应该是YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] " + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s”的值有正确的格式 (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) 但它是一个错" +"误的日期/时间" + +msgid "Date (with time)" +msgstr "日期(带时分)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s”的值应该是一个十进制数字。" + +msgid "Decimal number" +msgstr "小数" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" +"“%(value)s”的值有一个错误的格式。它的格式应该是[DD] [[HH:]MM:]ss[.uuuuuu] " + +msgid "Duration" +msgstr "时长" + +msgid "Email address" +msgstr "Email 地址" + +msgid "File path" +msgstr "文件路径" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s”的值应该是一个浮点数" + +msgid "Floating point number" +msgstr "浮点数" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s”的值应该是一个整型" + +msgid "Integer" +msgstr "整数" + +msgid "Big (8 byte) integer" +msgstr "大整数(8字节)" + +msgid "Small integer" +msgstr "小整数" + +msgid "IPv4 address" +msgstr "IPv4 地址" + +msgid "IP address" +msgstr "IP 地址" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s”的值应该是None、True或False" + +msgid "Boolean (Either True, False or None)" +msgstr "布尔值(True、False或None)" + +msgid "Positive big integer" +msgstr "正大整数" + +msgid "Positive integer" +msgstr "正整数" + +msgid "Positive small integer" +msgstr "正小整数" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (多达 %(max_length)s)" + +msgid "Text" +msgstr "文本" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "“%(value)s”的值有一个错误的格式。它的格式应该是HH:MM[:ss[.uuuuuu]]" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "“%(value)s”的值有正确的格式(HH:MM[:ss[.uuuuuu]]),但它是一个错误的时间" + +msgid "Time" +msgstr "时间" + +msgid "URL" +msgstr "URL" + +msgid "Raw binary data" +msgstr "原始二进制数据" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s”不是一个有效的UUID" + +msgid "Universally unique identifier" +msgstr "通用唯一识别码" + +msgid "File" +msgstr "文件" + +msgid "Image" +msgstr "图像" + +msgid "A JSON object" +msgstr "一个JSON对象" + +msgid "Value must be valid JSON." +msgstr "值必须是有效的JSON。" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "包含%(field)s %(value)r的%(model)s实例不存在。" + +msgid "Foreign Key (type determined by related field)" +msgstr "外键(由相关字段确定)" + +msgid "One-to-one relationship" +msgstr "一对一关系" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s关系" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s关系" + +msgid "Many-to-many relationship" +msgstr "多对多关系" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "这个字段是必填项。" + +msgid "Enter a whole number." +msgstr "输入整数。" + +msgid "Enter a valid date." +msgstr "输入一个有效的日期。" + +msgid "Enter a valid time." +msgstr "输入一个有效的时间。" + +msgid "Enter a valid date/time." +msgstr "输入一个有效的日期/时间。" + +msgid "Enter a valid duration." +msgstr "请输入有效的时长。" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "天数应该在 {min_days} 和 {max_days} 之间。" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "未提交文件。请检查表单的编码类型。" + +msgid "No file was submitted." +msgstr "没有提交文件。" + +msgid "The submitted file is empty." +msgstr "所提交的是空文件。" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "确保该文件名长度不超过 %(max)d 字符(目前字符数 %(length)d)。" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "请提交文件或勾选清除复选框,两者其一即可。" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "请上传一张有效的图片。您所上传的文件不是图片或者是已损坏的图片。" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "选择一个有效的选项。 %(value)s 不在可用的选项中。" + +msgid "Enter a list of values." +msgstr "输入一系列值。" + +msgid "Enter a complete value." +msgstr "请输入完整的值。" + +msgid "Enter a valid UUID." +msgstr "请输入有效UUID。" + +msgid "Enter a valid JSON." +msgstr "输入一个有效的JSON。" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(隐藏字段 %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm 数据缺失或被篡改。缺少的字段: %(field_names)s。如果问题持续存" +"在,你可能需要提交错误报告。" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "请最多提交 %(num)d 个表单。" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "请至少提交 %(num)d 个表单。" + +msgid "Order" +msgstr "排序" + +msgid "Delete" +msgstr "删除" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "请修改%(field)s的重复数据" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "请修改%(field)s的重复数据.这个字段必须唯一" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"请修正%(field_name)s的重复数据。%(date_field)s %(lookup)s 在 %(field_name)s " +"必须保证唯一." + +msgid "Please correct the duplicate values below." +msgstr "请修正重复的数据." + +msgid "The inline value did not match the parent instance." +msgstr "内联值与父实例不匹配。" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "选择一个有效的选项: 该选择不在可用的选项中。" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s”不是一个有效的值" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s无法在时区%(current_timezone)s被解析;它可能是模糊的,也可能是不" +"存在的。" + +msgid "Clear" +msgstr "清除" + +msgid "Currently" +msgstr "目前" + +msgid "Change" +msgstr "修改" + +msgid "Unknown" +msgstr "未知" + +msgid "Yes" +msgstr "是" + +msgid "No" +msgstr "否" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "是、否、也许" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d 字节" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "午夜" + +msgid "noon" +msgstr "中午" + +msgid "Monday" +msgstr "星期一" + +msgid "Tuesday" +msgstr "星期二" + +msgid "Wednesday" +msgstr "星期三" + +msgid "Thursday" +msgstr "星期四" + +msgid "Friday" +msgstr "星期五" + +msgid "Saturday" +msgstr "星期六" + +msgid "Sunday" +msgstr "星期日" + +msgid "Mon" +msgstr "星期一" + +msgid "Tue" +msgstr "星期二" + +msgid "Wed" +msgstr "星期三" + +msgid "Thu" +msgstr "星期四" + +msgid "Fri" +msgstr "星期五" + +msgid "Sat" +msgstr "星期六" + +msgid "Sun" +msgstr "星期日" + +msgid "January" +msgstr "一月" + +msgid "February" +msgstr "二月" + +msgid "March" +msgstr "三月" + +msgid "April" +msgstr "四月" + +msgid "May" +msgstr "五月" + +msgid "June" +msgstr "六月" + +msgid "July" +msgstr "七月" + +msgid "August" +msgstr "八月" + +msgid "September" +msgstr "九月" + +msgid "October" +msgstr "十月" + +msgid "November" +msgstr "十一月" + +msgid "December" +msgstr "十二月" + +msgid "jan" +msgstr "一月" + +msgid "feb" +msgstr "二月" + +msgid "mar" +msgstr "三月" + +msgid "apr" +msgstr "四月" + +msgid "may" +msgstr "五月" + +msgid "jun" +msgstr "六月" + +msgid "jul" +msgstr "七月" + +msgid "aug" +msgstr "八月" + +msgid "sep" +msgstr "九月" + +msgid "oct" +msgstr "十月" + +msgid "nov" +msgstr "十一月" + +msgid "dec" +msgstr "十二月" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "一月" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "二月" + +msgctxt "abbrev. month" +msgid "March" +msgstr "三月" + +msgctxt "abbrev. month" +msgid "April" +msgstr "四月" + +msgctxt "abbrev. month" +msgid "May" +msgstr "五月" + +msgctxt "abbrev. month" +msgid "June" +msgstr "六月" + +msgctxt "abbrev. month" +msgid "July" +msgstr "七月" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "八月" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "九月" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "十月" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "十一月" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "十二月" + +msgctxt "alt. month" +msgid "January" +msgstr "一月" + +msgctxt "alt. month" +msgid "February" +msgstr "二月" + +msgctxt "alt. month" +msgid "March" +msgstr "三月" + +msgctxt "alt. month" +msgid "April" +msgstr "四月" + +msgctxt "alt. month" +msgid "May" +msgstr "五月" + +msgctxt "alt. month" +msgid "June" +msgstr "六月" + +msgctxt "alt. month" +msgid "July" +msgstr "七月" + +msgctxt "alt. month" +msgid "August" +msgstr "八月" + +msgctxt "alt. month" +msgid "September" +msgstr "九月" + +msgctxt "alt. month" +msgid "October" +msgstr "十月" + +msgctxt "alt. month" +msgid "November" +msgstr "十一月" + +msgctxt "alt. month" +msgid "December" +msgstr "十二月" + +msgid "This is not a valid IPv6 address." +msgstr "该值不是合法的IPv6地址。" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s..." + +msgid "or" +msgstr "或" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr "," + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d 年" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d 月" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d 周" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d 日" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d 小时" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d 分钟" + +msgid "Forbidden" +msgstr "禁止访问" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF验证失败. 请求被中断." + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"您看到此消息是由于HTTPS站点需要您的浏览器发送 'Referer header',但是该信息并" +"未被发送。出于安全原因,此HTTP头是必需的,以确保您的浏览器不会被第三方劫持。" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"如果您已将浏览器配置为禁用“ Referer”头,请重新启用它们,至少针对此站点,或" +"HTTPS连接或“同源”请求。" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"如果您使用的是标签或包" +"含“Referrer-Policy: no-referrer”的HTTP头,请将其删除。CSRF保护要求“Referer”头" +"执行严格的Referer检查。如果你担心隐私问题,可以使用类似这样的替代方法链接到第三方网站。" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"您看到此消息是由于该站点在提交表单时需要一个CSRF cookie。此项是出于安全考虑," +"以确保您的浏览器没有被第三方劫持。" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"如果您已将浏览器配置为禁用cookie,请重新启用它们,至少针对此站点或“同源”请" +"求。" + +msgid "More information is available with DEBUG=True." +msgstr "更多可用信息请设置选项DEBUG=True。" + +msgid "No year specified" +msgstr "没有指定年" + +msgid "Date out of range" +msgstr "日期超出范围。" + +msgid "No month specified" +msgstr "没有指定月" + +msgid "No day specified" +msgstr "没有指定天" + +msgid "No week specified" +msgstr "没有指定周" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s 可用" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"因为 %(class_name)s.allow_future 设置为 False,所以特性 " +"%(verbose_name_plural)s 不可用。" + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "日期字符串“%(datestr)s”与格式“%(format)s”不匹配" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "没有找到符合查询的 %(verbose_name)s" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "页面不是最后一页,也不能被转为整数型" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "非法页面 (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "列表是空的并且“%(class_name)s.allow_empty”是False" + +msgid "Directory indexes are not allowed here." +msgstr "这里不允许目录索引" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "”%(path)s\"不存在" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s的索引" + +msgid "The install worked successfully! Congratulations!" +msgstr "" +"安装成功!\n" +"祝贺!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"查看 Django %(version)s 的 release notes " + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"您现在看见这个页面,因为您设置了 DEBUG=True 并且您还没有配置任何URLs。" + +msgid "Django Documentation" +msgstr "Django 文档" + +msgid "Topics, references, & how-to’s" +msgstr "主题,参考资料和操作方法" + +msgid "Tutorial: A Polling App" +msgstr "教程:投票应用" + +msgid "Get started with Django" +msgstr "开始使用 Django" + +msgid "Django Community" +msgstr "Django 社区" + +msgid "Connect, get help, or contribute" +msgstr "联系,获取帮助,贡献代码" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..edb70b19ac954505b8058f7140f52bad56797d19 GIT binary patch literal 198 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_!vsFxJacWU< zOnGWfNq&q=esXDUYFPO2Tq3B^o6f`tJ9 D?Hx9A literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..def32bf0ba5d5b94fcdd40bc5e62f945196fc807 GIT binary patch literal 910 zcmZ`%%WB&|6qRh*kza8fno?*N+04QVTYD2i)mV;1BgyDN@gNYYM|Pa*5iE;ReL?@A z6uK&O(S0}l6>m!e`Ge9`@A#3*2^pb#=bU@anL#LSG^z}&&wuRcX_;YuQIKB+059Q9 zWGIBe3}G=#3b;UuxJWq60apTCCMCQ#Wk~rei+SjK&@0e+=v7j|HB!ZOQo{{WH<@-L ztwY@C_s<{E&6kf?H=n*`MY%Ui5ALzYl;m^d3WOWaEen%&G2_ulK%syL-E~mdK_qR$ z2+;!&Jps`pKv_a^52+xdt%uC4w%v8nq+QAOw@JrqA>ei18mC7OQ#Z=iu9Id1l{W*G zK6}hh^-mr|z@;dAF9q22`6EFQ1i^gCc9+a82O_P#k86F=lH7rAsG@~ymZIK)CY|Jo z)<_Z!SJgF3-Wm?ps4tGTOv{vY!*cVfNB^mvxPfArR5^0>f%`_1UgN`+P0@z7waGK_ z;mWhiJ-xfyF5l`)XNoFbxTZ7|4bjpKu*B?S|2$OgodW)oc{b9+UgfU42|CIi!$qOhP$Fcc`=lC*T=IR{F Gv;P3DGXr7( literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/formats.py new file mode 100644 index 0000000..79936f8 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hans/formats.py @@ -0,0 +1,42 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "Y年n月j日" # 2016年9月5日 +TIME_FORMAT = "H:i" # 20:45 +DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 +YEAR_MONTH_FORMAT = "Y年n月" # 2016年9月 +MONTH_DAY_FORMAT = "m月j日" # 9月5日 +SHORT_DATE_FORMAT = "Y年n月j日" # 2016年9月5日 +SHORT_DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 +FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday) + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%Y/%m/%d", # '2016/09/05' + "%Y-%m-%d", # '2016-09-05' + "%Y年%n月%j日", # '2016年9月5日' +] + +TIME_INPUT_FORMATS = [ + "%H:%M", # '20:45' + "%H:%M:%S", # '20:45:29' + "%H:%M:%S.%f", # '20:45:29.000200' +] + +DATETIME_INPUT_FORMATS = [ + "%Y/%m/%d %H:%M", # '2016/09/05 20:45' + "%Y-%m-%d %H:%M", # '2016-09-05 20:45' + "%Y年%n月%j日 %H:%M", # '2016年9月5日 14:45' + "%Y/%m/%d %H:%M:%S", # '2016/09/05 20:45:29' + "%Y-%m-%d %H:%M:%S", # '2016-09-05 20:45:29' + "%Y年%n月%j日 %H:%M:%S", # '2016年9月5日 20:45:29' + "%Y/%m/%d %H:%M:%S.%f", # '2016/09/05 20:45:29.000200' + "%Y-%m-%d %H:%M:%S.%f", # '2016-09-05 20:45:29.000200' + "%Y年%n月%j日 %H:%n:%S.%f", # '2016年9月5日 20:45:29.000200' +] + +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "" +NUMBER_GROUPING = 4 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.mo new file mode 100644 index 0000000000000000000000000000000000000000..c9be56e3c5038c2a9470920917b5701ae676226c GIT binary patch literal 26802 zcmc(n34E2+nebl~H|)4ptJd0A6it*QxKRYLvV#(!5LC3t+~mF_S8nc2?*fEQ+aLrI zLI?;6OTxY{fv^Z61nAi5@^!J>OxGFPYTmna?D*+Sr*@mp|2gN}B_S;O^ZR}G=gI#) z`~IBgIq!>a+}Nkl;y2?G%en*hxyG`7%=6nfOQ>ZH{*+~f;A3zc+z%z)?;-zLH{NMk zL*YO;82aI3a0k2<{tDg>--rBX-Slal{~;*hlMG)n;nnbR!nYdkHauW>)UX5IMY^xT zOW~W4W?L@o1LN@T;M*qtPw;B|e}z}UD{afV4qgwXJ{w*E?}azPJSgdg8$Jakek!~X zJ`Wixs~k#rCF~2U;FYirejKiX((m2y9{5ct@oz(k|1T){uckAqJy6l@LKpHl=S8BJ{WhO!(u4=Xg2HvYhf{54ki7&P{!-eP|CaP0UdrD%*TH>l=+wfFN4#Ke+HC% zUidupL#g+hhChIk@8?kZ_iHHg^}Y%JALGA#fUfTv*q8X5p|sP6AA|i3A2Q*eh0^X( zP}(yQzIX}kgSGe%<>BB^8ZYJi4obc6K^fQgq11C-fo}ip@EZL6;7FJcX_^&+l5ZoF zer`A152c?+p_G5h@HHs?{U((3uN(hQpp^4(#{ZV#Z=s}n7fO5n2xT4j8K`+9lyDnL z{s*A+`$4!04u!YD??Wjk2_@aTP{!pCP}=!tcpdEXpbq~yly=?;m<)? zw=?0TFa#M|D+=#{TjBNan^4B{XHfRVJ5cgH@Q~iuPZ&-%EH;clY1d+C!v-krZ-cT< z+M)F02PXU{P}=bZ90Gr1!tZ$4vc}-Q2hv4rHVncRct8BuBbGG+eg-}T=fiRE>rncC z?W1PB!H?s&q4eufDE%4(rCl?ijGqIg-BA<%Whmpk*n}^Il5Q0o4Y$FuFbUPX4btTe zg)+}0;f?TfP~yE%+7&SVDEuV;uRuxP45dAL;K$%0DEUuA+222eY964p>w(Yc@(Q5j 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po new file mode 100644 index 0000000..1671ebd --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/LC_MESSAGES/django.po @@ -0,0 +1,1293 @@ +# This file is distributed under the same license as the Django package. +# +# Translators: +# Chen Chun-Chia , 2015 +# yubike, 2024 +# Eric Ho , 2013 +# ilay , 2012 +# Jannis Leidel , 2011 +# mail6543210 , 2013 +# 0a3cb7bfd0810218facdfb511e592a6d_8d19d07 , 2011 +# tcc , 2011 +# Tzu-ping Chung , 2016-2017 +# YAO WEN LIANG, 2024 +# Yeh-Yung , 2013 +# yubike, 2024 +# Yeh-Yung , 2012 +msgid "" +msgstr "" +"Project-Id-Version: django\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-05-22 11:46-0300\n" +"PO-Revision-Date: 2024-08-07 06:49+0000\n" +"Last-Translator: YAO WEN LIANG, 2024\n" +"Language-Team: Chinese (Taiwan) (http://app.transifex.com/django/django/" +"language/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Afrikaans" +msgstr "南非語" + +msgid "Arabic" +msgstr "阿拉伯語" + +msgid "Algerian Arabic" +msgstr "阿爾及利亞式阿拉伯語" + +msgid "Asturian" +msgstr "阿斯圖里亞斯語" + +msgid "Azerbaijani" +msgstr "亞塞拜然語" + +msgid "Bulgarian" +msgstr "保加利亞語" + +msgid "Belarusian" +msgstr "白俄羅斯語" + +msgid "Bengali" +msgstr "孟加拉語" + +msgid "Breton" +msgstr "布列塔尼語" + +msgid "Bosnian" +msgstr "波士尼亞語" + +msgid "Catalan" +msgstr "加泰隆語" + +msgid "Central Kurdish (Sorani)" +msgstr "中部庫爾德語 (Sorani)" + +msgid "Czech" +msgstr "捷克語" + +msgid "Welsh" +msgstr "威爾斯語" + +msgid "Danish" +msgstr "丹麥語" + +msgid "German" +msgstr "德語" + +msgid "Lower Sorbian" +msgstr "下索布語" + +msgid "Greek" +msgstr "希臘語" + +msgid "English" +msgstr "英語" + +msgid "Australian English" +msgstr "澳大利亞英語" + +msgid "British English" +msgstr "英國英語" + +msgid "Esperanto" +msgstr "世界語" + +msgid "Spanish" +msgstr "西班牙語" + +msgid "Argentinian Spanish" +msgstr "阿根廷西班牙語" + +msgid "Colombian Spanish" +msgstr "哥倫比亞西班牙語" + +msgid "Mexican Spanish" +msgstr "墨西哥西班牙語" + +msgid "Nicaraguan Spanish" +msgstr "尼加拉瓜西班牙語" + +msgid "Venezuelan Spanish" +msgstr "委內瑞拉西班牙語" + +msgid "Estonian" +msgstr "愛沙尼亞語" + +msgid "Basque" +msgstr "巴斯克語" + +msgid "Persian" +msgstr "波斯語" + +msgid "Finnish" +msgstr "芬蘭語" + +msgid "French" +msgstr "法語" + +msgid "Frisian" +msgstr "菲士蘭語" + +msgid "Irish" +msgstr "愛爾蘭語" + +msgid "Scottish Gaelic" +msgstr "蘇格蘭蓋爾語" + +msgid "Galician" +msgstr "加利西亞語" + +msgid "Hebrew" +msgstr "希伯來語" + +msgid "Hindi" +msgstr "印地語" + +msgid "Croatian" +msgstr "克羅埃西亞語" + +msgid "Upper Sorbian" +msgstr "上索布語" + +msgid "Hungarian" +msgstr "匈牙利語" + +msgid "Armenian" +msgstr "亞美尼亞語" + +msgid "Interlingua" +msgstr "國際語" + +msgid "Indonesian" +msgstr "印尼語" + +msgid "Igbo" +msgstr "伊博語" + +msgid "Ido" +msgstr "伊多語" + +msgid "Icelandic" +msgstr "冰島語" + +msgid "Italian" +msgstr "義大利語" + +msgid "Japanese" +msgstr "日語" + +msgid "Georgian" +msgstr "喬治亞語" + +msgid "Kabyle" +msgstr "卡拜爾語" + +msgid "Kazakh" +msgstr "哈薩克語" + +msgid "Khmer" +msgstr "高棉語" + +msgid "Kannada" +msgstr "康納達語" + +msgid "Korean" +msgstr "韓語" + +msgid "Kyrgyz" +msgstr "吉爾吉斯語" + +msgid "Luxembourgish" +msgstr "盧森堡語" + +msgid "Lithuanian" +msgstr "立陶宛語" + +msgid "Latvian" +msgstr "拉脫維亞語" + +msgid "Macedonian" +msgstr "馬其頓語" + +msgid "Malayalam" +msgstr "馬拉雅拉姆語" + +msgid "Mongolian" +msgstr "蒙古語" + +msgid "Marathi" +msgstr "馬拉提語" + +msgid "Malay" +msgstr "馬來語" + +msgid "Burmese" +msgstr "緬甸語" + +msgid "Norwegian Bokmål" +msgstr "書面挪威語" + +msgid "Nepali" +msgstr "尼泊爾語" + +msgid "Dutch" +msgstr "荷蘭語" + +msgid "Norwegian Nynorsk" +msgstr "新挪威語" + +msgid "Ossetic" +msgstr "奧塞梯語" + +msgid "Punjabi" +msgstr "旁遮普語" + +msgid "Polish" +msgstr "波蘭語" + +msgid "Portuguese" +msgstr "葡萄牙語" + +msgid "Brazilian Portuguese" +msgstr "巴西葡萄牙語" + +msgid "Romanian" +msgstr "羅馬尼亞語" + +msgid "Russian" +msgstr "俄語" + +msgid "Slovak" +msgstr "斯洛伐克語" + +msgid "Slovenian" +msgstr "斯洛維尼亞語" + +msgid "Albanian" +msgstr "阿爾巴尼亞語" + +msgid "Serbian" +msgstr "塞爾維亞語" + +msgid "Serbian Latin" +msgstr "塞爾維亞拉丁語" + +msgid "Swedish" +msgstr "瑞典語" + +msgid "Swahili" +msgstr "斯瓦希里語" + +msgid "Tamil" +msgstr "坦米爾語" + +msgid "Telugu" +msgstr "泰盧固語" + +msgid "Tajik" +msgstr "塔吉克語" + +msgid "Thai" +msgstr "泰語" + +msgid "Turkmen" +msgstr "土庫曼語" + +msgid "Turkish" +msgstr "土耳其語" + +msgid "Tatar" +msgstr "韃靼語" + +msgid "Udmurt" +msgstr "烏德穆爾特語" + +msgid "Uyghur" +msgstr "維吾爾語" + +msgid "Ukrainian" +msgstr "烏克蘭語" + +msgid "Urdu" +msgstr "烏爾都語" + +msgid "Uzbek" +msgstr "烏茲別克語" + +msgid "Vietnamese" +msgstr "越南語" + +msgid "Simplified Chinese" +msgstr "簡體中文" + +msgid "Traditional Chinese" +msgstr "繁體中文" + +msgid "Messages" +msgstr "訊息" + +msgid "Site Maps" +msgstr "網站地圖" + +msgid "Static Files" +msgstr "靜態文件" + +msgid "Syndication" +msgstr "聯播" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +msgid "…" +msgstr "…" + +msgid "That page number is not an integer" +msgstr "該頁碼並非整數" + +msgid "That page number is less than 1" +msgstr "該頁碼小於 1" + +msgid "That page contains no results" +msgstr "該頁未包含任何內容" + +msgid "Enter a valid value." +msgstr "請輸入有效的值。" + +msgid "Enter a valid domain name." +msgstr "輸入有效的網域名稱。" + +msgid "Enter a valid URL." +msgstr "請輸入有效的 URL。" + +msgid "Enter a valid integer." +msgstr "請輸入有效的整數。" + +msgid "Enter a valid email address." +msgstr "請輸入有效的電子郵件地址。" + +#. Translators: "letters" means latin letters: a-z and A-Z. +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "輸入合適的 \"slug\" 字串,由字母、數字、底線與連字號組成。" + +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "輸入合適的 \"slug\" 字串,內含 Unicode 字元、數字、底線或減號。" + +#, python-format +msgid "Enter a valid %(protocol)s address." +msgstr "輸入正確的 %(protocol)s 位址。." + +msgid "IPv4" +msgstr "IPv4" + +msgid "IPv6" +msgstr "IPv6" + +msgid "IPv4 or IPv6" +msgstr "IPv4 或 IPv6" + +msgid "Enter only digits separated by commas." +msgstr "請輸入以逗號分隔的數字。" + +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "請確認這個值是否為 %(limit_value)s (目前是 %(show_value)s)。" + +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "請確認此數值是否小於或等於 %(limit_value)s。" + +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "請確認此數值是否大於或等於 %(limit_value)s。" + +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "請確認此數值是 %(limit_value)s 的倍數。" + +#, python-format +msgid "" +"Ensure this value is a multiple of step size %(limit_value)s, starting from " +"%(offset)s, e.g. %(offset)s, %(valid_value1)s, %(valid_value2)s, and so on." +msgstr "" +"請確認此數值是 %(limit_value)s的倍數。從 %(offset)s 起始,例如 %(offset)s, " +"%(valid_value1)s, %(valid_value2)s,以此類推。" + +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"請確認這個值至少包含 %(limit_value)d 個字 (目前為 %(show_value)d 個字)。" + +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +"請確認這個值至多包含 %(limit_value)d 個字 (目前為 %(show_value)d 個字)。" + +msgid "Enter a number." +msgstr "輸入一個數字" + +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "請確認數字全長不超過 %(max)s 位。" + +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "確認小數不超過 %(max)s 位。" + +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "請確認小數點前不超過 %(max)s 位。" + +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "不允許副檔名為 “%(extension)s” 。可用的像是: %(allowed_extensions)s。" + +msgid "Null characters are not allowed." +msgstr "不允許空(null)字元。" + +msgid "and" +msgstr "和" + +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "包含 %(field_labels)s 的 %(model_name)s 已經存在。" + +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "約束條件 “%(name)s” 被違反。" + +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "數值 %(value)r 不是有效的選項。" + +msgid "This field cannot be null." +msgstr "這個值不能是 null。" + +msgid "This field cannot be blank." +msgstr "這個欄位不能為空。" + +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "包含 %(field_label)s 的 %(model_name)s 已經存在。" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "%(field_label)s 在 %(date_field_label)s %(lookup_type)s 上必須唯一。" + +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "欄位類型: %(field_type)s" + +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "“%(value)s” 只能是 True 或 False。" + +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "“%(value)s” 只能是 True 或 False 或 None 。" + +msgid "Boolean (Either True or False)" +msgstr "布林值 (True 或 False)" + +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "字串 (至多 %(max_length)s 個字)" + +msgid "String (unlimited)" +msgstr "字串 (無限)" + +msgid "Comma-separated integers" +msgstr "逗號分隔的整數" + +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "“%(value)s” 的日期格式錯誤。應該是 YYYY-MM-DD 才對。" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "“%(value)s” 的格式正確 (YYYY-MM-DD) 但日期有誤。" + +msgid "Date (without time)" +msgstr "日期 (不包括時間)" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" +"“%(value)s” 的格式錯誤。應該是 YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ] 才對。" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" +"“%(value)s” 的格式正確 (YYYY-MM-DD HH:MM[:ss[.uuuuuu]][TZ]) 但日期/時間有誤。" + +msgid "Date (with time)" +msgstr "日期 (包括時間)" + +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "“%(value)s” 必須是十進位數。" + +msgid "Decimal number" +msgstr "十進位數" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "“%(value)s” 的格式錯誤。格式必須為 [DD] [[HH:]MM:]ss[.uuuuuu] 。" + +msgid "Duration" +msgstr "時長" + +msgid "Email address" +msgstr "電子郵件地址" + +msgid "File path" +msgstr "檔案路徑" + +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "“%(value)s” 必須是浮點小數。" + +msgid "Floating point number" +msgstr "浮點數" + +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "“%(value)s” 必須是整數。" + +msgid "Integer" +msgstr "整數" + +msgid "Big (8 byte) integer" +msgstr "大整數 (8位元組)" + +msgid "Small integer" +msgstr "小整數" + +msgid "IPv4 address" +msgstr "IPv4 地址" + +msgid "IP address" +msgstr "IP 位址" + +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "“%(value)s” 必須是 None, True 或 False。" + +msgid "Boolean (Either True, False or None)" +msgstr "布林值 (True, False 或 None)" + +msgid "Positive big integer" +msgstr "大的正整數" + +msgid "Positive integer" +msgstr "正整數" + +msgid "Positive small integer" +msgstr "正小整數" + +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "Slug (最多 %(max_length)s個字)" + +msgid "Text" +msgstr "文字" + +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "“%(value)s” 格式錯誤。格式必須為 HH:MM[:ss[.uuuuuu]] 。" + +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "“%(value)s” 的格式正確 (HH:MM[:ss[.uuuuuu]]),但時間有誤。" + +msgid "Time" +msgstr "時間" + +msgid "URL" +msgstr "網址" + +msgid "Raw binary data" +msgstr "原始二進制數據" + +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "“%(value)s” 不是有效的 UUID。" + +msgid "Universally unique identifier" +msgstr "通用唯一識別碼" + +msgid "File" +msgstr "檔案" + +msgid "Image" +msgstr "圖像" + +msgid "A JSON object" +msgstr "JSON 物件" + +msgid "Value must be valid JSON." +msgstr "必須是有效的 JSON 值" + +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "%(field)s 為 %(value)r 的 %(model)s 物件不存在。" + +msgid "Foreign Key (type determined by related field)" +msgstr "外鍵(類型由相關欄位決定)" + +msgid "One-to-one relationship" +msgstr "一對一關連" + +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "%(from)s-%(to)s 關連" + +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "%(from)s-%(to)s 關連" + +msgid "Many-to-many relationship" +msgstr "多對多關連" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the +#. label +msgid ":?.!" +msgstr ":?.!" + +msgid "This field is required." +msgstr "這個欄位是必須的。" + +msgid "Enter a whole number." +msgstr "輸入整數" + +msgid "Enter a valid date." +msgstr "輸入有效的日期" + +msgid "Enter a valid time." +msgstr "輸入有效的時間" + +msgid "Enter a valid date/time." +msgstr "輸入有效的日期/時間" + +msgid "Enter a valid duration." +msgstr "輸入有效的時間長。" + +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "天數必須介於 {min_days} 到 {max_days} 天" + +msgid "No file was submitted. Check the encoding type on the form." +msgstr "沒有檔案被送出。請檢查表單的編碼類型。" + +msgid "No file was submitted." +msgstr "沒有檔案送出" + +msgid "The submitted file is empty." +msgstr "送出的檔案是空的。" + +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "請確認這個檔名至多包含 %(max)d 個字 (目前為 %(length)d)。" + +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "請提交一個檔案或勾選清除選項,但不能同時進行。" + +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "請上傳一個有效的圖檔。你上傳的檔案不是圖片或是已損壞的圖檔。" + +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "請選擇有效的選項, %(value)s 不是一個可用的選項。" + +msgid "Enter a list of values." +msgstr "請輸入一個列表的值。" + +msgid "Enter a complete value." +msgstr "請輸入完整的值。" + +msgid "Enter a valid UUID." +msgstr "請輸入有效的 UUID。" + +msgid "Enter a valid JSON." +msgstr "輸入有效的 JSON。" + +#. Translators: This is the default suffix added to form field labels +msgid ":" +msgstr ":" + +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "(隱藏欄位 %(name)s) %(error)s" + +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" +"ManagementForm 資料遺失或被篡改。缺少欄位:%(field_names)s。如果問題持續存" +"在,您可能需要提交錯誤報告。" + +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "請送出最多 %(num)d 個表單。" + +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "請送出最少 %(num)d 個表單。" + +msgid "Order" +msgstr "排序" + +msgid "Delete" +msgstr "刪除" + +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "請修正 %(field)s 的重覆資料" + +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "請修正 %(field)s 的重覆資料, 必須為唯一值" + +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" +"請修正 %(field_name)s 重複資料, %(date_field)s 的 %(lookup)s 必須是唯一值。" + +msgid "Please correct the duplicate values below." +msgstr "請修正下方重覆的數值" + +msgid "The inline value did not match the parent instance." +msgstr "內含的外鍵無法連接到對應的上層實體。" + +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "選擇有效的選項: 此選擇不在可用的選項中。" + +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "“%(pk)s” 不是一個有效的值。" + +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" +"%(datetime)s 無法被轉換成 %(current_timezone)s時區格式; 可能內容有誤或不存" +"在。" + +msgid "Clear" +msgstr "清除" + +msgid "Currently" +msgstr "目前" + +msgid "Change" +msgstr "變更" + +msgid "Unknown" +msgstr "未知" + +msgid "Yes" +msgstr "是" + +msgid "No" +msgstr "否" + +#. Translators: Please do not add spaces around commas. +msgid "yes,no,maybe" +msgstr "是、否、也許" + +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "%(size)d 位元組" + +#, python-format +msgid "%s KB" +msgstr "%s KB" + +#, python-format +msgid "%s MB" +msgstr "%s MB" + +#, python-format +msgid "%s GB" +msgstr "%s GB" + +#, python-format +msgid "%s TB" +msgstr "%s TB" + +#, python-format +msgid "%s PB" +msgstr "%s PB" + +msgid "p.m." +msgstr "p.m." + +msgid "a.m." +msgstr "a.m." + +msgid "PM" +msgstr "PM" + +msgid "AM" +msgstr "AM" + +msgid "midnight" +msgstr "午夜" + +msgid "noon" +msgstr "中午" + +msgid "Monday" +msgstr "星期一" + +msgid "Tuesday" +msgstr "星期二" + +msgid "Wednesday" +msgstr "星期三" + +msgid "Thursday" +msgstr "星期四" + +msgid "Friday" +msgstr "星期五" + +msgid "Saturday" +msgstr "星期六" + +msgid "Sunday" +msgstr "星期日" + +msgid "Mon" +msgstr "星期一" + +msgid "Tue" +msgstr "星期二" + +msgid "Wed" +msgstr "星期三" + +msgid "Thu" +msgstr "星期四" + +msgid "Fri" +msgstr "星期五" + +msgid "Sat" +msgstr "星期六" + +msgid "Sun" +msgstr "星期日" + +msgid "January" +msgstr "一月" + +msgid "February" +msgstr "二月" + +msgid "March" +msgstr "三月" + +msgid "April" +msgstr "四月" + +msgid "May" +msgstr "五月" + +msgid "June" +msgstr "六月" + +msgid "July" +msgstr "七月" + +msgid "August" +msgstr "八月" + +msgid "September" +msgstr "九月" + +msgid "October" +msgstr "十月" + +msgid "November" +msgstr "十一月" + +msgid "December" +msgstr "十二月" + +msgid "jan" +msgstr "一月" + +msgid "feb" +msgstr "二月" + +msgid "mar" +msgstr "三月" + +msgid "apr" +msgstr "四月" + +msgid "may" +msgstr "五月" + +msgid "jun" +msgstr "六月" + +msgid "jul" +msgstr "七月" + +msgid "aug" +msgstr "八月" + +msgid "sep" +msgstr "九月" + +msgid "oct" +msgstr "十月" + +msgid "nov" +msgstr "十一月" + +msgid "dec" +msgstr "十二月" + +msgctxt "abbrev. month" +msgid "Jan." +msgstr "一月" + +msgctxt "abbrev. month" +msgid "Feb." +msgstr "二月" + +msgctxt "abbrev. month" +msgid "March" +msgstr "三月" + +msgctxt "abbrev. month" +msgid "April" +msgstr "四月" + +msgctxt "abbrev. month" +msgid "May" +msgstr "五月" + +msgctxt "abbrev. month" +msgid "June" +msgstr "六月" + +msgctxt "abbrev. month" +msgid "July" +msgstr "七月" + +msgctxt "abbrev. month" +msgid "Aug." +msgstr "八月" + +msgctxt "abbrev. month" +msgid "Sept." +msgstr "九月" + +msgctxt "abbrev. month" +msgid "Oct." +msgstr "十月" + +msgctxt "abbrev. month" +msgid "Nov." +msgstr "十一月" + +msgctxt "abbrev. month" +msgid "Dec." +msgstr "十二月" + +msgctxt "alt. month" +msgid "January" +msgstr "一月" + +msgctxt "alt. month" +msgid "February" +msgstr "二月" + +msgctxt "alt. month" +msgid "March" +msgstr "三月" + +msgctxt "alt. month" +msgid "April" +msgstr "四月" + +msgctxt "alt. month" +msgid "May" +msgstr "五月" + +msgctxt "alt. month" +msgid "June" +msgstr "六月" + +msgctxt "alt. month" +msgid "July" +msgstr "七月" + +msgctxt "alt. month" +msgid "August" +msgstr "八月" + +msgctxt "alt. month" +msgid "September" +msgstr "九月" + +msgctxt "alt. month" +msgid "October" +msgstr "十月" + +msgctxt "alt. month" +msgid "November" +msgstr "十一月" + +msgctxt "alt. month" +msgid "December" +msgstr "十二月" + +msgid "This is not a valid IPv6 address." +msgstr "這是無效的 IPv6 位址。" + +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "%(truncated_text)s…" + +msgid "or" +msgstr "或" + +#. Translators: This string is used as a separator between list elements +msgid ", " +msgstr ", " + +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "%(num)d 年" + +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "%(num)d 月" + +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "%(num)d 週" + +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "%(num)d 日" + +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "%(num)d 小時" + +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "%(num)d 分" + +msgid "Forbidden" +msgstr "禁止" + +msgid "CSRF verification failed. Request aborted." +msgstr "CSRF 驗證失敗。已中止請求。" + +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" +"您看到此消息是因為這個 HTTPS 網站要求您的網路瀏覽器發送一個“Referer header”," +"但並沒有被發送。出於安全原因,需要此標頭來確保您的瀏覽器沒有被第三方劫持。" + +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" +"若您的瀏覽器設定為將「Referer」標頭關閉,請重新為這個網站、HTTPS 連線、或" +"「same-origin」請求啟用它。" + +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" +"若您使用 標籤或包含" +"「Referrer-Policy: no-referrer」標頭,請將其移除。 CSRF 保護要求「Referer」標" +"頭進行嚴格參照檢查。若你擔心隱私問題,可使用如 來連" +"結到第三方網站。" + +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" +"你看到這個訊息,是因為這個網站要求在送出表單包含一個 CSRF cookie。這個 " +"cookie 是用於安全用途,保護你的瀏覽器不被第三方挾持。" + +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" +"若你的瀏覽器設定為將 cookie 關閉,請重新為這個網站或「same-origin」請求啟用" +"它。" + +msgid "More information is available with DEBUG=True." +msgstr "設定 DEBUG=True 以獲得更多資訊。" + +msgid "No year specified" +msgstr "不指定年份" + +msgid "Date out of range" +msgstr "日期超過範圍" + +msgid "No month specified" +msgstr "沒有指定月份" + +msgid "No day specified" +msgstr "沒有指定日期" + +msgid "No week specified" +msgstr "沒有指定週數" + +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "%(verbose_name_plural)s 無法使用" + +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" +"未來的 %(verbose_name_plural)s 不可用,因為 %(class_name)s.allow_future 設置" +"為 False." + +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "日期字串 “%(datestr)s” 不符合 “%(format)s” 格式。" + +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "無 %(verbose_name)s 符合本次搜尋" + +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "頁面不是最後一頁,也無法被轉換為整數。" + +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "無效的頁面 (%(page_number)s): %(message)s" + +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "列表是空的,並且 “%(class_name)s.allow_empty” 是 False 。" + +msgid "Directory indexes are not allowed here." +msgstr "這裡不允許目錄索引。" + +#, python-format +msgid "“%(path)s” does not exist" +msgstr "“%(path)s” 不存在。" + +#, python-format +msgid "Index of %(directory)s" +msgstr "%(directory)s 的索引" + +msgid "The install worked successfully! Congratulations!" +msgstr "安裝成功!恭喜!" + +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" +"查看 Django %(version)s 的 發行版本說明 " + +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" +"你現在看到這個頁面,是因為在設定檔中設置了 DEBUG = True,且尚未配置任何網址。" + +msgid "Django Documentation" +msgstr "Django 文件" + +msgid "Topics, references, & how-to’s" +msgstr "主題、參考、教學" + +msgid "Tutorial: A Polling App" +msgstr "教學:投票應用" + +msgid "Get started with Django" +msgstr "初學 Django" + +msgid "Django Community" +msgstr "Django 社群" + +msgid "Connect, get help, or contribute" +msgstr "聯繫、獲得幫助、貢獻" diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4be8d84d6258d6280c9fbd7b398a82e963d7f3d5 GIT binary patch literal 198 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_!vsFxJacWU< zOnGWfNq&q=esXDUYFPO2Tq3B^o6f`tJ9 D?LRhj literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/__pycache__/formats.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..284e51a264c80146bdddb8496abc3e90f3194b95 GIT binary patch literal 910 zcmZ`%%WB&|6qRh*kza8fno?*N+04QVTYD2i)mV;1BgyDN@gNYYM|PZAQm`aS^#%Qd zQs}DCMfctGSG+9^Easu_L9amPp;t)-*GLuDNewqh-DKL0 zv<`8j-#>qZH(x$p-F*6%73JP6J-EjnQ6=Z^%15Croj+g&oZ9Eh~`KCbmeOL7Ogp^6r+S&DiGnskyU zS|dp`TvgXBd22XWqrN!WGA&cq4a?1^9{s0w;s%OgQsv0i2ksk5dW{cPHbooS)+W!y zhbzx6_w?>+yL_uJohhn#;hNG=G(<}`z%J{yDQf*3*VJtFm1MZ*hHeiP?fg5lD8c7g zmA{u~J;#pyMeMxy=Sk%Bqj4JeVG=u2KTf>JU3lqyXMZt!>%_Cf?_7K1cOIx5a^;27 zNEk=qM3_foZ|)1(r7L@3B21!1;3aYQ`ooex2_llt{Zsm@#xJ079LMG#p5x1WnX7Xw G&;A3hZUbWg literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/formats.py b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/formats.py new file mode 100644 index 0000000..79936f8 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/locale/zh_Hant/formats.py @@ -0,0 +1,42 @@ +# This file is distributed under the same license as the Django package. +# +# The *_FORMAT strings use the Django date format syntax, +# see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date +DATE_FORMAT = "Y年n月j日" # 2016年9月5日 +TIME_FORMAT = "H:i" # 20:45 +DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 +YEAR_MONTH_FORMAT = "Y年n月" # 2016年9月 +MONTH_DAY_FORMAT = "m月j日" # 9月5日 +SHORT_DATE_FORMAT = "Y年n月j日" # 2016年9月5日 +SHORT_DATETIME_FORMAT = "Y年n月j日 H:i" # 2016年9月5日 20:45 +FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday) + +# The *_INPUT_FORMATS strings use the Python strftime format syntax, +# see https://docs.python.org/library/datetime.html#strftime-strptime-behavior +DATE_INPUT_FORMATS = [ + "%Y/%m/%d", # '2016/09/05' + "%Y-%m-%d", # '2016-09-05' + "%Y年%n月%j日", # '2016年9月5日' +] + +TIME_INPUT_FORMATS = [ + "%H:%M", # '20:45' + "%H:%M:%S", # '20:45:29' + "%H:%M:%S.%f", # '20:45:29.000200' +] + +DATETIME_INPUT_FORMATS = [ + "%Y/%m/%d %H:%M", # '2016/09/05 20:45' + "%Y-%m-%d %H:%M", # '2016-09-05 20:45' + "%Y年%n月%j日 %H:%M", # '2016年9月5日 14:45' + "%Y/%m/%d %H:%M:%S", # '2016/09/05 20:45:29' + "%Y-%m-%d %H:%M:%S", # '2016-09-05 20:45:29' + "%Y年%n月%j日 %H:%M:%S", # '2016年9月5日 20:45:29' + "%Y/%m/%d %H:%M:%S.%f", # '2016/09/05 20:45:29.000200' + "%Y-%m-%d %H:%M:%S.%f", # '2016-09-05 20:45:29.000200' + "%Y年%n月%j日 %H:%n:%S.%f", # '2016年9月5日 20:45:29.000200' +] + +DECIMAL_SEPARATOR = "." +THOUSAND_SEPARATOR = "" +NUMBER_GROUPING = 4 diff --git a/gestao_raul/Lib/site-packages/django/conf/project_template/manage.py-tpl b/gestao_raul/Lib/site-packages/django/conf/project_template/manage.py-tpl new file mode 100644 index 0000000..a628884 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/project_template/manage.py-tpl @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', '{{ project_name }}.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/__init__.py-tpl new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl new file mode 100644 index 0000000..a827238 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/asgi.py-tpl @@ -0,0 +1,16 @@ +""" +ASGI config for {{ project_name }} project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', '{{ project_name }}.settings') + +application = get_asgi_application() diff --git a/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl new file mode 100644 index 0000000..3b6caab --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/settings.py-tpl @@ -0,0 +1,123 @@ +""" +Django settings for {{ project_name }} project. + +Generated by 'django-admin startproject' using Django {{ django_version }}. + +For more information on this file, see +https://docs.djangoproject.com/en/{{ docs_version }}/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/ +""" + +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = '{{ secret_key }}' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = '{{ project_name }}.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = '{{ project_name }}.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/{{ docs_version }}/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/{{ docs_version }}/howto/static-files/ + +STATIC_URL = 'static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/{{ docs_version }}/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl new file mode 100644 index 0000000..622f79e --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/urls.py-tpl @@ -0,0 +1,22 @@ +""" +URL configuration for {{ project_name }} project. + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/{{ docs_version }}/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path + +urlpatterns = [ + path('admin/', admin.site.urls), +] diff --git a/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl new file mode 100644 index 0000000..1ee28d0 --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/project_template/project_name/wsgi.py-tpl @@ -0,0 +1,16 @@ +""" +WSGI config for {{ project_name }} project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/{{ docs_version }}/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', '{{ project_name }}.settings') + +application = get_wsgi_application() diff --git a/gestao_raul/Lib/site-packages/django/conf/urls/__init__.py b/gestao_raul/Lib/site-packages/django/conf/urls/__init__.py new file mode 100644 index 0000000..302f68d --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/conf/urls/__init__.py @@ -0,0 +1,9 @@ +from django.urls import include +from django.views import defaults + +__all__ = ["handler400", "handler403", "handler404", "handler500", "include"] + +handler400 = defaults.bad_request +handler403 = defaults.permission_denied +handler404 = defaults.page_not_found +handler500 = defaults.server_error diff --git a/gestao_raul/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/urls/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3024306401fb5de047e9ecb571b52ac5c9e62abd GIT binary patch literal 464 zcmY*WJx{|h5VeywDgBc84=f#MBT*JqAtV?P3+iG;veNn*TpYWclUDo`RyO`pRwn)d zV&c+DsGQ{Ich9GLcd{D{x{TuOd!CPlLVW|9!3MvQ|rv;Zd{@9dy)JO%2vb9V@P#%EM;bllyz^BDT(k>fiJN| zPvUd~SZMFHvr>W8ps?NO!%dchw62sZS6PKo)2HtNw}2859b!z<2g4p+d-##JSLvKe ze7XZuy7bO1s{(B4)13S=Cy}=O$M5wb^}2-fO}2a{L!TaopDdkSO`4r1QfjM9DaV`F bx-%=BstjDyUok%<=(9fW1W^$2hEqO;BJF1p9MQT{v2CY|EuYm!z`Y z#rCwhruPDQfjmRsMAx4B21O6u&d_$U0YZQy4u6K<%=b}xG#Uih{`lv3{(Be%f01*& zMd&=jZWm}|Aejm>`f|l8o^eLwj_Ool7FJOfRo$#x^|GFy4^>?Cvp$X^*?q@kPsVR} zHh^F`lzlmP6I`+^fu0;fUnX+&wlinhNV3Bq9siBD1us(8#ul6_>$y$C_RD=;_@xoECs^&jex@2$B*Jr=?qzH6ALhm^F3bN?q^zSVuHfP(z~Xe>zK z_ku85JBm~2diIT|(ZPkhMq8*x;=aw=I+Teqku)-tToxZ6en0);-u)MCs7mV$WotUL zftx;l+ORRoz7I@-&c8oCc`!M)VC>`+l+%-^x@an>ot@0Vx?E2U*7B3_et9ynrGsx* zdGRxr-cIBaSfRTXvSwjB}*-F!&{s9Qo>;|LJRd0Ioq2 za^ael0-Ekd_(ej(#HVK*4R3c0z7?m0bN691m*p^L9D ztn&)eaohLe#=_ccxYoli!B|UjJ451FqxGVs{7e^3c5`#&bqS|-ml*Kzy)@dW$cqK| r`+Zhhq}Q?{DI1?!{9UDGqu?P4%HBc~2MPa*C2ZUYzZkG&9AEtpn*(B- literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/conf/urls/__pycache__/static.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff07e145b149b235b9721f7cc1c0b0f7f4070513 GIT binary patch literal 1058 zcmZuwO;6h}7`Br%4W*#&L!3R0Npv6SeFDY?XhLIS0(!~HP)OVmNaE!|j20WC^F-#w8>n zO^By=BcZ9`8B}94F;mO4Dr_aS)b{KO*OGebcus}wWFl>N4N7>UPs4iXe5T%HNViCP z;wMHX@7lC<3P@z0#7bkym5Q@SBEG+t<{)wo$zWMz{WvOshj?EHzMK1MA7M>$IO2h! zLyd=KUdQf;0MwDtchRv@(a}j2>9fipUmGwa`%Zd3{LEozT3X7j%XU z>CgzRuV$o~*8EvYNQ2?nHDD)f^{9hwix5kyqS8;ITP@P6W@$WGU$rjj$Du(9ykh!kQ z)IMjxrDCGb2BHAXx=I}hB)QLlYqQE}hdp7VG;`O4+_$SMYcF@v=P3(CP^3IlyC8&G z_{U;%V`IBrMLB)2n&xUSj>K}{{rH4sLNQb^jj>(fY3t)7IrrlIyjF10ecYbCq#ab! zK0NjTWuE{GH3O|;SzB3s)qM?G-O|puN<;uPeK3HRHkW~).*)$" % re.escape(prefix.lstrip("/")), view, kwargs=kwargs + ), + ] diff --git a/gestao_raul/Lib/site-packages/django/contrib/__init__.py b/gestao_raul/Lib/site-packages/django/contrib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gestao_raul/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..049fdb214764526ce562b5b6e900a8a8bbd6f206 GIT binary patch literal 186 zcmd1j<>g`kf|)-;(?RrO5P=LBfgA@QE@lA|DGb33nv8xc8Hzx{2;x_)vsFxJacWU< zOnGWfNq&q=esXDUYFPO2Tq+F~Xk!NLFlP-HS0 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__init__.py b/gestao_raul/Lib/site-packages/django/contrib/admin/__init__.py new file mode 100644 index 0000000..0d9189f --- /dev/null +++ b/gestao_raul/Lib/site-packages/django/contrib/admin/__init__.py @@ -0,0 +1,52 @@ +from django.contrib.admin.decorators import action, display, register +from django.contrib.admin.filters import ( + AllValuesFieldListFilter, + BooleanFieldListFilter, + ChoicesFieldListFilter, + DateFieldListFilter, + EmptyFieldListFilter, + FieldListFilter, + ListFilter, + RelatedFieldListFilter, + RelatedOnlyFieldListFilter, + SimpleListFilter, +) +from django.contrib.admin.options import ( + HORIZONTAL, + VERTICAL, + ModelAdmin, + ShowFacets, + StackedInline, + TabularInline, +) +from django.contrib.admin.sites import AdminSite, site +from django.utils.module_loading import autodiscover_modules + +__all__ = [ + "action", + "display", + "register", + "ModelAdmin", + "HORIZONTAL", + "VERTICAL", + "StackedInline", + "TabularInline", + "AdminSite", + "site", + "ListFilter", + "SimpleListFilter", + "FieldListFilter", + "BooleanFieldListFilter", + "RelatedFieldListFilter", + "ChoicesFieldListFilter", + "DateFieldListFilter", + "AllValuesFieldListFilter", + "EmptyFieldListFilter", + "RelatedOnlyFieldListFilter", + "ShowFacets", + "autodiscover", +] + + +def autodiscover(): + autodiscover_modules("admin", register_to=site) diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e27e04b5f5e545d8d6afcc76cc70472cc4c42621 GIT binary patch literal 1237 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/apps.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..585c42792fe7c0517bd0ef031ab7fb026b97eb89 GIT binary patch literal 1478 zcmZux&2Aev5GMCeD`n-_hJvK&MTcAjwCiJ#q9|gxNOCBAu>%x@0AjtQI_$Ilsa5+FhdUK_nXz@@rc0s`}51?i;$3yC~U6?gr~6W z??40*RFRr8N|6s#P=_q6BNll%RB@fK#Pg9F)F~TM@|=iRB-cbFl3s;u1oA+nAg6K! z@*OceA+ymZuuf*Q8y>dpk!}{%au#%V%X3-2;)STIh8Jzy?e_;lwz3hjDJyB=P2x|H z%a+nP`KRNmSYMWCa(e|JJcVt403r#ag0MhP7K(sHB4n|MSRw}^zM?D@i5OfHHWVp@ zH|+LKs=8J35JTzXTR-lPrvF7eeRE!w=To7joi^G5Gc8t5*M+Ofsix+kGd%- zqtLR{VjUlt?Ur4zcof2&Ek*E*h!x|H*#s3qs! zh;u0WN+F+d{(4oY&CP&wp-ax$zK{!u&vEP@Utnigc5{Y7b`d`5C}$b;^h{gnt(zSP z#TQ_UjPYy$1h++vlteTNVAGUlfxo*2RxBzm->mRad*c9 zU<1!5r{{9IiFpg73vH&plG|v-G`|4!^cHe(axftK0Ei=3fSvb*lE27B@Ge9S(PC1# zoJC!1S1sTK6YY||(k$EdVDOIvfEjXLs=`{%`)c_@;j`~x`>u}Y4qfkUW!3j{HZa(D zvx{U8$v%*7u*tS}J>FO^rBXK@5Sj*aFy7Za;3lvwM&37N5*R!^o@MZ7>c>f@z2OY^?G#Y7($(Fb0nT?|Tb6K3)v9OMmVw T`3nxR#q$g>pTV~qPR9QNyeE4^ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/checks.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a005d37fe83c3db6dc0204d145fdb31dcf598258 GIT binary patch literal 34554 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 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/forms.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e5e750f9c9c758add9e0e900534e83bac917bfa2 GIT binary patch literal 1407 zcmZ`(Pj4JG6t`z)XD6%O5JK8C2q9mP*h4lF#|luR^5;@Tl~6g1Rx;kPcQcD;ytO?^ z6XirI^~49@28SN{m3-yIH$X@b-t(p}S2#jC;e6qMo3Hcq3 zn79Ac>@!G_<5mQYIAbM5j$wW>HUdugS|kCEpU6$=-7!dx~DBWdU|B`(XD~ z0``V1z9Zv}KVU~PPQvzK=Z{tE>q_|AwBH!pgzd+|xl?21!(-7d6wZxlc<+0mYZ+I4 zZLP5|HC!m~)ickvI6td!$D0GA$Kmb+C{j{M%0$vKt%=H(y_ZxbDwpXct?5fz_GDJ} zUywPKJ()i*%HjpdNVx&A_QUR>Z0h!Qq~~7@7>q+!bf-V!c>(dLe%p~1|#*hiI;a?Yy?lnh7qnHm6FKMeTUZ&0;abrozJWMmZ-I z%9We1H|8^C@361%J)#qHAigSzA zvzq{c^0587z`TOwBLy+IFuEqBQd)!42j~>xebg{^n**S@y8s2rXp(_kWk~{<|C9B1 zlDOv9<)g6v0Xky#H!q(|pfl3zD|P##+XB`fjWc@(z7|ily9gg5{1;)=VuT;TkB>nd zc1S@AYH{XhJSg|p^+86lJ`=p1lUSZLKiJyk-8YM@ny6=$TH!O~V!xI5u77sE)^6gh oXq}D^kj1NE_Yjbsc;vgH3&rQ_QhkYhIDBolpcjU8E8V&GFP>%}5fv6CPrUMwr&IyO1H4gni?`&3C!i7_u^o%=`%mxFqMR$8 zGiP7_{XgBFo68#bzVVaK?R@VU!}tL+_%>{o!(&@%x zbID(7F8j-p_Zmlq>K z!v~Rn6#09D)5xF3D%R>}Q1)10zGRf{`*)uHX30!a+ilg1N^Y_c)S^zKa=na#@^&q3 z1j)j7qY}qqOJ}1nj*_KIVWU%y!&l?6cJqzOR@fLT$T!;U%e$TaFsUoM?Ks3-i!W@| z!)p9gJB&8l@zbx?qPS!y#f`QKYdbAn`C`~e=AN&#u3u;~mh20y@Io8W23Lh~(p(o- zR)2yh=<*2gFt)zECoXo2+lKFnJ z+^BS~`^9n;Hn2$yU#W7uDo=X+^N?9bh(3lWG<-8Kd@Ho;PM8YJeKWA$G<_HObYKTg zkP7VsFK~l&&Ae#_-kXk}2{O3BY?6Ia#>eS3yJ?+%9Lq_`WhBOi0xB6vs@kYTQFl(S z>d{J7wWFxysN<~kRCr~#rotde*IL+prIEPTY5_L1i3z-Nxm9U~<#LiOmz(Wix50G2 zT)whfY3LedVHiJm{!+VE)z_1l<;2xH_w%1@w;N%lCHLm%o~Z>v*m}0r*^T}FdT>Tu z&n-iJ00T+%_SX5wFMck<#a+A>Hsbchr`pxsX4s0Oi#uTySK4J&*= zG3YXu1lFfCoy!MdCu{*WtFLG7oAOv|A0( zY*I#2aR+$5EhDPOFs$O@)JGZdu=L7h4|0~kaD7xIR0=K>ysYV3-g~a&0VlF%ck%FE zCT^AxlSVkt5qK~G0IhD+&2NHxBW3l|Hq!Ptt-$$K8qks2eA_(RO+UWM%YCAoTOIEH ziMP#jB`3+0%R;!yWpytG9qs6rseXY4LwcbGJHctGa`_WnM;=k$!VYdbmiwM{dvX`L z;lwTmuwG^FUqtj}zun6LB;D?iUuXav!5GOf00LVhnn$Eu){O#)m5{9W z9NRIScdbNf?FmRE`aEUO0`v_9!K@mDJ%ASj(v%A zp4BamfJ67X<810l4#yn~<|($?eZivq|IGL_dVGdmpF-3_s=o2tATCi4mU8( zh2eZ-`_p}Xj#<1~RNiXuwt|`SdK?RFtBeFYi7|?pr`8cA-axPtfKj|d#e-GcwM;YySR-Qk0BRpXkR5u4+2f&LDz>g7Onf|~bp&CFV@%r0@E@6Vj#3qwbqLuiaD~~DQKth>(&-=*WWl^W zVZeEH7Nc#-a;rR;!N>IQM!0?40C}&~bA$^sX9eZ~IPOiRot{fR+e;&Mdmtd?be~|n zZLXF)O&HE$966}OskdvbBrPN`jFMackyO=$K4?Nt8iH;@3W>H#`U+){lYW6^f;c0( zKRRhHI7ARa>1GSKYZw1O?iU86YRE+=0FlIlxG#XnGl-1?^Cl?Y0N_~Zr=BOk&4l}B zP=6Ic<8xs+n*i6LsT{QADMt?>inX{QQq3EnT6GaQ_DwY(*e@A@gEIRniEwICj^UCx z&=Ln)K_qfa8ps3bqmI>#NgpLs&i|Gr>|Z^K)??csrxBLl<4_!T#ppgf+yhXz+HN!| zov60e2xmzj8_-vDix51{hJK?jp2w-=%0^UIQk*d5!cUZv0X>ze- z(^Yn+05D{5g*|h?+(xYJO=p6sf$0*Az|RO=Nk(R*zBR?rK-&c(<=h0^MliRIo;MH# z=ByjQX0u>sZ-Z-1z?^WplB-c}L?%FWGBc?T*^wqGi%bdaUT11F{b&tD<^Ul&fd~}F z(Lz7t>`$x(O=0pWL3*Cl#796}M~Fyy2DAkN{vCvWp&uFbc{JXvrVtN4rX2*17i}RT z9F`4S0tm*wrRHMD6|s%fV$a%Pozt>=khsfEoDzwfGkSnshcfrRnTPNXq5=dcr+c=D z_KyV4p53!i;t82aZ3<;R1QJ{WZ&u`cg2c-U1H7o4SB>@pF{BPmIZjE=7ND>=qQ-Ye z-@i~Cs#8e@pn6HvJoQ=Rr*J39oZSgq;j0~W?rWTsHX-YVV^|QIv$wnV55a0ke8!My z&{HlJz#zg(`cfr=AwVVBT2yO6J8V_M#ExR60oATF8vX*>l&_*5NT~(oF%p^@BcTGd zLPAG0bBKkCH1iFvnk2+Emq9IE3p~=wj|t0%cQA3}JnkVD5;DFFss^mXC4!Hi)}khO z2oC$Iq3(`F&_o`(++~)gU>wkx>BitEb!Si)*l+5~apk(5O;P@#;ZO<@`-nzhQ@xB? zOX(yNwxCois1|ZkBC{r140*AyRLEZR1@k;$ZxB^fY%qPn)vRd}Il?s|k?Uyw#|WZP zST`1NRF+u;vLADtx4VlIha~tuaY*DbByWNr965$gaiCS&0pweR{F`8}0pfjHw4BYv z%ub9$k~f6!0m*y0IDqe~rUFh4VEe$nX&i=b0R~~O=P_840wC=+)PqP*LAIhS_ZJ9J z0g;C3tXX)^wVa=I?;CAcOS&_l8Wx!&9CnkD5ZM%g%Q~M>78K}~@h>=h=8f|n! zayTRg-$jta0U;1_&|Ml~$dH0ffF$>rLXbWF8WKB@*fj;HTl+ApV28FU_RIsQmp4sQ zXagjjlsX}0R=>=RPD|dFyr~|hq3|HxL!X-2GHV8iKP4nD&h#)Y&ky5%f_AAlDJvQJ zZ^_&A3s(mR^Bj%1>MpD*aceE%?kAB^&od&!gsm3hOA7{J7=lwIyAiCeV)~7Cx3_Dr zma=Mzjpf*AU{u?PU=Hliydpyj{ShcnGP-MA*%8nm9K47@HFmBunmYI<%KjEXbOcA_ z)~uPecm-K=#dK{Kq{cJdpINs1v+nZPg$!q#xDgVYA=DL-8Qca50tw52(Fu0S#&~(E z%1AJBYJsf%K7xpcMF`YmOVHTAc?Wdl*6xgsub}oj9G6nJXLzRP=9e@Up2 zb3UMMR_r+k3pYt`7KMkVH@n{1My0tGRL%+bi|ua%GO(yxVn5Fey&)RrzktKJP+Fo_ z0(t=C4WYY9s@x3YO5zF#Mv7;dq{NVyWQQX}ij+ZfVU@l8su(B3x>6T>=1Z(ddH%--&{|aXJq+r8@gfW{^5{8GAl5>Klf!5cJC8U9j#~k>I{5jMEG$f9-8+1(d#f1iQB56mZbpH+Q)Eblt0GAS=SY zA7=v_5O3|XHdI>I+5F(^g zQ9F^JtL`cV%3lUC?=GFKtX@*#_7kUH+dGYOJbR{ct~93;1cg?4G^*oI7T6r2S0(acy-1dO$;-^L9!T*LGI}@ z;3xFEG>oRXr};NTR!T8-IQR&cwr$ya)*f!An}ZB*fetzQ_C#B;q2rGb4LHJO6~TBdKp zA=8782R@$;>RreItbZBwFb%208;l#z_tHTcisz+XdaSfK)oP)asxQV%X!jMgH+D_+ zmB2e#j*rAEz4XCR@J+}mpu#6(-SSv`eA`0nZ}eM#qh}nP;22yP+NI-@pwpnx_3XZl zd5hfTX#P^Bug#dr94xBhQ7qRWhzN1?GnCxQ^nz?8>3+2jn>oF<<#N}0WVLj+|A=-7 zuJs*)YXT8#aI?VU9fLOSM7pRUQ4Ir_bm5#u_y2vuZm!eZc zbs3RNh@=I9O9;|%!HEr&(90~L5pb8vaY~qjpHpG9+lb5be`v{gihR}3B?|}^>uKKf zAWXr+^fN29VlEP4PFg?A+b|Z|r~|5?WFh-sj_DP=AA9-b|5-5$mUY{+idF&UV{bOK z9|(|Iu1e2TOhgiropMEEC@t%~pJkL%{sBR32p+YQ2fTcKUdpQ|pZIuQ>j=^7h=u|Y zY`|g_wlcQ<7aSwvz&1Q|;A;0RL?dzC!inpRIc~E<$8Ao#ZT&pz7lS3SBhMkd92}8! z0qK?CsHEoudPk2Zi_eOPEu@C--Iv0+`)qa<-;=A?6eVW0T2b^LtX5j9S{@f~8C-(g{uP1tI_oc0KFz-Y+k4mm^)t#^FgNu)#F<_OakiI5oEumq%Uv!E5;+(AL{|$j)@_!mW!~r?WrFXU9ufm;I@mVHs)kpnd+QFsI)Eybc@M$W=T9 z0k0ES(ZCuB3B~{?=9NL(gjE81Tixj_h+To{ROcw^LF_^w0}#*%4M4dJK!X(1gFOP2 zA=7g&!=-%X9<<1+kC48Iyt0GQ@&}MY0ElU5j9y8kCUC=D7 z0O1J2%4i$`RCg0T)5{zB{Rj1;aXnBoQ_7X1H=p7NU{0YSu>rMuSW&{LG730r8JmPb>uIA&`=Y?_vx<}YIVzo62#@@E$&4wR6}CIW zc3A>BB+@PUZD-GTocrwobA zx((a#+s=ES4G+vX-5CQ-95n_VJ{p;L#v$;{i_bzrpWNyR zBnH+vSewKl53C1M5ihU3xuHlwVK;mUfAsmWE7f|~>o)OV0uf3=D&R7_2 z!y`xTomWT#O1L{P$6eq&mSkSurx3BU(QoDveFH7O&-HN65DZSwSj*HnhZe)zkzGHD zgchnTeHNc$!Q+gk7!WJ|9{u#q%wiWf0C~Fd{%1>yaXZG-S)nCWh^_I=ss9vH|I={l z`)2HSdYFkN*yzr{4a=JVp1z0{us>1&>K%R$lO4T>u{G{JgWmdxo@Hw4bXfb(SfUtO zi-UJCv*1_WEP!roZeGAwDo*J#NxEDP+Eu(@qj0F!8If|TKVc+(YeAkxW(k^#@Sxww z@SN`aQ06yK`w=ejF(f<#)D@Dz=wJ4~y}P}Ky$@PN?a=m8qsKFNIK$pmgo%&bh+p&> zM2A(RU|t;0bme5mT{(O-1NBHhnMvbuOT2#M_VY?geN56R= z%1t%HrS?Cj(+Gr%h;+8E+fW-ZMTfC^sdfQYU|1?pW{ZXbSNgtj(6_&U_or{B_=taC z?@w#^5N+h^7&GyrOYLhEOZ|LhD{42O_%oNJqFtyMa>E1rs*uHp(P>PV;25KKfg%>- zO~uDqIwDU5lYis27Ljms+GNTY+U@P`Gz8988F&h$ZoJ@#$gfofNM|eByWD^4LD5{e zo z&Y2j@h2F}s7MZ8yZ3TeWKKz`BcuPr6Xb?~M<$1c5IbdgA{_@!?Waj)Kr*cY!!6aMR zjoVu2(jwh843~IRBj`5(=YNO=Zl^+{>-3S*+nm87#$HgY@CC)=Qv`Lb6^21n#*2$a zt%@hnoy&U4Sq|u|wsUtdv|iBxQ(Tt1i6}{juT~qoFkOi(Lze63;N>Xm70!GwnjF2u z{O=GPmN7)ZF2drPb&i?VJ6vR;MIU{c~u*=#8^dJ0Bi>RH&EKLXlpFd<|0qsz{q-M zoI~UD=a~|YJmgdZSDxU^qpX(=j&`|@vJY^V6wk=D@SI09R_`{R_q;c2&%&(k;N0hM z>K3EXJR{)Yecr>#TqHaIbJ5XvjO@fW1eR44kBe!ecY(e$1QZ8u3VQU!E%6*Y8{Ln; z6ywKst6C=!NsIPl;^CPAGSa9Fi!=1tGupJeO5@pDbucy8lS1H9Sr++-Vgu3?v>+4G zSKU%2cz7UR)SZLWO+((O@Me$E2#Iq0!0nfUL!vwb%QDM{t*@NAB0l(Wd29%$A|NL& z^lH8-IgiN`SNt21$j^N%om{s+UlSwyKuM1L!eoJeM4tqH1%v;5@*+)VLHuL99LLku_!4I^rEM`-viW_ff34Gx^^ie;q_sXvnKY9gxNHJzC0 z+1ib3jY#{69CXo73wUFSC@3yie`VNHg==8$VgKhR6sY}s`jx@fn)q*{z7b|kh4OnO z?UKrIF#4tZ#eRED*!A>ttT@%L82H-Of^ZwZ-;1|v4d6?pJ?tb~ey-mVVs)e_0;>fU z9~~5POKaP^E&0_WY^y{}e_^7QK0o~gi8nRXmA~BNn>tu&kFfUGL|52-TM@Pf)}jqC zN6|)|X2azt&kHL%|IE|pKmExUz9`(xcQ$}E@>48lqFC8zY2!b~TC@wu(#^m7hB^91b6%9+qXxk9hL1V`dXN#V-0t4X;&6PL$YmYRS!Z*1=%JdqtBT za^yS1Bw{Ea3wbwQpw41}1r`gqU3<}f@ZZoc{aB#+3+B@zi+=Fe1})O0iT8KzkQ6D& z-7V!gbLPJ9Ip?19yT{?gL|()1KfbtL|C6I>|3e?6zYIPu;)y;3;TmUw=B97vGJNZS z-ZET+QJE2#t&E#dyct-nteaJQCa_yMH>Y?j$hQh^p;dH?>N^`uv`TJC@pdrTnsTQU zp9`j2GwzJy^TDCktUIgt0{Fx39QdMpgip9fdC8p@N5mYT++iEKI0|k`ar5A&iK`p# zvDY;|!w=oj_#u&N9^WzC6DXPGhf#7EB_~nx3}>radG0axsa4A?u_F=3jdnc(pSj%$ zV*#eH7`9{4j@Py}>C@(=Qq*ZnQ)8WUm|=;Jbs`3c zYcFu#h#O(swH9w;RN>l7A`nzkL;cv##MebUQ3XV3q(fKd%r$a4&vS#DcbID`KEtj1 zjAyxh$8a+|2iX*o$;)AVxgE=`D}LLr3%QnPwJZi2{D`;lEaHjY1c|jK<1E&>&W(Gp zlGx~3vALtmnK<*n>RAujw$;;`*{0ph^;l1j^F3pS^-Nfk`H%X%*30xPp1EgXcB|UG zv}gKC5Y|1vMjJg_b{dhx#ikTBKNh^=T#tmaTOUz_b`%SrSL7sC2KnZr*st9Rps3*S zuc^pNvYkjsufdbaTB>L-hNh_?7p^x&Ehe_mXC-D!3hDgbM&Q?zQccO}FV z{ZzkEViG5Fm?z0MB3g^zu8G7XWhZ7c3foDBcUqfKl2KNbWYcM)#HvYwJtamI%W^g` zBN1%KBN#{?B{EOs7?I;dPJlepd0XfL%#`_|O!y8Lst7=dDKjTx$1~&8;NAE8~-xGI|CC2E^#k z`Z}Mn@A4u){O4{UCRjJ!JpPM%u#W z25n)V8F{g1(ZjRz+IF^=eUN{M<@BeJ9))F~I!> zy3*PV1ZiWW)jl(ohp@{U?S1g0b5A~-DxzaiVmSG&u&e$V<>{kD#^8kZh1cV;7$9#jhpi-o7OD(5g}IV)enOOm^gFMy=p ziCU+|spA~zo44c{)IHJ@z4B^eKw*!}T_cn)QfFnSWQ?**!{pDCz1PCl=7j}(M`W#* zrWedVz+9Ng%qO~Tf+O=Wzp$Qk&pq8(qRROotocE70nA|3r_1UBrc$yx{(sAg?1%i1 zl9@S_S>}>_8KYF?VbFn~o+o}NDESI~l6RHoh>(Eft3>{q$WRjUZ}52y&r?KD8j3)Y z_RFQjBv+KGWtxVf<0k32DW@V&5$6zjmdJA;a1}mcl3E}s(JicZf?HndPRjPKf?WG{ zN60Niyb<;N74<05@rI4cEftj#d*Hazov1x2#TIt`fU?SnHa=yVv<)4){nM1C7p&js zOL;b>6K9ufxCWDz^zQLLqho|(IfJ3fR$_Zz+iwZaOY$C>VFymaONyR%yW$$3UoAhw3}=JJ2kkLgczHuXeOZ4J-ZkD}Z~ zJkjq!1~F8?^N0+`ITKbhOZIcmaBY<4M7~+TyNFtIhas97?u05Yfli{-LTQ#F?Y)dU zg|cas<@#lLw4OoPA(RzRR^$`+baxgdhfz|(Y(PFJInwV3?1Pb}QF2tw?`WgQXGeFB zrUsAJQmgQ3`lh}@|(ntCdVdZ_6ZU+Dt~l3*2w@_U$DzDDHxAPMu7WZXle((^Wh zj`Rc9=IfpkvTKKu3yHvakdY@QE$W|WQxrLDEj@X8CNJT0%wv+TAqgzvQH^6nmnQbU z3dB@}9_UyPK@Y9@5lj8Z__?CPN(%D4pP<9%G-RH2r-xD+)b5*{9I2Z82AH1qKzpdk zi5MUfhOJ{MdV|ert5jp4<|JweFrpkK=0m{7`+C1VgZh_HpBe9o5*#=vEnDqSZ~}N1 z-1+RI`=`&Qh@%{R_R&u(iIskJXkRI;-row{{>?dkHbs3=85aS08O_P&2!}@xPR>&^Np*S5gnW1Y!$`5d+>V=Dlg8XuYdhO9h z*7E=!J?~#o7tMm$YzE$!BCf^kZ)_7^dUt9>J*xRW?F>xgbFw2yU5nW*fC>3JKCyWM zpozV(w6wCeaNq-=wfM$D_4VZgXS#~U|2dp# zW^|@he1E|__R{j@<)`lHhnVHRhBJ-rX`q#{xyZ(CJj%|0h9gIkl%EpiY#x{DTe|$T zYsc&XS-gfz5_?B$PneK))7U!206qafQDbR8##wkDux4BDu_f)@f8RE^(KFuD0Z5c|hL*e_re94>B=8G2pYs4>z>5=I87afMKTHexYBFvyy)EtQz-zj6lV6 zcc?w!Fwf6x1gS9+!qbjEC_RspnDSW5Pt+Qy^Ul}6>6dE! z(#ZIVAC8aIz;KVK*&UxxJ+S#SpTTa_#egK;W1GLhZVr);AQ{6`%ymD^JN@6vhC}zS z%J>PS%ct+Wxq7wg;NWy>aYu@map8=G#Emp|8nNS3i?r8pFtmlse%aZSA)sBb<;2o& zM}fM)4jU=__a*!LBm>7FID#YMXNQ1u>bgFp?``s6AEqvAoBUVTQni(VFXCesNavWW zkPejc2MQQl+YIg=o;JNAq)w!OCOF#P!Yj#dG(^Bv0N>+b6rBAPjYftIM6X*Q`d?vRjc!z-Uz!M+b{Y&QT zlM!7uBYMc6{sZjc-AS?#uFb2+1P)P&E(%AqAK^^iMxq1uVkni#68cakDbv}6b_X&v zTG42bR^T~zzAoD0gH3tiziBekjQ-IXty>v7tv@TiLFevFHFQ!r^(~E8s!CDioXQKR zt3i?pLZ3&;B$?}ys3C>5EM+KFxJfJ@i*0i#B9tvZmgMM>o(LQ5vY7^Yvb@CZqo~L& zM4k0PAlhpbZ=>li@I+0J*$f~xD^VWciK!C=q0B&@6`z%|dW8hJqm~H@c;+qOj;QCA`LGOO&n!s^x zJ25Wy1Zok=({rW}sE7dbP_&N2dlOzD7y!QtE-rKfEE~xH>#Agudz5sUj^NRSn!2f) zG?Q~s_@1UN>D>LEzs1NAo#H8dH=m+*JJxJ$v($VTc1Sg}S$PJO$upcbtzZlaZ z&AJ6RR%BDC1v06WJ<#8Q&p;ruwoa#E=*P(WQV1eiHoJc}bXy}*Q)t(@e(kaohf0J> zmj5py4u|W`s8L=!9eMbd`ca%M)0g$Aigd+I>_-XE&B20^CtVjodh@00nj|Gl3k1jT zMZ8?QBZGq+S(@lb@j042M%#$eY(nRmgV14cXAi5y}G>SRj*&ZtR&&)){r<(ryvaK=HMD-`c1c8cmC}VX}-pL zVzuQ5!3s0DKx99mc;q~l$>yzsiW_{P?DCM zNq9(-fyoAuTSU%|6LNdzbwF#RIjc={%4B41~+ype}1H@}|A&Q<>xk4J+_ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/options.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..786898eb526182a70ebc38548d3c3b54b3fb31ef GIT binary patch literal 66223 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 C6jbj3 literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/sites.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..00045dec90d85e9e718d179333c0814cac2ed4be GIT binary patch literal 17706 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 Jdc{1e{x1&z?0WzJ literal 0 HcmV?d00001 diff --git a/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc b/gestao_raul/Lib/site-packages/django/contrib/admin/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aa697336d4242504ea0aa50fb42be3f6e44abde1 GIT binary patch literal 17453 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