[frontend/pages] Use localization for other category name

This commit is contained in:
pancakes 2025-03-07 14:56:12 +10:00 committed by Laura Hausmann
parent 6875a1e9e2
commit 28610192fe
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -93,7 +93,7 @@
.GroupBy(p => p.Category)
.OrderBy(p => string.IsNullOrEmpty(p.Key))
.ThenBy(p => p.Key)
.ToDictionary(p => p.Key ?? "Other", p => p.ToList());
.ToDictionary(p => p.Key ?? Loc["Other"], p => p.ToList());
}
private async Task GetEmojis()