Translate filter for last online

This commit is contained in:
MartinBraquet
2026-02-27 13:22:15 +01:00
parent 59d52d4c11
commit b7fe357fb2
4 changed files with 44 additions and 16 deletions

View File

@@ -227,12 +227,12 @@ export const GENDERS_PLURAL = {
}
export const LAST_ONLINE_CHOICES = {
Today: 'today',
'Last 3 days': '3days',
'Last week': 'week',
'Last month': 'month',
'Last 3 months': '3months',
'Any time': 'any',
today: 'Today',
'3days': 'Last 3 days',
week: 'Last week',
month: 'Last month',
'3months': 'Last 3 months',
any: 'Any time',
}
export const INVERTED_RELATIONSHIP_CHOICES = invert(RELATIONSHIP_CHOICES)