diff options
author | Chocobozzz <me@florianbigard.com> | 2018-06-05 16:52:25 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-06-05 16:52:25 +0200 |
commit | 8c40b7dc28fcbfee63573ea666ea1a389f6a2d82 (patch) | |
tree | 3890bf6aeeb7e57116b5b845dd4aedd2761f42c5 /client/src/app/+admin | |
parent | 0975cd5cf260bd06c797ac7582675ac624a47ebc (diff) | |
download | PeerTube-8c40b7dc28fcbfee63573ea666ea1a389f6a2d82.tar.gz PeerTube-8c40b7dc28fcbfee63573ea666ea1a389f6a2d82.tar.zst PeerTube-8c40b7dc28fcbfee63573ea666ea1a389f6a2d82.zip |
Add missing translations
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/users/shared/user.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+admin/users/shared/user.service.ts b/client/src/app/+admin/users/shared/user.service.ts index d8b00b862..cd810d216 100644 --- a/client/src/app/+admin/users/shared/user.service.ts +++ b/client/src/app/+admin/users/shared/user.service.ts | |||
@@ -62,7 +62,7 @@ export class UserService { | |||
62 | private formatUser (user: User) { | 62 | private formatUser (user: User) { |
63 | let videoQuota | 63 | let videoQuota |
64 | if (user.videoQuota === -1) { | 64 | if (user.videoQuota === -1) { |
65 | videoQuota = 'Unlimited' | 65 | videoQuota = this.i18n('Unlimited') |
66 | } else { | 66 | } else { |
67 | videoQuota = this.bytesPipe.transform(user.videoQuota) | 67 | videoQuota = this.bytesPipe.transform(user.videoQuota) |
68 | } | 68 | } |