mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
commit
4d9e6865ce
4 changed files with 19 additions and 5 deletions
7
src/components/PageNotFound.vue
Normal file
7
src/components/PageNotFound.vue
Normal file
|
@ -0,0 +1,7 @@
|
|||
<template>
|
||||
<div class="flex flex-col justify-center items-center min-h-[88vh]">
|
||||
<h1 class="font-bold !text-9xl">404</h1>
|
||||
<h2 class="!text-2xl" v-t="'info.page_not_found'" />
|
||||
<a class="btn mt-16" href="/" v-t="'actions.back_to_home'" />
|
||||
</div>
|
||||
</template>
|
|
@ -314,7 +314,7 @@
|
|||
</tbody>
|
||||
</table>
|
||||
<br />
|
||||
<p v-t="'information.preferences_note'" />
|
||||
<p v-t="'info.preferences_note'" />
|
||||
<br />
|
||||
<button class="btn" v-t="'actions.reset_preferences'" @click="resetPreferences()" />
|
||||
<button class="btn mx-4" v-t="'actions.backup_preferences'" @click="backupPreferences()" />
|
||||
|
|
|
@ -96,7 +96,8 @@
|
|||
"reset_preferences": "Reset preferences",
|
||||
"confirm_reset_preferences": "Are you sure you want to reset your preferences?",
|
||||
"backup_preferences": "Backup preferences",
|
||||
"restore_preferences": "Restore preferences"
|
||||
"restore_preferences": "Restore preferences",
|
||||
"back_to_home": "Back to home"
|
||||
},
|
||||
"comment": {
|
||||
"pinned_by": "Pinned by",
|
||||
|
@ -141,7 +142,8 @@
|
|||
"subscriptions": {
|
||||
"subscribed_channels_count": "Subscribed to: {0}"
|
||||
},
|
||||
"information": {
|
||||
"preferences_note": "Note: preferences are saved in the local storage of your browser. Deleting your browser data will reset them."
|
||||
"info": {
|
||||
"preferences_note": "Note: preferences are saved in the local storage of your browser. Deleting your browser data will reset them.",
|
||||
"page_not_found": "Page not found"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -80,6 +80,11 @@ const routes = [
|
|||
name: "Playlists",
|
||||
component: () => import("../components/PlaylistsPage.vue"),
|
||||
},
|
||||
{
|
||||
path: "/:pathMatch(.*)*",
|
||||
name: "Page Not Found",
|
||||
component: () => import("../components/PageNotFound.vue"),
|
||||
},
|
||||
];
|
||||
|
||||
const router = createRouter({
|
||||
|
|
Loading…
Reference in a new issue