Added disclaimer for extensions
Signed-off-by: Julien Eluard <julien.eluard@gmail.com>
This commit is contained in:
parent
5ba5395d57
commit
c857eb5357
2
deps.edn
2
deps.edn
|
@ -11,7 +11,7 @@
|
|||
com.taoensso/timbre {:mvn/version "4.10.0"}
|
||||
hickory {:mvn/version "0.7.1"}
|
||||
com.cognitect/transit-cljs {:mvn/version "0.8.248"}
|
||||
status-im/pluto {:mvn/version "iteration-3-SNAPSHOT"}
|
||||
status-im/pluto {:mvn/version "iteration-3"}
|
||||
mvxcvi/alphabase {:mvn/version "1.0.0"}
|
||||
rasom/cljs-react-navigation {:mvn/version "0.1.4"}}
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
[com.taoensso/timbre "4.10.0"]
|
||||
[hickory "0.7.1"]
|
||||
[com.cognitect/transit-cljs "0.8.248"]
|
||||
[status-im/pluto "iteration-3-SNAPSHOT"]
|
||||
[status-im/pluto "iteration-3"]
|
||||
[mvxcvi/alphabase "1.0.0"]
|
||||
[rasom/cljs-react-navigation "0.1.4"]]
|
||||
:plugins [[lein-cljsbuild "1.1.7"]
|
||||
|
|
|
@ -143,7 +143,7 @@
|
|||
'input {:value input :properties {:on-change :event :placeholder :string}}
|
||||
'button {:value button :properties {:on-click :event}}
|
||||
'link {:value link :properties {:uri :string}}
|
||||
'list {:value list :properties {:data :vector :item-view :view}}
|
||||
;'list {:value list :properties {:data :vector :item-view :view}}
|
||||
'checkbox {:value checkbox :properties {:on-change :event :checked :boolean}}
|
||||
'nft-token-viewer {:value transactions/nft-token :properties {:token :string}}
|
||||
'transaction-status {:value transactions/transaction-status :properties {:outgoing :string :tx-hash :string}}
|
||||
|
|
|
@ -38,6 +38,9 @@
|
|||
[toolbar/simple-toolbar (i18n/label :t/extension)]
|
||||
[react/scroll-view {:keyboard-should-persist-taps :handled}
|
||||
[react/view styles/wrapper
|
||||
[react/view {:style {:border-radius 8 :margin 10 :padding 8 :background-color colors/red}}
|
||||
[react/text {:style {:color colors/white}}
|
||||
(i18n/label :t/extensions-disclaimer)]]
|
||||
[cartouche {:header (i18n/label :t/identifier)}
|
||||
[react/text {:style styles/text}
|
||||
(str (get-in data ['meta :name]))]]
|
||||
|
|
|
@ -387,6 +387,7 @@
|
|||
"wallet-transaction-total-fee": "Total Fee",
|
||||
"extension": "Extension",
|
||||
"invalid-extension": "Invalid extension URI",
|
||||
"extensions-disclaimer": "This extension is from a third party and not built by Status. Please be sure you trust the developer before installing",
|
||||
"datetime-day": {
|
||||
"one": "day",
|
||||
"other": "days"
|
||||
|
|
Loading…
Reference in New Issue