From: Chocobozzz <me@florianbigard.com>
Date: Mon, 10 Dec 2018 09:25:35 +0000 (+0100)
Subject: dots are allowed in actor names
X-Git-Tag: v1.2.0-rc.1~85
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4523bf113287b33212844b56dccc75e82e24772e;p=oweals%2Fpeertube.git

dots are allowed in actor names
---

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 {
         'required': this.i18n('Username is required.'),
         'minlength': this.i18n('Username must be at least 1 character long.'),
         'maxlength': this.i18n('Username cannot be more than 50 characters long.'),
-        'pattern': this.i18n('Username should be lowercase alphanumeric; underscores are allowed.')
+        'pattern': this.i18n('Username should be lowercase alphanumeric; dots and underscores are allowed.')
       }
     }
 
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 {
         'required': this.i18n('Name is required.'),
         'minlength': this.i18n('Name must be at least 1 character long.'),
         'maxlength': this.i18n('Name cannot be more than 50 characters long.'),
-        'pattern': this.i18n('Name should be lowercase alphanumeric; underscores are allowed.')
+        'pattern': this.i18n('Name should be lowercase alphanumeric; dots and underscores are allowed.')
       }
     }