Skip to content

Commit 2fde80e

Browse files
committed
fix(oauth2): improve some text on last stage
CMK-29824 CMK-29045 Change-Id: Iecbef5bf475766f5ef843f80f66327e7aa9e917e
1 parent ac101cf commit 2fde80e

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

packages/cmk-frontend-vue/src/mode-oauth2-connection/steps/SaveConnection.vue

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -281,16 +281,22 @@ immediateWatch(
281281
<CmkAlertBox variant="success">
282282
{{ _t('OAuth2 connection parameters requested successfully!') }}
283283
</CmkAlertBox>
284-
{{
285-
_t(
286-
'Enter the Checkmk display title for this connection. You can then save and use the connection.'
287-
)
288-
}}
289284
<FormEdit
290285
v-model:data="filteredData"
291286
:backend-validation="filteredValidation"
292287
:spec="filteredDictionary"
293288
/>
289+
<span>
290+
{{ _t('Enter the Checkmk display title for this connection.') }}
291+
{{ _t('You can then') }}
292+
<b>
293+
{{ _t('save') }}
294+
</b>
295+
{{ _t('and use the connection.') }}
296+
</span>
297+
<span>
298+
{{ _t('Saving this connection will create three entries in the password store.') }}
299+
</span>
294300
</template>
295301
<CmkAlertBox v-else variant="error" :heading="errorTitle">
296302
<template v-if="errorDetails !== null">{{ errorDetails }}</template>

0 commit comments

Comments
 (0)