diff --git a/frontend/src/app/routes.js b/frontend/src/app/routes.js index 465590c66..baa3cfd45 100644 --- a/frontend/src/app/routes.js +++ b/frontend/src/app/routes.js @@ -44,6 +44,7 @@ import { config, session } from "./session"; const c = window.__CONFIG__; const appName = c.name; +const appEdition = c.edition; const siteTitle = c.siteTitle ? c.siteTitle : c.name; export default [ @@ -56,25 +57,25 @@ export default [ name: "about", path: "/about", component: About, - meta: { title: appName, auth: false }, - }, - { - name: "feedback", - path: "/feedback", - component: Feedback, - meta: { title: appName, auth: true }, + meta: { title: appEdition, auth: false }, }, { name: "license", path: "/about/license", component: License, - meta: { title: appName, auth: false }, + meta: { title: appEdition, auth: false }, + }, + { + name: "feedback", + path: "/feedback", + component: Feedback, + meta: { title: appEdition, auth: true }, }, { name: "help", path: "/help*", component: Help, - meta: { title: appName, auth: false }, + meta: { title: appEdition, auth: false }, }, { name: "login", @@ -93,13 +94,13 @@ export default [ name: "browse", path: "/browse", component: Photos, - meta: { title: appName, icon: true, auth: true }, + meta: { title: $gettext("Browse"), icon: true, auth: true }, }, { name: "all", path: "/all", component: Photos, - meta: { title: $gettext("Search"), auth: true }, + meta: { title: $gettext("Browse"), auth: true }, props: { staticFilter: { quality: "0" } }, }, { diff --git a/frontend/src/component/footer.vue b/frontend/src/component/footer.vue index f190bd35f..b862570ba 100644 --- a/frontend/src/component/footer.vue +++ b/frontend/src/component/footer.vue @@ -4,11 +4,11 @@ {{ $config.getEdition() }} - {{ build }} + Build {{ build }} - + 3rd-party software packages © 2018-2022 PhotoPrism UG diff --git a/frontend/src/component/navigation.vue b/frontend/src/component/navigation.vue index ef2f94a0a..f9c494951 100644 --- a/frontend/src/component/navigation.vue +++ b/frontend/src/component/navigation.vue @@ -1,5 +1,5 @@