fix(l10n): plain approvals hint, real plurals, de-jargoned chain pill
Some checks failed
Security / Security check (push) Failing after 1s

- approvals inbox hint explains human approval in plain words
  instead of citing system.approval@^0
- doctor summary counts use ICU plurals (1 module / n modules)
- audit chain pill says 'Integrity chain verified' instead of 'v1'

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
flemming-it 2026-07-18 00:00:17 +02:00
parent 79e08c8d17
commit dfc24d3c58
5 changed files with 56 additions and 20 deletions

View file

@ -1941,7 +1941,7 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get approvalsInboxHint =>
'Alles erledigt. Neue `system.approval@^0`-Schritte landen automatisch hier.';
'Alles erledigt. Wenn ein Flow eine menschliche Freigabe verlangt, erscheint die Anfrage automatisch hier.';
@override
String get approvalsReloadTooltip => 'Aktualisieren';
@ -2063,7 +2063,13 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String doctorSummaryCapabilities(int n) {
return '$n Fähigkeiten';
String _temp0 = intl.Intl.pluralLogic(
n,
locale: localeName,
other: '$n Fähigkeiten',
one: '1 Fähigkeit',
);
return '$_temp0';
}
@override
@ -2079,7 +2085,19 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String doctorModulesPanelSummary(int n, int m) {
return '$n Module · $m Fähigkeiten';
String _temp0 = intl.Intl.pluralLogic(
n,
locale: localeName,
other: '$n Module',
one: '1 Modul',
);
String _temp1 = intl.Intl.pluralLogic(
m,
locale: localeName,
other: '$m Fähigkeiten',
one: '1 Fähigkeit',
);
return '$_temp0 · $_temp1';
}
@override
@ -2153,7 +2171,7 @@ class AppLocalizationsDe extends AppLocalizations {
}
@override
String get doctorChainPillOk => 'Integritätskette v1';
String get doctorChainPillOk => 'Integritätskette geprüft';
@override
String get doctorChainPillTamper => 'MANIPULIERT';