fix(l10n): plain approvals hint, real plurals, de-jargoned chain pill
Some checks failed
Security / Security check (push) Failing after 1s
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:
parent
79e08c8d17
commit
dfc24d3c58
5 changed files with 56 additions and 20 deletions
|
|
@ -1950,7 +1950,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
|
||||
@override
|
||||
String get approvalsInboxHint =>
|
||||
'All caught up. New `system.approval@^0` steps land here automatically.';
|
||||
'All caught up. When a flow asks for a human approval, the request appears here automatically.';
|
||||
|
||||
@override
|
||||
String get approvalsReloadTooltip => 'Reload';
|
||||
|
|
@ -2070,7 +2070,13 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
|
||||
@override
|
||||
String doctorSummaryCapabilities(int n) {
|
||||
return '$n capabilities';
|
||||
String _temp0 = intl.Intl.pluralLogic(
|
||||
n,
|
||||
locale: localeName,
|
||||
other: '$n capabilities',
|
||||
one: '1 capability',
|
||||
);
|
||||
return '$_temp0';
|
||||
}
|
||||
|
||||
@override
|
||||
|
|
@ -2086,7 +2092,19 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
|
||||
@override
|
||||
String doctorModulesPanelSummary(int n, int m) {
|
||||
return '$n modules · $m capabilities';
|
||||
String _temp0 = intl.Intl.pluralLogic(
|
||||
n,
|
||||
locale: localeName,
|
||||
other: '$n modules',
|
||||
one: '1 module',
|
||||
);
|
||||
String _temp1 = intl.Intl.pluralLogic(
|
||||
m,
|
||||
locale: localeName,
|
||||
other: '$m capabilities',
|
||||
one: '1 capability',
|
||||
);
|
||||
return '$_temp0 · $_temp1';
|
||||
}
|
||||
|
||||
@override
|
||||
|
|
@ -2160,7 +2178,7 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||
}
|
||||
|
||||
@override
|
||||
String get doctorChainPillOk => 'Integrity chain v1';
|
||||
String get doctorChainPillOk => 'Integrity chain verified';
|
||||
|
||||
@override
|
||||
String get doctorChainPillTamper => 'TAMPER';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue