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]
|
## [0.9.28 - Unreleased]
|
||||||
### Added
|
### Added
|
||||||
|
- Allow numbers in chat topics
|
||||||
### Fixed
|
### Fixed
|
||||||
Fix app freeze on recover with wrong password
|
Fix app freeze on recover with wrong password
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -16,4 +16,4 @@
|
||||||
|
|
||||||
(spec/def ::topic (spec/and :global/not-empty-string
|
(spec/def ::topic (spec/and :global/not-empty-string
|
||||||
::legal-name
|
::legal-name
|
||||||
(partial re-matches #"[a-z\-]+")))
|
(partial re-matches #"[a-z0-9\-]+")))
|
||||||
|
|
|
@ -307,7 +307,7 @@
|
||||||
"chat": "Chat",
|
"chat": "Chat",
|
||||||
"start-conversation": "Start conversation",
|
"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.",
|
"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",
|
"specify-name": "Specify a name",
|
||||||
"add-new-network": "Add new network",
|
"add-new-network": "Add new network",
|
||||||
"save": "Save",
|
"save": "Save",
|
||||||
|
|
Loading…
Reference in New Issue