]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/+accounts/accounts-routing.module.ts
Translated using Weblate (Spanish)
[github/Chocobozzz/PeerTube.git] / client / src / app / +accounts / accounts-routing.module.ts
index 55bce351a58692f9362ed2b98d80a432447d2e55..d2ca784b0378df441d0bbbadb4e753c3f34744d8 100644 (file)
@@ -7,6 +7,10 @@ import { AccountAboutComponent } from './account-about/account-about.component'
 import { AccountVideoChannelsComponent } from './account-video-channels/account-video-channels.component'
 
 const accountsRoutes: Routes = [
+  {
+    path: 'peertube',
+    redirectTo: '/videos/local'
+  },
   {
     path: ':accountId',
     component: AccountsComponent,
@@ -22,7 +26,7 @@ const accountsRoutes: Routes = [
         component: AccountVideosComponent,
         data: {
           meta: {
-            title: 'Account videos'
+            title: $localize`Account videos`
           },
           reuse: {
             enabled: true,
@@ -35,7 +39,7 @@ const accountsRoutes: Routes = [
         component: AccountVideoChannelsComponent,
         data: {
           meta: {
-            title: 'Account video channels'
+            title: $localize`Account video channels`
           }
         }
       },
@@ -44,7 +48,7 @@ const accountsRoutes: Routes = [
         component: AccountAboutComponent,
         data: {
           meta: {
-            title: 'About account'
+            title: $localize`About account`
           }
         }
       }