addressed review comments

Signed-off-by: Eswaraiahsapram <esapram@redhat.com>
This commit is contained in:
Eswaraiahsapram
2026-02-05 10:09:19 +05:30
parent 9b3cd87a04
commit 4c6b18a28e
3 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -2,4 +2,8 @@
'@backstage/plugin-catalog': patch
---
Added missing i18n
Add missing translation entries for catalog UI text.
This change adds translation keys and updates relevant UI components to use the correct localized labels and text in the catalog plugin. It ensures that catalog screens such as entity layout, tabs, search result items, table labels, and other UI elements correctly reference the i18n system for translation.
No functional behavior is changed aside from the improved internationalization support.
+1 -1
View File
@@ -79,7 +79,7 @@ export const catalogTranslationRef = createTranslationRef({
kind: 'Kind',
type: 'Type',
lifecycle: 'Lifecycle',
Owner: 'Owner',
owner: 'Owner',
},
catalogTable: {
warningPanelTitle: 'Could not fetch catalog entities.',
@@ -147,7 +147,7 @@ export function CatalogSearchResultListItem(
)}
{result.owner && (
<Chip
label={`${t('searchResultItem.Owner')}: ${result.owner}`}
label={`${t('searchResultItem.owner')}: ${result.owner}`}
size="small"
/>
)}