Skip to content

Commit

Permalink
add missing translation in TriggerBindingSection
Browse files Browse the repository at this point in the history
  • Loading branch information
vikram-raj committed Jul 15, 2024
1 parent b847bd3 commit f5b5b87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions locales/en/plugin__pipelines-console-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@
"Go to Admin Approvals tab": "Go to Admin Approvals tab",
"Go to Approvals tab": "Go to Approvals tab",
"Hide credential options": "Hide credential options",
"Hide variables": "Hide variables",
"Hide VolumeClaimTemplate options": "Hide VolumeClaimTemplate options",
"High": "High",
"Image Registry": "Image Registry",
Expand Down Expand Up @@ -332,6 +333,7 @@
"Services": "Services",
"Shared access (RWX)": "Shared access (RWX)",
"Show credential options": "Show credential options",
"Show variables": "Show variables",
"Show VolumeClaimTemplate options": "Show VolumeClaimTemplate options",
"Showing {{count}} event": "Showing {{count}} event",
"Showing {{count}} event_plural": "Showing {{count}} event",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ const TriggerBindingSection: React.FC = () => {
/>
{bindingVars && (
<ExpandableSection
toggleTextExpanded="Hide variables"
toggleTextCollapsed="Show variables"
toggleTextExpanded={t('Hide variables')}
toggleTextCollapsed={t('Show variables')}
>
<div className="odc-trigger-binding-section__variable-container">
<p className="odc-trigger-binding-section__variable-descriptor">
Expand Down

0 comments on commit f5b5b87

Please sign in to comment.