Fixes T7319. These need a "%s" for the count where they had a "%d"
Details
Details
- Reviewers
epriestley - Maniphest Tasks
- T7319: '1 watcher(s)' as well as 'a member' in project edit logs
- Commits
- Restricted Diffusion Commit
rPa77127ab63bf: Projects - fix translation strings in watcher edge class
plan in D11812 is no longer a lie! (watcher added / removed strings render correctly)
Diff Detail
Diff Detail
- Repository
- rP Phabricator
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
The %s is correct, so maybe the other ones should flip?
This is kind of unintuitive, but basically the rule is "%s" to render as "2,345,678" (i.e., with commas and periods) and "%d" to render as "2345678". So "You see %s things(s)", but "Task ID %d".