diff --git a/frontend/app/cypress/integration/dashboard.spec.ts b/frontend/app/cypress/integration/dashboard.spec.ts
index 3de77659..b498b9aa 100644
--- a/frontend/app/cypress/integration/dashboard.spec.ts
+++ b/frontend/app/cypress/integration/dashboard.spec.ts
@@ -33,9 +33,9 @@ describe('dashboard', async function () {
describe('schedule section', function () {
it('should lead to the week overview', function () {
cy.get('.schedule')
- .contains('a', /Wochen.*übersicht/)
+ .contains('a', /Wochen.*ansicht/)
.click();
- cy.url().should('include', '/schedule/week-overview');
+ cy.url().should('include', '/schedule/weekly-view');
});
it('should lead to the calendar', function () {
diff --git a/frontend/app/src/app/modules/dashboard/dashboard.component.html b/frontend/app/src/app/modules/dashboard/dashboard.component.html
index 12cb4a37..fbecb9ff 100644
--- a/frontend/app/src/app/modules/dashboard/dashboard.component.html
+++ b/frontend/app/src/app/modules/dashboard/dashboard.component.html
@@ -19,7 +19,7 @@
-
+
diff --git a/frontend/app/src/app/modules/schedule/page/schedule-page.component.ts b/frontend/app/src/app/modules/schedule/page/schedule-page.component.ts
index 813745ab..13594ab5 100644
--- a/frontend/app/src/app/modules/schedule/page/schedule-page.component.ts
+++ b/frontend/app/src/app/modules/schedule/page/schedule-page.component.ts
@@ -136,7 +136,7 @@ export class SchedulePageComponent implements OnInit, AfterViewInit {
onInit() {
this.tabChoreographer = new SharedAxisChoreographer(this.activatedRoute.snapshot.paramMap.get('mode'), [
'calendar',
- 'week-overview',
+ 'weekly-view',
'single',
]);
}
diff --git a/frontend/app/src/app/modules/schedule/page/schedule-page.html b/frontend/app/src/app/modules/schedule/page/schedule-page.html
index 94d5410a..d13153d7 100644
--- a/frontend/app/src/app/modules/schedule/page/schedule-page.html
+++ b/frontend/app/src/app/modules/schedule/page/schedule-page.html
@@ -21,7 +21,7 @@
@if (tabChoreographer.currentValue === 'calendar') {
}
- @if (tabChoreographer.currentValue === 'week-overview') {
+ @if (tabChoreographer.currentValue === 'weekly-view') {
}
@if (tabChoreographer.currentValue === 'single') {
@@ -39,7 +39,7 @@
-
+
@@ -61,7 +61,7 @@
}
- @case ('week-overview') {
+ @case ('weekly-view') {
}
@case ('single') {
diff --git a/frontend/app/src/app/modules/schedule/schedule.module.ts b/frontend/app/src/app/modules/schedule/schedule.module.ts
index c21c4a95..9c352a6a 100644
--- a/frontend/app/src/app/modules/schedule/schedule.module.ts
+++ b/frontend/app/src/app/modules/schedule/schedule.module.ts
@@ -66,7 +66,7 @@ import {IonIconDirective} from 'src/app/util/ion-icon/ion-icon.directive';
const settingsRoutes: Routes = [
{path: 'schedule', redirectTo: 'schedule/calendar/now'},
{path: 'schedule/calendar', redirectTo: 'schedule/calendar/now'},
- {path: 'schedule/week-overview', redirectTo: 'schedule/week-overview/now'},
+ {path: 'schedule/weekly-view', redirectTo: 'schedule/weekly-view/now'},
{path: 'schedule/single', redirectTo: 'schedule/single/now'},
// calendar | recurring | single
{path: 'schedule/:mode/:date', component: SchedulePageComponent},
diff --git a/frontend/app/src/assets/i18n/de.json b/frontend/app/src/assets/i18n/de.json
index 4c758acb..00264829 100644
--- a/frontend/app/src/assets/i18n/de.json
+++ b/frontend/app/src/assets/i18n/de.json
@@ -500,7 +500,7 @@
"view": {
"today": "Heute"
},
- "recurring": "Wochenübersicht",
+ "recurring": "Wochenansicht",
"calendar": "Kalender",
"single": "Einzeltermine",
"addEventPage": {
diff --git a/frontend/app/src/assets/i18n/en.json b/frontend/app/src/assets/i18n/en.json
index 41617bd5..1ca91e79 100644
--- a/frontend/app/src/assets/i18n/en.json
+++ b/frontend/app/src/assets/i18n/en.json
@@ -500,7 +500,7 @@
"view": {
"today": "Today"
},
- "recurring": "Week Overview",
+ "recurring": "Weekly View",
"calendar": "Calendar",
"single": "Single Events",
"addEventPage": {