@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add some missing non-context translations

Summary: We're missing some strings here.

Test Plan: {F71857}

Reviewers: btrahan

Reviewed By: btrahan

CC: aran

Differential Revision: https://secure.phabricator.com/D7340

+18 -1
+1 -1
src/applications/maniphest/storage/ManiphestTransaction.php
··· 528 528 $this->renderHandleList($added)); 529 529 } else if ($removed && !$added) { 530 530 return pht( 531 - '%s removed %d project(s) to %s: %s', 531 + '%s removed %d project(s) from %s: %s', 532 532 $this->renderHandleLink($author_phid), 533 533 count($removed), 534 534 $this->renderHandleLink($object_phid),
+17
src/infrastructure/internationalization/PhabricatorBaseEnglishTranslation.php
··· 300 300 ), 301 301 ), 302 302 303 + '%s changed project(s) of %s, added %d: %s; removed %d: %s' => 304 + '%s changed projects of %s, added: %4$s; removed: %6$s', 305 + 306 + '%s added %d project(s) to %s: %s' => array( 307 + array( 308 + '%s added a project to %3$s: %4$s', 309 + '%s added projects to %3$s: %4$s', 310 + ), 311 + ), 312 + 313 + '%s removed %d project(s) from %s: %s' => array( 314 + array( 315 + '%s removed a project from %3$s: %4$s', 316 + '%s removed projects from %3$s: %4$s', 317 + ), 318 + ), 319 + 303 320 '%s edited voting user(s), added %d: %s; removed %d: %s.' => 304 321 '%s edited voting users, added: %3$s; removed: %5$s', 305 322