fixed subheading (#2868)

Co-authored-by: Agnieszka Gancarczyk <agancarc@redhat.com>
This commit is contained in:
agagancarczyk 2022-06-23 11:51:41 +01:00 committed by GitHub
parent 4ec40a52a6
commit c4cd7c376e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View file

@ -43,6 +43,7 @@
"chooseAMapperType": "Choose a mapper type", "chooseAMapperType": "Choose a mapper type",
"addPredefinedMappers": "Add predefined mappers", "addPredefinedMappers": "Add predefined mappers",
"predefinedMappingDescription": "Choose any of the predefined mappings from this table", "predefinedMappingDescription": "Choose any of the predefined mappings from this table",
"configureMappingDescription": "Choose any of the mappings from this table",
"mappingTable": "Table with predefined mapping", "mappingTable": "Table with predefined mapping",
"scope": "Scope", "scope": "Scope",
"roleMappingUpdatedSuccess": "Role mapping updated", "roleMappingUpdatedSuccess": "Role mapping updated",

View file

@ -93,7 +93,11 @@ export const AddMapperDialog = (props: AddMapperDialogProps) => {
<Text component={TextVariants.h1}> <Text component={TextVariants.h1}>
{isBuiltIn ? t("addPredefinedMappers") : t("emptySecondaryAction")} {isBuiltIn ? t("addPredefinedMappers") : t("emptySecondaryAction")}
</Text> </Text>
<Text>{t("predefinedMappingDescription")}</Text> <Text>
{isBuiltIn
? t("predefinedMappingDescription")
: t("configureMappingDescription")}
</Text>
</TextContent> </TextContent>
} }
isOpen={props.open} isOpen={props.open}