mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01:00
Fix a variant translation issue
Summary: Fixes T11799. This string is varying on the first parameter, but should vary on the second parameter. Test Plan: Ran `bin/garbage set-policy ...`, saw proper translation. Reviewers: chad Reviewed By: chad Maniphest Tasks: T11799 Differential Revision: https://secure.phabricator.com/D16769
This commit is contained in:
parent
1e488e9277
commit
1993005651
1 changed files with 4 additions and 2 deletions
|
@ -1402,8 +1402,10 @@ final class PhabricatorUSEnglishTranslation
|
|||
),
|
||||
|
||||
'Setting retention policy for "%s" to %s day(s).' => array(
|
||||
'Setting retention policy for "%s" to one day.',
|
||||
'Setting retention policy for "%s" to %s days.',
|
||||
array(
|
||||
'Setting retention policy for "%s" to one day.',
|
||||
'Setting retention policy for "%s" to %s days.',
|
||||
),
|
||||
),
|
||||
|
||||
'Waiting %s second(s) for lease to activate.' => array(
|
||||
|
|
Loading…
Reference in a new issue