Skip to content

Commit

Permalink
Merge branch 'main' into prod/festapp
Browse files Browse the repository at this point in the history
  • Loading branch information
miakh committed Nov 16, 2024
2 parents fed13fd + afe2e08 commit 2de965f
Show file tree
Hide file tree
Showing 53 changed files with 1,831 additions and 753 deletions.
4 changes: 4 additions & 0 deletions assets/translations/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,9 @@
"Songbook": "Zpěvník",
"Smaller": "Menší",
"Larger": "Větší",
"Maximum of participants": "Maximální počet účastníků",
"Are you sure you want to delete this event?": "Opravdu chcete tuto událost smazat?",
"Advanced Settings": "Pokročilá nastavení",
"Add New Event": "Přidat novou událost",
"_": "_"
}
4 changes: 4 additions & 0 deletions assets/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,9 @@
"Songbook": "Liederbuch",
"Smaller": "Kleiner",
"Larger": "Größer",
"Maximum of participants": "Maximale Teilnehmerzahl",
"Are you sure you want to delete this event?": "Sind Sie sicher, dass Sie dieses Ereignis löschen möchten?",
"Advanced Settings": "Erweiterte Einstellungen",
"Add New Event": "Neue Veranstaltung hinzufügen",
"_": "_"
}
4 changes: 4 additions & 0 deletions assets/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,9 @@
"Songbook": "Songbook",
"Smaller": "Smaller",
"Larger": "Larger",
"Maximum of participants": "Maximum of participants",
"Are you sure you want to delete this event?": "Are you sure you want to delete this event?",
"Advanced Settings": "Advanced Settings",
"Add New Event": "Add New Event",
"_":"_"
}
4 changes: 4 additions & 0 deletions assets/translations/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -279,5 +279,9 @@
"Songbook": "Śpiewnik",
"Smaller": "Mniejszy",
"Larger": "Większy",
"Maximum of participants": "Maksymalna liczba uczestników",
"Are you sure you want to delete this event?": "Czy na pewno chcesz usunąć to wydarzenie?",
"Advanced Settings": "Zaawansowane ustawienia",
"Add New Event": "Dodaj nowe wydarzenie",
"_": "_"
}
4 changes: 4 additions & 0 deletions assets/translations/sk.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,9 @@
"Songbook": "Spevník",
"Smaller": "Menší",
"Larger": "Väčší",
"Maximum of participants": "Maximálny počet účastníkov",
"Are you sure you want to delete this event?": "Naozaj chcete túto udalosť vymazať?",
"Advanced Settings": "Pokročilé nastavenia",
"Add New Event": "Pridať novú udalosť",
"_": "_"
}
4 changes: 4 additions & 0 deletions assets/translations/uk.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,5 +280,9 @@
"Songbook": "Пісенник",
"Smaller": "Менше",
"Larger": "Більше",
"Maximum of participants": "Максимальна кількість учасників",
"Are you sure you want to delete this event?": "Ви впевнені, що хочете видалити цю подію?",
"Advanced Settings": "Розширені налаштування",
"Add New Event": "Додати нову подію",
"_": "_"
}
7 changes: 5 additions & 2 deletions lib/AppRouter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import 'package:flutter/material.dart';
import 'package:fstapp/dataServices/RightsService.dart';
import 'package:fstapp/pages/AdminDashboardPage.dart';
import 'package:fstapp/pages/CheckPage.dart';
import 'package:fstapp/pages/EventEditPage.dart';
import 'package:fstapp/pages/EventPage.dart';
import 'package:fstapp/pages/HtmlEditorPage.dart';
import 'package:fstapp/pages/InfoPage.dart';
Expand Down Expand Up @@ -48,8 +49,10 @@ class AppRouter extends RootStackRouter {
AutoRoute(page: MyScheduleRoute.page, path: "/:{$LINK}/${MySchedulePage.ROUTE}"),
AutoRoute(page: ProgramViewRoute.page, path: "/:{$LINK}/${ProgramViewPage.ROUTE}"),
AutoRoute(page: GameRoute.page, path: "/:{$LINK}/${GamePage.ROUTE}"),
AutoRoute(page: SongRoute.page, path: "/:{$LINK}/${SongPage.ROUTE}"),

AutoRoute(page: SongbookRoute.page, path: "/:{$LINK}/${SongbookPage.ROUTE}"),
AutoRoute(page: EventEditRoute.page, path: "/:{$LINK}/${EventEditPage.ROUTE}", children: [
AutoRoute(path: ':id', page: EventEditRoute.page,),
]),
AutoRoute(page: HomeRoute.page, path: "/:{$LINK}", children: [
AutoRoute(page: UserRoute.page, path: "${UserPage.ROUTE}"),
AutoRoute(page: ScheduleNavigationRoute.page, path: EventPage.ROUTE, children: [
Expand Down
Loading

0 comments on commit 2de965f

Please sign in to comment.