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
···77 PhabricatorNotificationClient::tryAnyConnection();
88 } catch (Exception $ex) {
99 $message = pht(
1010- "Phabricator is configured to use a notification server, but is ".
1010+ "This server is configured to use a notification server, but is ".
1111 "unable to connect to it. You should resolve this issue or disable ".
1212 "the notification server. It may be helpful to double check your ".
1313 "configuration or restart the server using the command below.\n\n%s",
···2626 ->setName(pht('Unable to Connect to Notification Server'))
2727 ->setSummary(
2828 pht(
2929- 'Phabricator is configured to use a notification server, '.
2929+ 'This server is configured to use a notification server, '.
3030 'but is not able to connect to it.'))
3131 ->setMessage($message)
3232 ->addRelatedPhabricatorConfig('notification.servers')
3333 ->addCommand(
3434 pht(
3535 "(To start the server, run this command.)\n%s",
3636- 'phabricator/ $ ./bin/aphlict start'));
3636+ '$ ./bin/aphlict start'));
37373838 return;
3939 }
···209209 ->setTitle(pht('Authenticate: %s', $name))
210210 ->appendParagraph(
211211 pht(
212212- 'This application ("%s") is authorized to use your Phabricator '.
212212+ 'This application ("%s") is authorized to use your %s '.
213213 'credentials. Continue to complete the authentication workflow.',
214214- phutil_tag('strong', array(), $name)))
214214+ phutil_tag('strong', array(), $name),
215215+ PlatformSymbols::getPlatformServerName()))
215216 ->addCancelButton((string)$full_uri, pht('Continue to Application'));
216217217218 return id(new AphrontDialogResponse())->setDialog($dialog);
···248249 ->appendParagraph(
249250 pht(
250251 'Do you want to authorize the external application "%s" to '.
251251- 'access your Phabricator account data, including your primary '.
252252+ 'access your %s account data, including your primary '.
252253 'email address?',
253253- phutil_tag('strong', array(), $name)))
254254+ phutil_tag('strong', array(), $name),
255255+ PlatformSymbols::getPlatformServerName()))
254256 ->appendForm($form)
255257 ->addSubmitButton(pht('Authorize Access'))
256258 ->addCancelButton((string)$cancel_uri, pht('Do Not Authorize'));
···271273 pht(
272274 'This application also requested additional unrecognized '.
273275 'permissions. These permissions may have existed in an older '.
274274- 'version of Phabricator, or may be from a future version of '.
275275- 'Phabricator. They will not be granted.'));
276276+ 'version of the software, or may be from a future version of '.
277277+ 'the software. They will not be granted.'));
276278277279 $unknown_form = id(new AphrontFormView())
278280 ->setViewer($viewer)
···4343 $title = pht('Disable OAuth Application');
4444 $body = pht(
4545 'Really disable the %s OAuth application? Users will no longer be '.
4646- 'able to authenticate against it, nor access Phabricator using '.
4646+ 'able to authenticate against it, nor access this server using '.
4747 'tokens generated by this application.',
4848 phutil_tag('strong', array(), $client->getName()));
4949 $button = pht('Disable Application');
···6868 ->setTitle(pht('Revoke Authorization?'))
6969 ->appendParagraph(
7070 pht(
7171- 'This application will no longer be able to access Phabricator '.
7171+ 'This application will no longer be able to access this server '.
7272 'on your behalf.'))
7373 ->addSubmitButton(pht('Revoke Authorization'))
7474 ->addCancelButton($panel_uri);
···168168 ->setIcon($icon)
169169 ->setTitle(pht('Welcome to %s', $app_name))
170170 ->setDescription(
171171- pht('Group sections of a codebase into packages for re-use in other '.
172172- 'areas of Phabricator, like Herald rules.'))
171171+ pht(
172172+ 'Group sections of a codebase into packages for re-use in other '.
173173+ 'applications, like Herald rules.'))
173174 ->addAction($create_button);
174175175176 return $view;
···124124 ->setIcon($icon)
125125 ->setTitle(pht('Welcome to %s', $app_name))
126126 ->setDescription(
127127- pht('Credential management for re-use in other areas of Phabricator '.
128128- 'or general storage of shared secrets.'))
127127+ pht('Credential management and general storage of shared secrets.'))
129128 ->addAction($create_button);
130129131130 return $view;
···2424 $title = pht('Create New User');
25252626 $standard_caption = pht(
2727- 'Create a standard user account. These users can log in to Phabricator, '.
2727+ 'Create a standard user account. These users can log in, '.
2828 'use the web interface and API, and receive email.');
29293030 $standard_admin = pht(
···9090 $short_title = pht('Disable User');
91919292 $body = pht(
9393- 'Disable %s? They will no longer be able to access Phabricator or '.
9393+ 'Disable %s? They will no longer be able to access this server or '.
9494 'receive email.',
9595 phutil_tag('strong', array(), $user->getUsername()));
9696···100100 $short_title = pht('Enable User');
101101102102 $body = pht(
103103- 'Enable %s? They will be able to access Phabricator and receive '.
103103+ 'Enable %s? They will be able to access this server and receive '.
104104 'email again.',
105105 phutil_tag('strong', array(), $user->getUsername()));
106106
···4444 $short = pht('Remove Administrator');
4545 $body = pht(
4646 'Remove %s as an administrator? They will no longer be able to '.
4747- 'perform administrative functions on this Phabricator install.',
4747+ 'perform administrative functions on this server.',
4848 phutil_tag('strong', array(), $user->getUsername()));
4949 $submit = pht('Remove Administrator');
5050 } else {
···5353 $body = pht(
5454 'Empower %s as an administrator? They will be able to create users, '.
5555 'approve users, make and remove administrators, delete accounts, and '.
5656- 'perform other administrative functions on this Phabricator install.',
5656+ 'perform other administrative functions on this server.',
5757 phutil_tag('strong', array(), $user->getUsername()));
5858 $submit = pht('Make Administrator');
5959 }