diff --git a/src/api/gramjs/apiBuilders/chats.ts b/src/api/gramjs/apiBuilders/chats.ts index cba2bbe0e..40a77fcda 100644 --- a/src/api/gramjs/apiBuilders/chats.ts +++ b/src/api/gramjs/apiBuilders/chats.ts @@ -326,6 +326,8 @@ export function buildChatTypingStatus( action = 'lng_send_action_record_round'; } else if (update.action instanceof GramJs.SendMessageUploadRoundAction) { action = 'lng_send_action_upload_round'; + } else if (update.action instanceof GramJs.SendMessageChooseStickerAction) { + action = 'lng_send_action_choose_sticker'; } else if (update.action instanceof GramJs.SpeakingInGroupCallAction) { return undefined; } diff --git a/src/components/middle/composer/StickerPicker.tsx b/src/components/middle/composer/StickerPicker.tsx index f92ff100f..3c0f1b68c 100644 --- a/src/components/middle/composer/StickerPicker.tsx +++ b/src/components/middle/composer/StickerPicker.tsx @@ -240,9 +240,9 @@ const StickerPicker: FC = ({ return (
{!canSendStickers ? ( -
Sending stickers is not allowed in this chat.
+
{lang('ErrorSendRestrictedStickersAll')}
) : noPopulatedSets ? ( -
You have no saved Stickers.
+
{lang('NoStickers')}
) : ( )}