#502 Czech and Slovak l10n added#503
Open
robco wants to merge 2 commits into
Open
Conversation
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.
#502 implemented
Greptile Summary
This PR adds Czech (
cs) and Slovak (sk) localization files to the Flutter app, each containing a complete set of 779 translation keys matching the English template. Thel10n.yamlfile is updated to include both new locales inpreferred-supported-locales.lib/l10n/app_cs.arbandapp_sk.arb: New locale files covering all existing string keys, including correct three-form plural rules (one,few,other) required by both Czech and Slovak — e.g.,deleteMessagesMessage,wordCount,charCount,quickActionsSelectedCount,channelMembers, and count-based subtitle strings.l10n.yaml: Two new entries (cs,sk) appended topreferred-supported-locales, consistent with the existing pattern for other locales.Confidence Score: 5/5
Safe to merge — the changes are purely additive locale files with no modifications to existing code paths.
Both ARB files are complete (779 keys each, matching English), correctly declare @@Locale, and implement the three-form plural categories (one/few/other) required by Czech and Slovak throughout all pluralized strings. The l10n.yaml update is minimal and correct. No logic changes, no regressions.
No files require special attention.
Important Files Changed
Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A["l10n.yaml\npreferred-supported-locales"] -->|adds cs, sk| B["Flutter l10n codegen"] B --> C["app_localizations.dart"] C --> D["AppLocalizations.of(context)"] D --> E["app_cs.arb\n779 Czech strings"] D --> F["app_sk.arb\n779 Slovak strings"] E --> G["Plural: one / few / other\ne.g. quickActionsSelectedCount\nchannelMembers, wordCount…"] F --> GReviews (2): Last reviewed commit: "Plurals improved for czech and slovak." | Re-trigger Greptile