Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ These changes are available on the `master` branch, but have not yet been releas
([#2739](https://github.com/Pycord-Development/pycord/pull/2739))
- Fixed missing `None` type hints in `Select.__init__`.
([#2746])(https://github.com/Pycord-Development/pycord/pull/2746)
- Fixed `valid_locates` mismatch with Discord API locales by adding `id` (Indonesian)
and `es-419` (Spanish, LATAM)
([#2767])(https://github.com/Pycord-Development/pycord/pull/2767)

### Changed

Expand Down
2 changes: 2 additions & 0 deletions discord/commands/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -2042,11 +2042,13 @@ def command(**kwargs):

docs = "https://discord.com/developers/docs"
valid_locales = [
"id",
"da",
"de",
"en-GB",
"en-US",
"es-ES",
"es-419",
"fr",
"hr",
"it",
Expand Down