mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Double escape %N (%%N) for pht in Releeph project editor
Summary: Oops, `pht()` interpolates percent escape sequences, but this is a literal "%N". Test Plan: Edit a Releeph project; notice no errors. Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5897
This commit is contained in:
parent
83bb113be7
commit
00cc6b1ba5
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ final class ReleephProjectEditController extends ReleephController {
|
|||
->setValue($release_counter)
|
||||
->setName('releaseCounter')
|
||||
->setCaption(
|
||||
pht("Used by the command line branch cutter's %N field")))
|
||||
pht("Used by the command line branch cutter's %%N field")))
|
||||
->appendChild(
|
||||
id(new AphrontFormTextAreaControl())
|
||||
->setLabel(pht('Pick Instructions'))
|
||||
|
|
Loading…
Reference in a new issue