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
···6868 ->setDescription($description)
6969 ->save();
7070 } catch (PhabricatorUserStatusInvalidEpochException $e) {
7171- $errors[] = 'Start must be before end.';
7171+ $errors[] = pht('Start must be before end.');
7272 } catch (PhabricatorUserStatusOverlapException $e) {
7373- $errors[] = 'There is already a status within the specified '.
7474- 'timeframe. Edit or delete this existing status.';
7373+ $errors[] = pht('There is already a status within the specified '.
7474+ 'timeframe. Edit or delete this existing status.');
7575 }
76767777 if (!$errors) {
···9494 $error_view = null;
9595 if ($errors) {
9696 $error_view = id(new AphrontErrorView())
9797- ->setTitle('Status can not be set!')
9797+ ->setTitle(pht('Status can not be set!'))
9898 ->setErrors($errors);
9999 }
100100