Skip to content

Commit

Permalink
i18n
Browse files Browse the repository at this point in the history
Signed-off-by: R-Lawton <[email protected]>
  • Loading branch information
R-Lawton committed Nov 19, 2024
1 parent 7e86230 commit 577c26c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion locales/en/plugin__kuadrant-console-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"Reference to an existing secret resource containing DNS provider credentials and configuration": "Reference to an existing secret resource containing DNS provider credentials and configuration",
"Release Notes": "Release Notes",
"Save": "Save",
"Search by": "Search by",
"Search by {{filterValue}}...": "Search by {{filterValue}}...",
"Select a gateway": "Select a gateway",
"Select a Protocol": "Select a Protocol",
"Select an ClusterIssuer": "Select an ClusterIssuer",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ResourceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ const ResourceList: React.FC<ResourceListProps> = ({
<InputGroup className="pf-v5-c-input-group co-filter-group">
<TextInput
type="text"
placeholder={`Search by ${filterSelected.toLowerCase()}...`}
placeholder={t('Search by {{filterValue}}...', { filterValue: filterSelected.toLowerCase() })}
onChange={(_event, value) => handleFilterChange(value)}
className="pf-v5-c-form-control co-text-filter-with-icon "
/>
Expand Down

0 comments on commit 577c26c

Please sign in to comment.