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
···2323 }
24242525 public function getFlavorText() {
2626- return pht('Log In with Phabricator');
2626+ return pht(
2727+ 'Log In with %s',
2828+ PlatformSymbols::getPlatformServerName());
2729 }
28302931 public function getApplicationGroup() {
···185185 ->addCheckbox(
186186 'welcome',
187187 1,
188188- pht('Send "Welcome to Phabricator" email with login instructions.'),
188188+ pht(
189189+ 'Send "Welcome to %s" email with login instructions.',
190190+ PlatformSymbols::getPlatformServerName()),
189191 $welcome_checked));
190192 }
191193···202204 pht(
203205 '**Why do bot accounts need an email address?**'.
204206 "\n\n".
205205- 'Although bots do not normally receive email from Phabricator, '.
206206- 'they can interact with other systems which require an email '.
207207- 'address. Examples include:'.
207207+ 'Although bots do not normally receive email, they can interact '.
208208+ 'with other systems which require an email address. Examples '.
209209+ 'include:'.
208210 "\n\n".
209211 " - If the account takes actions which //send// email, we need ".
210212 " an address to use in the //From// header.\n".
211213 " - If the account creates commits, Git and Mercurial require ".
212214 " an email address for authorship.\n".
213213- " - If you send email //to// Phabricator on behalf of the ".
215215+ " - If you send email //to// this server on behalf of the ".
214216 " account, the address can identify the sender.\n".
215217 " - Some internal authentication functions depend on accounts ".
216218 " having an email address.\n".
···8080 $use_passwords = PhabricatorPasswordAuthProvider::getPasswordProvider();
8181 if ($use_passwords) {
8282 $message[] = pht(
8383- 'To log in to Phabricator, follow this link and set a password:');
8383+ 'To log in, follow this link and set a password:');
8484 $message[] = pht(' %s', $uri);
8585 $message[] = pht(
8686- 'After you have set a password, you can log in to Phabricator in '.
8686+ 'After you have set a password, you can log in again in '.
8787 'the future by going here:');
8888 $message[] = pht(' %s', $base_uri);
8989 } else {
···9191 'To log in to your account for the first time, follow this link:');
9292 $message[] = pht(' %s', $uri);
9393 $message[] = pht(
9494- 'After you set up your account, you can log in to Phabricator in '.
9494+ 'After you set up your account, you can log in again in '.
9595 'the future by going here:');
9696 $message[] = pht(' %s', $base_uri);
9797 }
···104104 $message = implode("\n\n", $message);
105105106106 return id(new PhabricatorMetaMTAMail())
107107- ->setSubject(pht('[Phabricator] Welcome to Phabricator'))
107107+ ->setSubject(
108108+ pht(
109109+ '[%s] Welcome to %s',
110110+ PlatformSymbols::getPlatformServerName(),
111111+ PlatformSymbols::getPlatformServerName()))
108112 ->setBody($message);
109113 }
110114