diff options
| author | Fuwn <[email protected]> | 2026-06-05 13:33:01 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-06-05 13:33:01 +0000 |
| commit | c1a6f33b5a54c92953a7396a252c0054e3f77d8f (patch) | |
| tree | 087a7b904026c5300ba7bcc2f8178d4592775387 /src/routes | |
| parent | feat(airing): replace SubsPlease with AnimeSchedule (sub+dub) (diff) | |
| download | due.moe-c1a6f33b5a54c92953a7396a252c0054e3f77d8f.tar.xz due.moe-c1a6f33b5a54c92953a7396a252c0054e3f77d8f.zip | |
feat(schedule): add sub/dub toggle to the schedule page
Add a Sub/Dub toggle to /schedule, selected via a ?type= query param and defaulting to the countdown source but independent of it. Relabel the nav item from "Subtitle Schedule" to "Anime Schedule" to reflect both tracks.
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/+layout.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index db628da6..be594460 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -356,7 +356,7 @@ $: { </a> <Dropdown items={[ - { name: $locale().navigation.subtitleSchedule, url: root('/schedule') }, + { name: $locale().navigation.animeSchedule, url: root('/schedule') }, { name: $locale().navigation.hololive, url: root('/hololive') }, { name: $locale().tools.tool.characterBirthdays.short, url: root('/birthdays') }, { name: $locale().navigation.newReleases, url: root('/updates') } |