Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions frontend/packages/console-app/locales/en/console-app.json
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,8 @@
"Mark as schedulable": "Mark as schedulable",
"Min available {{minAvailable}} of {{count}} pod": "Min available {{minAvailable}} of {{count}} pod",
"Min available {{minAvailable}} of {{count}} pod_plural": "Min available {{minAvailable}} of {{count}} pods",
"Max unavailable {{maxUnavailable}} of {{count}} pod": "Max unavailable {{maxUnavailable}} of {{count}} pod",
"Max unavailable {{maxUnavailable}} of {{count}} pod_plural": "Max unavailable {{maxUnavailable}} of {{count}} pods",
"Availability requirement": "Availability requirement",
"maxUnavailable": "maxUnavailable",
"An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".": "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const AvailabilityRequirement: React.FC<AvailabilityRequirementProps> = ({ pdb,
minAvailable: pdb.spec.minAvailable,
count: replicas,
})
: t('public~Max unavailable {{maxUnavailable}} of {{count}} pod', {
: t('console-app~Max unavailable {{maxUnavailable}} of {{count}} pod', {
maxUnavailable: pdb?.spec?.maxUnavailable,
count: replicas,
})}
Expand Down