aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/form-validators
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2020-11-12 21:09:17 +0100
committerRigel Kent <sendmemail@rigelk.eu>2020-11-12 21:09:28 +0100
commitdc5bb5cea5bf7e906caa6d9c5468e6de36e605de (patch)
tree9176c9f6d2f508a11ea444cef8105840486960c6 /client/src/app/shared/form-validators
parent501af82d999a79e277f87794f6296d0e3495775c (diff)
downloadPeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.tar.gz
PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.tar.zst
PeerTube-dc5bb5cea5bf7e906caa6d9c5468e6de36e605de.zip
reword unclear sentences, check for grammar
fixes #3222
Diffstat (limited to 'client/src/app/shared/form-validators')
-rw-r--r--client/src/app/shared/form-validators/user-validators.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/form-validators/user-validators.ts b/client/src/app/shared/form-validators/user-validators.ts
index 18199505c..9efc5180d 100644
--- a/client/src/app/shared/form-validators/user-validators.ts
+++ b/client/src/app/shared/form-validators/user-validators.ts
@@ -27,7 +27,7 @@ export const USER_CHANNEL_NAME_VALIDATOR: BuildFormValidator = {
27 'required': $localize`Channel name is required.`, 27 'required': $localize`Channel name is required.`,
28 'minlength': $localize`Channel name must be at least 1 character long.`, 28 'minlength': $localize`Channel name must be at least 1 character long.`,
29 'maxlength': $localize`Channel name cannot be more than 50 characters long.`, 29 'maxlength': $localize`Channel name cannot be more than 50 characters long.`,
30 'pattern': $localize`Channel name should be lowercase alphanumeric; dots and underscores are allowed.` 30 'pattern': $localize`Channel name should be lowercase, and can contain only alphanumeric characters, dots and underscores.`
31 } 31 }
32} 32}
33 33