@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.

Rm emoji locale

Summary:
Has never had any translations other than a translation of its own locale name. It's not clear if there was once a translation in some third-party library that I can't find, or if it was one of old upstream's tired jokes.

In any event, nobody plans to do anything with this, so, as cool of an idea this is, it has no point to it.

Test Plan: Don't see emoji in limited translations (or, this needs a companion arcanist patch, so don't it once both are merged)

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26711

Pppery ec0ef684 b6f4a9f0

-17
-2
src/__phutil_library_map__.php
··· 3360 3360 'PhabricatorEmbedFileRemarkupRule' => 'applications/files/markup/PhabricatorEmbedFileRemarkupRule.php', 3361 3361 'PhabricatorEmojiDatasource' => 'applications/macro/typeahead/PhabricatorEmojiDatasource.php', 3362 3362 'PhabricatorEmojiRemarkupRule' => 'applications/macro/markup/PhabricatorEmojiRemarkupRule.php', 3363 - 'PhabricatorEmojiTranslation' => 'infrastructure/internationalization/translation/PhabricatorEmojiTranslation.php', 3364 3363 'PhabricatorEmptyQueryException' => 'infrastructure/query/exception/PhabricatorEmptyQueryException.php', 3365 3364 'PhabricatorEnterHisecUserLogType' => 'applications/people/userlog/PhabricatorEnterHisecUserLogType.php', 3366 3365 'PhabricatorEnumConfigType' => 'applications/config/type/PhabricatorEnumConfigType.php', ··· 9831 9830 'PhabricatorEmbedFileRemarkupRule' => 'PhabricatorObjectRemarkupRule', 9832 9831 'PhabricatorEmojiDatasource' => 'PhabricatorTypeaheadDatasource', 9833 9832 'PhabricatorEmojiRemarkupRule' => 'PhutilRemarkupRule', 9834 - 'PhabricatorEmojiTranslation' => 'PhutilTranslation', 9835 9833 'PhabricatorEmptyQueryException' => 'Exception', 9836 9834 'PhabricatorEnterHisecUserLogType' => 'PhabricatorUserLogType', 9837 9835 'PhabricatorEnumConfigType' => 'PhabricatorTextConfigType',
-15
src/infrastructure/internationalization/translation/PhabricatorEmojiTranslation.php
··· 1 - <?php 2 - 3 - final class PhabricatorEmojiTranslation 4 - extends PhutilTranslation { 5 - 6 - public function getLocaleCode() { 7 - return 'en_X*'; 8 - } 9 - 10 - protected function getTranslations() { 11 - return array( 12 - 'Emoji (Internet)' => "\xF0\x9F\x92\xAC (\xF0\x9F\x8C\x8D)", 13 - ); 14 - } 15 - }