Description
The Problem
Currently, the LocalizationProtocol
docs state that .get()
must return dict[str, str] | None
, implying that "if specific language is "supported", then it must support all keys used in slashcmds' names/descriptions/etc." (i'll refer to this as "the rule"). That is true to some degree: if we look at the code here, all APIs are type hinted as if they were expecting the rule to be followed, however, looking at the actual behavior and even error messages, it becomes clear that in fact disnake does handle keys that are translated only to certain languages (speaking strictly it just ignores such situations). It becomes even more confusing due to strict_localization
controlling only key-level fails, not locale-level ones.
Suggested Solution
Change LocalizationProtocol.get()
to return dict[str, str | None] | None
. This would resolve the discrepancy between what's documented and what's implemented, while keeping backwards compatibility. Strict mode should also handle misses on any level (technically backwards-compatible too since so far type hints were abiding by the rule, however in practice i imagine this change can have larger impact).
Checklist
- I have searched the open issues for duplicates.
- I have shown the entire traceback, if possible.
- I have removed my token from display, if visible.
Additional Context
I am working on a LocalizationProtocol
implementation, therefore this is more of an issue to those who implement custom localizers, not users of the default LocalizationStore
.
Related #1104
I am willing to submit a PR for this.