Skip to content

Commit

Permalink
remove defonce and add transaltions
Browse files Browse the repository at this point in the history
  • Loading branch information
briansztamfater committed May 6, 2024
1 parent 614745c commit 8cb0e38
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
11 changes: 6 additions & 5 deletions src/status_im/contexts/wallet/wallet_connect/utils.cljs
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
(ns status-im.contexts.wallet.wallet-connect.utils
(:require ["@walletconnect/core" :refer [Core]]
["@walletconnect/web3wallet" :refer [Web3Wallet]]
[status-im.config :as config]))
[status-im.config :as config]
[utils.i18n :as i18n]))

(defonce ^:private wallet-connect-metadata
(defn- wallet-connect-metadata
[]
#js
{:name "Status"
:description
"Status is a secure messaging app, crypto wallet, and Web3 browser built with state of the art technology."
{:name (i18n/label :t/status)
:description (i18n/label :t/status-is-a-secure-messaging-app)
:url "https://status.app"
:icons
["https://res.cloudinary.com/dhgck7ebz/image/upload/f_auto,c_limit,w_1080,q_auto/Brand/Logo%20Section/Mark/Mark_01"]})
Expand Down
4 changes: 3 additions & 1 deletion translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -2594,5 +2594,7 @@
"this-account-has-no-activity": "This account has no activity",
"this-address-has-activity": "This address has activity",
"scanning-for-activity": "Scanning for activity...",
"send-community-link": "Send community link"
"send-community-link": "Send community link",
"at-least-one-network-must-be-activated": "At least 1 network must be activated",
"status-is-a-secure-messaging-app": "Status is a secure messaging app, crypto wallet and web3 browser built with the state of the art technology"
}

0 comments on commit 8cb0e38

Please sign in to comment.