aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/forms
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-12-10 10:25:35 +0100
committerChocobozzz <me@florianbigard.com>2018-12-10 10:26:00 +0100
commit4523bf113287b33212844b56dccc75e82e24772e (patch)
treea769f1d23e55a2a1462cc9d757826b250dd24fd0 /client/src/app/shared/forms
parentf50ab1c2890509b4ccd57c826a060af9e97f6260 (diff)
downloadPeerTube-4523bf113287b33212844b56dccc75e82e24772e.tar.gz
PeerTube-4523bf113287b33212844b56dccc75e82e24772e.tar.zst
PeerTube-4523bf113287b33212844b56dccc75e82e24772e.zip
dots are allowed in actor names
Diffstat (limited to 'client/src/app/shared/forms')
-rw-r--r--client/src/app/shared/forms/form-validators/user-validators.service.ts2
-rw-r--r--client/src/app/shared/forms/form-validators/video-channel-validators.service.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/shared/forms/form-validators/user-validators.service.ts b/client/src/app/shared/forms/form-validators/user-validators.service.ts
index b1c61d6df..6589b2580 100644
--- a/client/src/app/shared/forms/form-validators/user-validators.service.ts
+++ b/client/src/app/shared/forms/form-validators/user-validators.service.ts
@@ -31,7 +31,7 @@ export class UserValidatorsService {
31 'required': this.i18n('Username is required.'), 31 'required': this.i18n('Username is required.'),
32 'minlength': this.i18n('Username must be at least 1 character long.'), 32 'minlength': this.i18n('Username must be at least 1 character long.'),
33 'maxlength': this.i18n('Username cannot be more than 50 characters long.'), 33 'maxlength': this.i18n('Username cannot be more than 50 characters long.'),
34 'pattern': this.i18n('Username should be lowercase alphanumeric; underscores are allowed.') 34 'pattern': this.i18n('Username should be lowercase alphanumeric; dots and underscores are allowed.')
35 } 35 }
36 } 36 }
37 37
diff --git a/client/src/app/shared/forms/form-validators/video-channel-validators.service.ts b/client/src/app/shared/forms/form-validators/video-channel-validators.service.ts
index e657f36cf..1c519c10a 100644
--- a/client/src/app/shared/forms/form-validators/video-channel-validators.service.ts
+++ b/client/src/app/shared/forms/form-validators/video-channel-validators.service.ts
@@ -22,7 +22,7 @@ export class VideoChannelValidatorsService {
22 'required': this.i18n('Name is required.'), 22 'required': this.i18n('Name is required.'),
23 'minlength': this.i18n('Name must be at least 1 character long.'), 23 'minlength': this.i18n('Name must be at least 1 character long.'),
24 'maxlength': this.i18n('Name cannot be more than 50 characters long.'), 24 'maxlength': this.i18n('Name cannot be more than 50 characters long.'),
25 'pattern': this.i18n('Name should be lowercase alphanumeric; underscores are allowed.') 25 'pattern': this.i18n('Name should be lowercase alphanumeric; dots and underscores are allowed.')
26 } 26 }
27 } 27 }
28 28