Skip to content

Commit

Permalink
always use english for fallback text
Browse files Browse the repository at this point in the history
  • Loading branch information
msuess committed Jan 17, 2022
1 parent cfab672 commit cb28ac7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/status_im/chat/models/input.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@
{:chat-id chat-id
:content-type constants/content-type-image
:image-path (utils/safe-replace uri #"file://" "")
:text (i18n/label :t/update-to-see-image)})
:text (i18n/label :t/update-to-see-image {"locale" "en"})})
images)))

(fx/defn clean-input [{:keys [db] :as cofx} current-chat-id]
Expand Down Expand Up @@ -227,7 +227,7 @@
:content-type constants/content-type-audio
:audio-path audio-path
:audio-duration-ms duration
:text (i18n/label :t/update-to-listen-audio)})))
:text (i18n/label :t/update-to-listen-audio {"locale" "en"})})))

(fx/defn send-sticker-message
[cofx {:keys [hash pack]} current-chat-id]
Expand All @@ -236,7 +236,7 @@
:content-type constants/content-type-sticker
:sticker {:hash hash
:pack pack}
:text (i18n/label :t/update-to-see-sticker)})))
:text (i18n/label :t/update-to-see-sticker {"locale" "en"})})))

(fx/defn send-edited-message [{:keys [db] :as cofx} text {:keys [message-id]}]
(fx/merge
Expand Down

0 comments on commit cb28ac7

Please sign in to comment.