diff options
author | Chocobozzz <me@florianbigard.com> | 2021-07-21 16:22:18 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-07-21 16:22:18 +0200 |
commit | c3185413986a6b67a88a449f069a9b14e2ad3294 (patch) | |
tree | 5497e26d4f779f4b66941a8e8fafee91f0ba5d32 /client/src/app/+admin | |
parent | d1aed103539e2e53418a44716f8f2b1603cd339f (diff) | |
download | PeerTube-c3185413986a6b67a88a449f069a9b14e2ad3294.tar.gz PeerTube-c3185413986a6b67a88a449f069a9b14e2ad3294.tar.zst PeerTube-c3185413986a6b67a88a449f069a9b14e2ad3294.zip |
Add missing localization keys
Diffstat (limited to 'client/src/app/+admin')
-rw-r--r-- | client/src/app/+admin/users/user-list/user-list.component.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/client/src/app/+admin/users/user-list/user-list.component.ts b/client/src/app/+admin/users/user-list/user-list.component.ts index e02d8e1ad..e3ae68a93 100644 --- a/client/src/app/+admin/users/user-list/user-list.component.ts +++ b/client/src/app/+admin/users/user-list/user-list.component.ts | |||
@@ -108,18 +108,18 @@ export class UserListComponent extends RestTable implements OnInit { | |||
108 | ] | 108 | ] |
109 | 109 | ||
110 | this.columns = [ | 110 | this.columns = [ |
111 | { id: 'username', label: 'Username' }, | 111 | { id: 'username', label: $localize`Username` }, |
112 | { id: 'email', label: 'Email' }, | 112 | { id: 'email', label: $localize`Email` }, |
113 | { id: 'quota', label: 'Video quota' }, | 113 | { id: 'quota', label: $localize`Video quota` }, |
114 | { id: 'role', label: 'Role' }, | 114 | { id: 'role', label: $localize`Role` }, |
115 | { id: 'createdAt', label: 'Created' } | 115 | { id: 'createdAt', label: $localize`Created` } |
116 | ] | 116 | ] |
117 | 117 | ||
118 | this.selectedColumns = this.columns.map(c => c.id) | 118 | this.selectedColumns = this.columns.map(c => c.id) |
119 | 119 | ||
120 | this.columns.push({ id: 'quotaDaily', label: 'Daily quota' }) | 120 | this.columns.push({ id: 'quotaDaily', label: $localize`Daily quota` }) |
121 | this.columns.push({ id: 'pluginAuth', label: 'Auth plugin' }) | 121 | this.columns.push({ id: 'pluginAuth', label: $localize`Auth plugin` }) |
122 | this.columns.push({ id: 'lastLoginDate', label: 'Last login' }) | 122 | this.columns.push({ id: 'lastLoginDate', label: $localize`Last login` }) |
123 | } | 123 | } |
124 | 124 | ||
125 | getIdentifier () { | 125 | getIdentifier () { |