1
1
mirror of https://github.com/encode/django-rest-framework.git synced 2025-10-22 19:54:50 +03:00
django-rest-framework/rest_framework
JAEGYUN JUNG 9b1e8d2d43
Add missing & fix Korean translations ()
* update django.po file

* update django.po translators

* Changed the translation for the word “User” from “유저” to “사용자” to make it consistent with Django's translation

reference: 5a91ad3d71/django/contrib/admin/locale/ko/LC_MESSAGES/django.po (L601)

* Add missing translation for the word “Token"

* Fix wrong translation for word "Created"

* Fix translation for "Tokens", just like django translation.

reference: 5a91ad3d71/django/contrib/auth/locale/ko/LC_MESSAGES/django.po (L235)

* Add missing translation for "Invalid Input"

* Add missing translation for throttling messages

* Add missing translation for CharField, BooleanField messages

* fix: remove unnecessary space

* Feat: add missing translation for SlugField error message

* Feat: add missing translation for UUIDField error message

* Fix: add (boolean) for booleanField message

* Feat: add missing translation for `integer to float` error message

* Feat: add & fix translation for DecimalField

* Feat: add & fix translation for DateTimeField

* Feat: add & fix translation for DurationField

* Feat: add & fix translation for Selection&FilePathField

* Feat: add & fix translation for DictField

* Feat: add missing translation for filters

* Feat: add missing translations for template

* Feat: Change end punctuation to the “~세요.” used by Django translations

* update django.po translators

* Feat: add compiled message file

* Update rest_framework/locale/ko_KR/LC_MESSAGES/django.po

Co-authored-by: taezero <51291185+overtae@users.noreply.github.com>

* Update rest_framework/locale/ko_KR/LC_MESSAGES/django.po

Co-authored-by: taezero <51291185+overtae@users.noreply.github.com>

* Feat: remove unnecessary multliline from django.po(kor translation)

* Feat: remove unnecessary multliline from django.po(kor translation)

* Feat: update Korean translations for authentication messages

* Feat: Remove unnecessary English parenthesis descriptions

* Feat: Remove unnecessary English parenthesis descriptions

* Feat: Remove unnecessary English parenthesis descriptions

* Feat: Update compiled message file for ko_KR

---------

Co-authored-by: taezero <51291185+overtae@users.noreply.github.com>
2025-04-02 18:17:04 +01:00
..
authtoken Remove unused code 2024-04-30 18:28:22 +02:00
locale Add missing & fix Korean translations () 2025-04-02 18:17:04 +01:00
management Add --api-version CLI option to generateschema () 2022-09-22 10:36:01 +01:00
schemas Drop deprecated AutoSchema._get_reference method () 2025-01-29 12:27:33 +06:00
static/rest_framework Improve integration with Django Debug Toolbar () 2024-03-07 10:58:59 +01:00
templates/rest_framework Use POST method instead of GET to perform logout in browsable API () 2024-02-19 23:28:04 +01:00
templatetags Fix potential XSS vulnerability in break_long_headers template filter () 2024-06-14 10:52:02 +01:00
utils Remove unused code 2024-04-30 18:28:22 +02:00
__init__.py Prepare v3.16, release notes, and announcement. () 2025-03-28 15:16:33 +01:00
apps.py Make DEFAULT_PAGINATION_CLASS None by default. () 2017-09-25 15:36:30 +02:00
authentication.py replace partition with split in BasicAuthentication () 2022-12-08 09:52:35 +06:00
checks.py Fix punctuation in system check () 2020-04-20 16:40:05 -07:00
compat.py Fix unique together validator doesn't respect condition's fields () 2025-02-17 14:01:32 +06:00
decorators.py pre-commit autoupdate () 2024-01-24 22:47:46 +01:00
documentation.py Updated url()'s with path() and re_path() () 2020-08-25 13:50:02 +02:00
exceptions.py Revert "feat: Add some changes to ValidationError to support django style vad…" () 2024-03-21 17:09:43 +01:00
fields.py Accept integers as min/max values of DecimalField () 2024-09-07 17:07:28 +06:00
filters.py Remove unused code 2024-04-30 18:28:22 +02:00
generics.py Allow generic requests, responses, fields, views () 2023-02-22 21:39:01 +06:00
metadata.py Revert () 2024-03-22 09:40:34 +01:00
mixins.py Revert "Re-prefetch related objects after updating ()" () 2024-03-21 22:23:30 +00:00
negotiation.py Replaced parse_header with parse_header_parameters. () 2022-07-14 14:20:36 +02:00
pagination.py Revert "Ensure CursorPagination respects nulls in the ordering field ()" () 2024-04-27 17:07:05 +06:00
parsers.py Remove unused code 2024-04-30 18:28:22 +02:00
permissions.py Add __hash__ method for permissions.OperandHolder class () 2024-06-10 12:19:06 +06:00
relations.py Replaced OrderedDict with dict () 2023-04-30 15:20:02 +06:00
renderers.py Fix get_template_context to handle also lists () 2024-07-15 22:03:40 +06:00
request.py Fixed AttributeError raised by data property being silently ignored () 2024-07-17 22:51:39 +06:00
response.py Allow generic requests, responses, fields, views () 2023-02-22 21:39:01 +06:00
reverse.py Dropped Python 2 compatibility. () 2019-04-30 17:53:44 +02:00
routers.py Use str as default path converter () 2023-08-16 20:11:50 +06:00
serializers.py Fix unique together validator doesn't respect condition's fields () 2025-02-17 14:01:32 +06:00
settings.py Fix typo () 2024-01-24 23:17:01 +01:00
status.py Added http 102, 103, 421, and 425 status codes () 2022-02-03 11:57:47 +00:00
test.py Fixed regression that tests using format still work () 2025-01-11 00:56:36 +06:00
throttling.py Fix error in throttling when request.user is None () 2022-06-24 13:02:11 +01:00
urlpatterns.py Fix "Converter is already registered" deprecation warning. () 2024-08-26 17:32:50 +02:00
urls.py Replace all url() calls with path() or re_path() () 2020-09-08 15:32:27 +01:00
validators.py Fix unique together validator doesn't respect condition's fields () 2025-02-17 14:01:32 +06:00
versioning.py Revert "Fix NamespaceVersioning ignoring DEFAULT_VERSION on non-None namespac…" () 2024-03-22 09:39:30 +00:00
views.py Add official support for Django 5.1 () 2024-09-07 17:21:18 +06:00
viewsets.py Add official support for Django 5.1 () 2024-09-07 17:21:18 +06:00