Update Japanese (ja-JP) locale - #148
Merged
Merged
Conversation
- Refresh five translations that had drifted from en-US: the Customize View button was renamed in 8552770, the Mono badge became .NET in 74491da, and reset_settings_desc was rewritten in bdb511f - Drop 15 unreachable keys. `_plural` is i18next v3 syntax that v26 never looks at, and every call site passes `count`, so Japanese always resolves `_other` - Keep `asset_store_count_zero` and `installed_count_zero` even though en-US has neither: i18next does prefer a `_zero` key at count 0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ja-JP had fallen behind en-US: seven keys were still English (the Experimental settings section, the empty-category labels, key_space), five translations described behavior that en-US has since changed, and 15 keys from the old i18next v3 plural format were still being carried.
The removals are the only part worth a close look. Nothing reaches them: _plural is v3 syntax that v26 never consults, every call site passes count so Japanese resolves _other, and src/i18n/types.ts lists none of them.