fix(l10n): translate the Flow label #485 added - #493
Merged
Conversation
#485 gave buildiq a settings section with Flows, which put `Flow` in the manifest. The manifest is data the renderer walks rather than source the l10n extractor scans, so it never reached the catalogue and rendered English for a Dutch user. Maps to itself: Dutch Nextcloud keeps the product term, and decidiq, dossiq, openregister, keepiq, portaliq, pipelinq and filinq all already carry `Flow -> "Flow"`. Matching the fleet beats inventing a Dutch word for a feature name nobody uses one for. This is the third time today the same gap has produced a regression within hours of a sweep: keepiq via #448, and now this. `check:l10n-js` cannot catch it and did not — nl.json and nl.js were in sync at 1,045 keys each, both simply missing the string. That check guards source-versus-artifact drift; this is manifest-versus-catalogue coverage, and only humaniq runs a check that asserts it. Verified: 0 manifest strings left without Dutch, keys DROPPED = 0, check:l10n-js PASS.
Contributor
Quality Report — ConductionNL/buildiq @
|
| Check | PHP | Vue | Security | License | Tests |
|---|---|---|---|---|---|
| lint | ✅ | ||||
| phpcs | ✅ | ||||
| phpmd | ✅ | ||||
| psalm | ✅ | ||||
| phpstan | ✅ | ||||
| phpmetrics | ✅ | ||||
| eslint | ✅ | ||||
| stylelint | ✅ | ||||
| build | ✅ | ||||
| check-manifest | ✅ | ||||
| test-l10n | ✅ | ||||
| check-gitignore | ✅ | ||||
| check-nc-floor | ✅ | ||||
| format | ✅ | ||||
| check-l10n-js | ✅ | ||||
| check-schema-l10n | ✅ | ||||
| composer | ✅ | ✅ 106/106 | |||
| npm | ✅ | ✅ 642/642 | |||
| app:check-code | ⏭️ | ||||
| info.xml | ✅ | ||||
| REUSE | ❌ | ||||
| PHPUnit | ✅ | ||||
| Newman | ✅ | ||||
| Playwright | ✅ | ||||
| Hydra gates | ✅ |
Quality workflow — 2026-08-27 21:54 UTC
Download the full PDF report from the workflow artifacts.
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.
#485 gave buildiq a settings section with Flows, which put
Flowin the manifest. The manifest is data the renderer walks, not source the l10n extractor scans, so it never reached the catalogue and rendered English for a Dutch user.Maps to itself: Dutch Nextcloud keeps the product term, and decidiq, dossiq, openregister, keepiq, portaliq, pipelinq and filinq all already carry
Flow → "Flow". Matching the fleet beats inventing a Dutch word for a feature name nobody uses one for.Third regression of this shape today
keepiq regressed via #448, and now this — both within hours of a fleet-wide sweep that left every app at zero.
check:l10n-jscannot catch it, and did not.nl.jsonandnl.jswere in sync at 1,045 keys each, both simply missing the string. That check guards source-versus-artifact drift; this is manifest-versus-catalogue coverage.Only humaniq runs a check that asserts every manifest string has a key (
validate-l10n-parity.js). Porting it to the other 16 is the durable fix; this PR is the symptom.Verification
check:l10n-js