mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 05:42:40 +01:00
Projects - fix translation strings in watcher edge class
Summary: Fixes T7319. These need a "%s" for the count where they had a "%d" Test Plan: plan in D11812 is no longer a lie! (watcher added / removed strings render correctly) Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T7319 Differential Revision: https://secure.phabricator.com/D11813
This commit is contained in:
parent
4e348bb04d
commit
a77127ab63
1 changed files with 3 additions and 3 deletions
|
@ -412,17 +412,17 @@ final class PhabricatorUSEnglishTranslation
|
|||
),
|
||||
),
|
||||
|
||||
'%s edited watcher(s), added %d: %s; removed %d: %s.' =>
|
||||
'%s edited watcher(s), added %s: %s; removed %d: %s.' =>
|
||||
'%s edited watchers, added: %3$s; removed: %5$s.',
|
||||
|
||||
'%s added %d watcher(s): %s.' => array(
|
||||
'%s added %s watcher(s): %s.' => array(
|
||||
array(
|
||||
'%s added a watcher: %3$s.',
|
||||
'%s added watchers: %3$s.',
|
||||
),
|
||||
),
|
||||
|
||||
'%s removed %d watcher(s): %s.' => array(
|
||||
'%s removed %s watcher(s): %s.' => array(
|
||||
array(
|
||||
'%s removed a watcher: %3$s.',
|
||||
'%s removed watchers: %3$s.',
|
||||
|
|
Loading…
Reference in a new issue