Add seven plural forms no catalogue ever had

Found by widening the coverage check to plural() forms in every file rather
than the two being worked on. Seven counted strings in the Files view and the
event editor had never been in any of the nine catalogues, so they rendered in
English whatever language was chosen.

Not a regression from the recent work -- they have been missing since the
features landed, and every earlier scan looked at t("literal") sites and the
plurals of whichever file was in hand.

All nine languages, one commit rather than nine: this is a single gap in a
check rather than a translation pass, and splitting it per language would
suggest nine decisions where there is one.
This commit is contained in:
2026-09-03 14:44:23 -07:00
parent 71827a2d04
commit 1070ee13bc
9 changed files with 108 additions and 0 deletions
+12
View File
@@ -1318,8 +1318,20 @@ export const catalog: Catalog = {
"{header} {op} \"{value}\"": "{header} {op} \"{value}\"",
"{rule}, until {date}": "{rule}, bis {date}",
"{tests} → {actions}": "{tests} → {actions}",
// ── Third pass ──────────────────────────────────────────────────────
// Sentences that lib/ and store/ were building in English, and the two
// swipe labels that reach t() through a variable and so were invisible
// to a scan for t("literal"). See #259.
},
plurals: {
// ── Third pass ─────────────────────────────────────────────────────
"Delete {n} items": { one: "{n} Element löschen", other: "{n} Elemente löschen" },
"Delete {n} items?": { one: "{n} Element löschen?", other: "{n} Elemente löschen?" },
"Move {n} items": { one: "{n} Element verschieben", other: "{n} Elemente verschieben" },
"Move {n} items…": { one: "{n} Element verschieben…", other: "{n} Elemente verschieben…" },
"The event runs {n} days longer than this shows.": { one: "Der Termin dauert {n} Tag länger, als hier angezeigt wird.", other: "Der Termin dauert {n} Tage länger, als hier angezeigt wird." },
"{n} guests are not on this server, so there is no free/busy to read for them.": { one: "{n} Gast ist nicht auf diesem Server, daher gibt es dafür keine Frei/Gebucht-Informationen.", other: "{n} Gäste sind nicht auf diesem Server, daher gibt es dafür keine Frei/Gebucht-Informationen." },
"{n} items selected": { one: "{n} Element ausgewählt", other: "{n} Elemente ausgewählt" },
// ── Third pass ─────────────────────────────────────────────────────
"Every {n} days": { one: "Jeden Tag", other: "Alle {n} Tage" },
"Every {n} months": { one: "Jeden Monat", other: "Alle {n} Monate" },