fix: update by review comments

Signed-off-by: mario ma <mario.ma.node@gmail.com>
This commit is contained in:
mario ma
2024-06-27 23:35:22 +08:00
parent 582dfb5359
commit 715f8d5dc0
9 changed files with 33 additions and 21 deletions
+7 -7
View File
@@ -33,21 +33,21 @@ export const catalogReactTranslationRef: TranslationRef<
readonly 'catalogFilter.buttonTitle': 'Filters';
readonly 'entityKindPicker.title': 'Kind';
readonly 'entityKindPicker.errorMessage': 'Failed to load entity kinds';
readonly entityLifecyclePickerTitle: 'Lifecycle';
readonly entityNamespacePickerTitle: 'Namespace';
readonly entityOwnerPickerTitle: 'Owner';
readonly 'entityLifecyclePicker.title': 'Lifecycle';
readonly 'entityNamespacePicker.title': 'Namespace';
readonly 'entityOwnerPicker.title': 'Owner';
readonly 'entityProcessingStatusPicker.title': 'Processing Status';
readonly 'entityTagPicker.title': 'Tags';
readonly 'entityPeekAheadPopover.title': 'Drill into the entity to see all of the tags.';
readonly 'entityPeekAheadPopover.entityCardActionsTitle': 'Show details';
readonly 'entityPeekAheadPopover.emailCardAction.title': 'Email {{email}}';
readonly 'entityPeekAheadPopover.emailCardAction.subTitle': 'mailto {{email}}';
readonly entityProcessingStatusPickerTitle: 'Processing Status';
readonly entitySearchBarPlaceholder: 'Search';
readonly entityTagPickerTitle: 'Tags';
readonly 'entitySearchBar.placeholder': 'Search';
readonly 'entityTypePicker.title': 'Type';
readonly 'entityTypePicker.errorMessage': 'Failed to load entity types';
readonly 'entityTypePicker.optionAllTitle': 'all';
readonly 'favoriteEntity.addToFavorites': 'Add to favorites';
readonly 'favoriteEntity.RemoveFromFavorites': 'Remove from favorites';
readonly 'favoriteEntity.removeFromFavorites': 'Remove from favorites';
readonly 'inspectEntityDialog.title': 'Entity Inspector';
readonly 'inspectEntityDialog.closeButtonTitle': 'Close';
readonly 'inspectEntityDialog.ancestryPage.title': 'Ancestry';
@@ -41,7 +41,7 @@ export const EntityLifecyclePicker = (props: { initialFilter?: string[] }) => {
return (
<EntityAutocompletePicker
label={t('entityLifecyclePickerTitle')}
label={t('entityLifecyclePicker.title')}
name="lifecycles"
path="spec.lifecycle"
Filter={EntityLifecycleFilter}
@@ -51,7 +51,7 @@ export const EntityNamespacePicker = (props: EntityNamespacePickerProps) => {
return (
<EntityAutocompletePicker
label={t('entityNamespacePickerTitle')}
label={t('entityNamespacePicker.title')}
name="namespace"
path="metadata.namespace"
Filter={EntityNamespaceFilter}
@@ -179,7 +179,7 @@ export const EntityOwnerPicker = (props?: EntityOwnerPickerProps) => {
return (
<Box className={classes.root} pb={1} pt={1}>
<Typography className={classes.label} variant="button" component="label">
{t('entityOwnerPickerTitle')}
{t('entityOwnerPicker.title')}
<Autocomplete
PopperComponent={popperProps => (
<div {...popperProps}>{popperProps.children as ReactNode}</div>
@@ -74,7 +74,7 @@ export const EntityProcessingStatusPicker = () => {
return (
<Box className={classes.root} pb={1} pt={1}>
<Typography className={classes.label} variant="button" component="label">
{t('entityProcessingStatusPickerTitle')}
{t('entityProcessingStatusPicker.title')}
<Autocomplete<string, true>
PopperComponent={popperProps => (
<div {...popperProps}>{popperProps.children as ReactNode}</div>
@@ -88,7 +88,7 @@ export const EntitySearchBar = () => {
aria-label="search"
id="input-with-icon-adornment"
className={classes.input}
placeholder={t('entitySearchBarPlaceholder')}
placeholder={t('entitySearchBar.placeholder')}
autoComplete="off"
onChange={event => setSearch(event.target.value)}
value={search}
@@ -41,7 +41,7 @@ export const EntityTagPicker = (props: EntityTagPickerProps) => {
return (
<EntityAutocompletePicker
label={t('entityTagPickerTitle')}
label={t('entityTagPicker.title')}
name="tags"
path="metadata.tags"
Filter={EntityTagFilter}
@@ -56,7 +56,7 @@ export const FavoriteEntity = (props: FavoriteEntityProps) => {
<Tooltip
title={
isStarredEntity
? t('favoriteEntity.RemoveFromFavorites')
? t('favoriteEntity.removeFromFavorites')
: t('favoriteEntity.addToFavorites')
}
>
+19 -7
View File
@@ -28,9 +28,21 @@ export const catalogReactTranslationRef = createTranslationRef({
title: 'Kind',
errorMessage: 'Failed to load entity kinds',
},
entityLifecyclePickerTitle: 'Lifecycle',
entityNamespacePickerTitle: 'Namespace',
entityOwnerPickerTitle: 'Owner',
entityLifecyclePicker: {
title: 'Lifecycle',
},
entityNamespacePicker: {
title: 'Namespace',
},
entityOwnerPicker: {
title: 'Owner',
},
entityProcessingStatusPicker: {
title: 'Processing Status',
},
entityTagPicker: {
title: 'Tags',
},
entityPeekAheadPopover: {
title: 'Drill into the entity to see all of the tags.',
emailCardAction: {
@@ -39,9 +51,9 @@ export const catalogReactTranslationRef = createTranslationRef({
},
entityCardActionsTitle: 'Show details',
},
entityProcessingStatusPickerTitle: 'Processing Status',
entitySearchBarPlaceholder: 'Search',
entityTagPickerTitle: 'Tags',
entitySearchBar: {
placeholder: 'Search',
},
entityTypePicker: {
title: 'Type',
errorMessage: 'Failed to load entity types',
@@ -49,7 +61,7 @@ export const catalogReactTranslationRef = createTranslationRef({
},
favoriteEntity: {
addToFavorites: 'Add to favorites',
RemoveFromFavorites: 'Remove from favorites',
removeFromFavorites: 'Remove from favorites',
},
inspectEntityDialog: {
title: 'Entity Inspector',