allow numbers in chat topics
Signed-off-by: yenda <eric@status.im>
This commit is contained in:
parent
d5fcc0b003
commit
5d912caf4a
|
@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||
|
||||
## [0.9.28 - Unreleased]
|
||||
### Added
|
||||
- Allow numbers in chat topics
|
||||
### Fixed
|
||||
Fix app freeze on recover with wrong password
|
||||
### Changed
|
||||
|
|
|
@ -16,4 +16,4 @@
|
|||
|
||||
(spec/def ::topic (spec/and :global/not-empty-string
|
||||
::legal-name
|
||||
(partial re-matches #"[a-z\-]+")))
|
||||
(partial re-matches #"[a-z0-9\-]+")))
|
||||
|
|
|
@ -307,7 +307,7 @@
|
|||
"chat": "Chat",
|
||||
"start-conversation": "Start conversation",
|
||||
"you-are-all-set-description": "Now if you lose your phone you can restore your account and wallet using the recovery phrase.",
|
||||
"topic-format": "Topic names use only lowercase letters (a to z) & dashes (-)",
|
||||
"topic-format": "Topic name can use only lowercase letters, numbers and dash (-)",
|
||||
"specify-name": "Specify a name",
|
||||
"add-new-network": "Add new network",
|
||||
"save": "Save",
|
||||
|
|
Loading…
Reference in New Issue