aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Tools/Picker.svelte
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-31 08:09:40 -0800
committerFuwn <[email protected]>2024-01-31 08:09:40 -0800
commita1a9bd7e08397e7a98a33a249024b6a2e7e08b36 (patch)
treefe19095cf84b02a346c81e68ddadaa17b952df92 /src/lib/Tools/Picker.svelte
parentfeat(hovercover): half animation time (diff)
downloaddue.moe-a1a9bd7e08397e7a98a33a249024b6a2e7e08b36.tar.xz
due.moe-a1a9bd7e08397e7a98a33a249024b6a2e7e08b36.zip
feat(locale): localise birthdays
Diffstat (limited to 'src/lib/Tools/Picker.svelte')
-rw-r--r--src/lib/Tools/Picker.svelte3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Tools/Picker.svelte b/src/lib/Tools/Picker.svelte
index b60a7039..cfc5c065 100644
--- a/src/lib/Tools/Picker.svelte
+++ b/src/lib/Tools/Picker.svelte
@@ -2,6 +2,7 @@
import { browser } from '$app/environment';
import { goto } from '$app/navigation';
import root from '$lib/Utility/root';
+ import locale from '$stores/locale';
export let tool: string;
</script>
@@ -15,7 +16,7 @@
>
<option value="default" selected disabled hidden>Select a tool to continue</option>
<option value="wrapped">AniList Wrapped</option>
- <option value="birthdays">Today's Character Birthdays</option>
+ <option value="birthdays">{$locale().tools.tool.characterBirthdays.long}</option>
<option value="sequel_spy">Sequel Spy</option>
<option value="discussions">Episode Discussion Collector</option>
<option value="random_follower">Random Follower Finder</option>