Add missing plural versions of some i18n keys (#17672)

This commit is contained in:
Josh Hawkins 2025-04-12 17:18:35 -05:00 committed by GitHub
parent 622bda9f66
commit 4abf945b71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 16 additions and 8 deletions

View File

@ -23,17 +23,23 @@
"pm": "pm", "pm": "pm",
"am": "am", "am": "am",
"yr": "{{time}}yr", "yr": "{{time}}yr",
"year": "{{time}} years", "year_one": "{{time}} year",
"year_other": "{{time}} years",
"mo": "{{time}}mo", "mo": "{{time}}mo",
"month": "{{time}} months", "month_one": "{{time}} month",
"month_other": "{{time}} months",
"d": "{{time}}d", "d": "{{time}}d",
"day": "{{time}} days", "day_one": "{{time}} day",
"day_other": "{{time}} days",
"h": "{{time}}h", "h": "{{time}}h",
"hour": "{{time}} hours", "hour_one": "{{time}} hour",
"hour_other": "{{time}} hours",
"m": "{{time}}m", "m": "{{time}}m",
"minute": "{{time}} minutes", "minute_one": "{{time}} minute",
"minute_other": "{{time}} minutes",
"s": "{{time}}s", "s": "{{time}}s",
"second": "{{time}} seconds", "second_one": "{{time}} second",
"second_other": "{{time}} seconds",
"formattedTimestamp": { "formattedTimestamp": {
"12hour": "%b %-d, %I:%M:%S %p", "12hour": "%b %-d, %I:%M:%S %p",
"24hour": "%b %-d, %H:%M:%S" "24hour": "%b %-d, %H:%M:%S"

View File

@ -6,7 +6,8 @@
"title": "All Labels", "title": "All Labels",
"short": "Labels" "short": "Labels"
}, },
"count": "{{count}} Labels" "count_one": "{{count}} Label",
"count_other": "{{count}} Labels"
}, },
"zones": { "zones": {
"label": "Zones", "label": "Zones",

View File

@ -179,7 +179,8 @@
}, },
"noTrackedObjects": "No Tracked Objects Found", "noTrackedObjects": "No Tracked Objects Found",
"fetchingTrackedObjectsFailed": "Error fetching tracked objects: {{errorMessage}}", "fetchingTrackedObjectsFailed": "Error fetching tracked objects: {{errorMessage}}",
"trackedObjectsCount": "{{count}} tracked objects ", "trackedObjectsCount_one": "{{count}} tracked object ",
"trackedObjectsCount_other": "{{count}} tracked objects ",
"searchResult": { "searchResult": {
"deleteTrackedObject": { "deleteTrackedObject": {
"toast": { "toast": {