diff --git a/src/status_im/ui2/screens/chat/components/message_home_item/view.cljs b/src/status_im/ui2/screens/chat/components/message_home_item/view.cljs index cc8a9866b3..19fb5244cc 100644 --- a/src/status_im/ui2/screens/chat/components/message_home_item/view.cljs +++ b/src/status_im/ui2/screens/chat/components/message_home_item/view.cljs @@ -80,8 +80,9 @@ (defn display-name-view [display-name contact timestamp] [rn/view {:style {:flex-direction :row}} - [text/text {:weight :semi-bold - :size :paragraph-1} + [text/text {:weight :semi-bold + :accessibility-label :chat-name-text + :size :paragraph-1} display-name] [verified-or-contact-icon contact] [text/text {:style (style/timestamp)} diff --git a/src/status_im/ui2/screens/chat/components/reply.cljs b/src/status_im/ui2/screens/chat/components/reply.cljs index 468c6bebb0..0762ecb2b5 100644 --- a/src/status_im/ui2/screens/chat/components/reply.cljs +++ b/src/status_im/ui2/screens/chat/components/reply.cljs @@ -63,17 +63,20 @@ :number-of-lines 1 :style {:margin-left 4}} (format-reply-author from contact-name current-public-key)] - [quo2.text/text {:number-of-lines 1 - :size :label - :weight :regular - :style (merge {:ellipsize-mode :tail - :text-transform :none - :margin-left 4 - :margin-top 2} - (when (or (= constants/content-type-image content-type) - (= constants/content-type-sticker content-type) - (= constants/content-type-audio content-type)) - {:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}))} + [quo2.text/text + {:number-of-lines 1 + :size :label + :weight :regular + :accessibility-label :quoted-message + :style (merge + {:ellipsize-mode :tail + :text-transform :none + :margin-left 4 + :margin-top 2} + (when (or (= constants/content-type-image content-type) + (= constants/content-type-sticker content-type) + (= constants/content-type-audio content-type)) + {:color (colors/theme-colors colors/neutral-50 colors/neutral-40)}))} (case (or content-type contentType) constants/content-type-image "Image" constants/content-type-sticker "Sticker"