]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Add missing localization keys
authorChocobozzz <me@florianbigard.com>
Wed, 21 Jul 2021 14:22:18 +0000 (16:22 +0200)
committerChocobozzz <me@florianbigard.com>
Wed, 21 Jul 2021 14:22:18 +0000 (16:22 +0200)
client/src/app/+admin/users/user-list/user-list.component.ts
client/src/app/+my-library/my-videos/my-videos.component.html
client/src/app/core/menu/menu.service.ts

index e02d8e1ad8111e4cb36c61891bb83139367778a4..e3ae68a93bd26b2fa8b7a89de112c22a8650fbea 100644 (file)
@@ -108,18 +108,18 @@ export class UserListComponent extends RestTable implements OnInit {
     ]
 
     this.columns = [
-      { id: 'username', label: 'Username' },
-      { id: 'email', label: 'Email' },
-      { id: 'quota', label: 'Video quota' },
-      { id: 'role', label: 'Role' },
-      { id: 'createdAt', label: 'Created' }
+      { id: 'username', label: $localize`Username` },
+      { id: 'email', label: $localize`Email` },
+      { id: 'quota', label: $localize`Video quota` },
+      { id: 'role', label: $localize`Role` },
+      { id: 'createdAt', label: $localize`Created` }
     ]
 
     this.selectedColumns = this.columns.map(c => c.id)
 
-    this.columns.push({ id: 'quotaDaily', label: 'Daily quota' })
-    this.columns.push({ id: 'pluginAuth', label: 'Auth plugin' })
-    this.columns.push({ id: 'lastLoginDate', label: 'Last login' })
+    this.columns.push({ id: 'quotaDaily', label: $localize`Daily quota` })
+    this.columns.push({ id: 'pluginAuth', label: $localize`Auth plugin` })
+    this.columns.push({ id: 'lastLoginDate', label: $localize`Last login` })
   }
 
   getIdentifier () {
index 8d8b482add3756970736a71397b23fe0efb7b581..0552b8ce4fbde90f5f8690291795effdd6faefcc 100644 (file)
@@ -23,7 +23,7 @@
 
   <div class="peertube-select-container peertube-select-button">
     <select [(ngModel)]="sort" (ngModelChange)="onChangeSortColumn()" class="form-control">
-      <option value="undefined" disabled>Sort by</option>
+      <option value="undefined" disabled i18n>Sort by</option>
       <option value="-publishedAt" i18n>Last published first</option>
       <option value="-createdAt" i18n>Last created first</option>
       <option value="-views" i18n>Most viewed first</option>
index 60130382fdb91de4aff135b02407ce813a867762..0b8d0191e15dfe113aacce005c5cab250c106886 100644 (file)
@@ -101,7 +101,7 @@ export class MenuService {
 
     return {
       key: 'in-my-library',
-      title: 'In my library',
+      title: $localize`In my library`,
       links
     }
   }