Select the types of activity you want to include in your feed.
@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
···2424 return id(new AphrontRedirectResponse())->setURI('/owners/');
2525 }
26262727+ $text = pht('Are you sure you want to delete the "%s" package? This '.
2828+ 'operation can not be undone.', $package->getName());
2729 $dialog = id(new AphrontDialogView())
2830 ->setUser($user)
2931 ->setTitle('Really delete this package?')
3232+ ->setHeaderColor(PhabricatorActionHeaderView::HEADER_RED)
3033 ->appendChild(hsprintf(
3131- '<p>Are you sure you want to delete the "%s" package? This operation '.
3232- 'can not be undone.</p>',
3333- $package->getName()))
3434- ->addSubmitButton('Delete')
3434+ '<p>%s</p>',
3535+ $text))
3636+ ->addSubmitButton(pht('Delete'))
3537 ->addCancelButton('/owners/package/'.$package->getID().'/')
3638 ->setSubmitURI($request->getRequestURI());
3739