diff --git a/src/routes/wishlist/+page.svelte b/src/routes/wishlist/+page.svelte index 3562e78..deb7c33 100644 --- a/src/routes/wishlist/+page.svelte +++ b/src/routes/wishlist/+page.svelte @@ -7,7 +7,7 @@ import type { WishlistEntry, SortKey } from '$lib/server/wishlist/repository'; const SORT_OPTIONS: { value: SortKey; label: string }[] = [ - { value: 'popular', label: 'Beliebteste' }, + { value: 'popular', label: 'Meist gewünscht' }, { value: 'newest', label: 'Neueste' }, { value: 'oldest', label: 'Älteste' } ];