diff --git a/src/status_im/contexts/profile/edit/introduce_yourself/view.cljs b/src/status_im/contexts/profile/edit/introduce_yourself/view.cljs index 365ffc211d..573d8cdf45 100644 --- a/src/status_im/contexts/profile/edit/introduce_yourself/view.cljs +++ b/src/status_im/contexts/profile/edit/introduce_yourself/view.cljs @@ -1,6 +1,7 @@ (ns status-im.contexts.profile.edit.introduce-yourself.view (:require [quo.core :as quo] [react-native.core :as rn] + [utils.i18n :as i18n] [utils.re-frame :as rf])) (defn sheet @@ -15,18 +16,18 @@ {:style {:padding-bottom 4} :size :heading-2 :weight :semi-bold} - "Introduce yourself"] + (i18n/label :t/just-introduce-yourself)] [quo/text {:style {:padding-top 4 :padding-bottom 12} :size :paragraph-1 :weight :regular} - "Add an optional display name and profile picture so others can easily recognize you"]] + (i18n/label :t/add-display-name-and-picture)]] [quo/bottom-actions {:actions :two-actions :buttons-style {:flex-shrink 1 :flex-basis 0} - :button-one-label "Edit Profile" + :button-one-label (i18n/label :t/edit-profile) :button-one-props {:type :primary :on-press on-accept} - :button-two-label "Skip" + :button-two-label (i18n/label :t/skip) :button-two-props {:type :grey :on-press on-reject}}]])) diff --git a/translations/en.json b/translations/en.json index 01e1646b9d..d20796c584 100644 --- a/translations/en.json +++ b/translations/en.json @@ -59,6 +59,7 @@ "add-bootnode": "Add bootnode", "add-contact": "Add contact", "add-custom-token": "Add custom token", + "add-display-name-and-picture": "Add an optional display name and profile picture so others can easily recognize you", "add-eth": "Add ETH", "add-favourite": "Add favourite", "add-mailserver": "Add Status node", @@ -1270,6 +1271,7 @@ "intro-wizard-title5": "Confirm the passcode", "intro-wizard-title6": "Enable notifications", "introduce-yourself": "Introduce yourself with a brief message", + "just-introduce-yourself": "Introduce yourself", "invalid-address": "It’s not Ethereum address or ENS name", "invalid-address-qr-code": "Scanned QR code doesn't contain a valid address", "invalid-characters-bio": "Invalid characters. Standard keyboard characters and emojis only.",