3 Commits

10 changed files with 50 additions and 34 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
Copyright 2026 Seekra
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
+5 -5
View File
@@ -37,11 +37,11 @@
} }
} }
}, },
"slogan": "Gebaut zum Suchen.", "slogan": "Gebaut zum Suchen.",
"legal": { "legal": {
"privacy": { "privacy": {
"title": "Datenschutzerklärung" "title": "Datenschutzerklärung"
}
} }
}
} }
+4 -3
View File
@@ -38,9 +38,10 @@
} }
}, },
"slogan": "Built to search.", "slogan": "Built to search.",
"legal": { "legal": {
"privacy": { "privacy": {
"title": "Privacy Policy" "title": "Privacy Policy"
}
} }
}
} }
+3 -3
View File
@@ -40,8 +40,8 @@
"slogan": "Hecho para buscar.", "slogan": "Hecho para buscar.",
"legal": { "legal": {
"privacy": { "privacy": {
"title": "Política de Privacidad" "title": "Política de Privacidad"
}
} }
}
} }
+4 -4
View File
@@ -40,8 +40,8 @@
"slogan": "Conçu pour chercher.", "slogan": "Conçu pour chercher.",
"legal": { "legal": {
"privacy": { "privacy": {
"title": "Politique de Confidentialité" "title": "Politique de Confidentialité"
} }
} }
} }
+3 -3
View File
@@ -40,8 +40,8 @@
"slogan": "Costruito per cercare.", "slogan": "Costruito per cercare.",
"legal": { "legal": {
"privacy": { "privacy": {
"title": "Politica di Privacy" "title": "Politica di Privacy"
}
} }
}
} }
+3 -3
View File
@@ -40,8 +40,8 @@
"slogan": "Feito para pesquisar.", "slogan": "Feito para pesquisar.",
"legal": { "legal": {
"privacy": { "privacy": {
"title": "Política de Privacidade" "title": "Política de Privacidade"
}
} }
}
} }
+2 -2
View File
@@ -21,7 +21,7 @@ import SearchView from '../views/SearchView.vue';
import SearchResultsView from '@/features/search/views/SearchResultsView.vue'; import SearchResultsView from '@/features/search/views/SearchResultsView.vue';
import SettingsView from '@/features/settings/views/SettingsView.vue'; import SettingsView from '@/features/settings/views/SettingsView.vue';
import NotFound from '../views/NotFound.vue'; import NotFound from '../views/NotFound.vue';
import PrivacyPolicy from '@/views/legal/PrivacyPolicy.vue'; import PrivacyPolicyView from '@/features/legal/views/PrivacyPolicyView.vue';
const routes = [ const routes = [
{ {
@@ -56,7 +56,7 @@ const routes = [
{ {
path: '/privacy', path: '/privacy',
name: 'privacyPolicy', name: 'privacyPolicy',
component: PrivacyPolicy, component: PrivacyPolicyView,
meta: { meta: {
title: () => 'Privacy Policy' title: () => 'Privacy Policy'
} }