Skip to content

Commit c988d36

Browse files
committed
Use correct verbiage ('remove' vs. 'block') in mod's emoji removal panel.
1 parent 51615b5 commit c988d36

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

_locales/en/messages.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,7 @@
509509
"hideBanner": "Hide",
510510
"someOfYourDeviceUseOutdatedVersion": "Some of your devices are using outdated versions. Syncing may be unreliable until they are updated.",
511511
"openMessageRequestInboxDescription": "View your Message Request inbox",
512+
"removeAll": "Clear all",
512513
"clearAllReactions": "Are you sure you want to clear all $emoji$ ?",
513514
"expandedReactionsText": "Show Fewer",
514515
"reactionNotification": "Reacts to a message with $emoji$",

ts/components/dialog/ReactListModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ export const ReactListModal = (props: Props): ReactElement => {
360360
</p>
361361
{isPublic && weAreModerator && (
362362
<SessionButton
363-
text={window.i18n('clearAll')}
363+
text={window.i18n('removeAll')}
364364
buttonColor={SessionButtonColor.Danger}
365365
buttonType={SessionButtonType.Simple}
366366
onClick={handleClearReactions}

ts/types/LocalizerKeys.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,4 +521,5 @@ export type LocalizerKeys =
521521
| 'messageFormattingDescription'
522522
| 'messageFormattingTitle'
523523
| 'fetchMessagesSinceEpochDescription'
524-
| 'fetchMessagesSinceEpochTitle';
524+
| 'fetchMessagesSinceEpochTitle'
525+
| 'removeAll';

0 commit comments

Comments
 (0)