dots are allowed in actor names
This commit is contained in:
parent
f50ab1c289
commit
4523bf1132
|
@ -31,7 +31,7 @@ export class UserValidatorsService {
|
||||||
'required': this.i18n('Username is required.'),
|
'required': this.i18n('Username is required.'),
|
||||||
'minlength': this.i18n('Username must be at least 1 character long.'),
|
'minlength': this.i18n('Username must be at least 1 character long.'),
|
||||||
'maxlength': this.i18n('Username cannot be more than 50 characters 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.')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ export class VideoChannelValidatorsService {
|
||||||
'required': this.i18n('Name is required.'),
|
'required': this.i18n('Name is required.'),
|
||||||
'minlength': this.i18n('Name must be at least 1 character long.'),
|
'minlength': this.i18n('Name must be at least 1 character long.'),
|
||||||
'maxlength': this.i18n('Name cannot be more than 50 characters 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.')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue