dots are allowed in actor names
authorChocobozzz <me@florianbigard.com>
Mon, 10 Dec 2018 09:25:35 +0000 (10:25 +0100)
committerChocobozzz <me@florianbigard.com>
Mon, 10 Dec 2018 09:26:00 +0000 (10:26 +0100)
client/src/app/shared/forms/form-validators/user-validators.service.ts
client/src/app/shared/forms/form-validators/video-channel-validators.service.ts

index b1c61d6df94fcad102d78db711ff4d417fc585fc..6589b25804ed73eda6d7fa10130085fad51d4cd3 100644 (file)
@@ -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.')
       }
     }
 
index e657f36cfd1a509d4146fa0487421af643fb66e5..1c519c10acb02710a2e1fdbedd244647009df4b0 100644 (file)
@@ -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.')
       }
     }