Skip to content

Commit e17f41b

Browse files
authored
Merge pull request #1093 from nextcloud/fix/buttons-wording
fix: Fix dialog button wording to be more understandable
2 parents cd2606e + 97bb6de commit e17f41b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/ProviderSettingsDialog.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ SPDX-License-Identifier: AGPL-3.0-or-later
1212
@update:open="onOpenChanged"
1313
@submit="saveAll">
1414
<template #actions>
15+
<NcButton variant="tertiary" :disabled="!isDirty" @click="cancelChanges">
16+
{{ t('user_saml', 'Cancel changes') }}
17+
</NcButton>
1518
<NcButton
1619
variant="secondary"
1720
:href="metadataUrl"
1821
download>
1922
{{ t('user_saml', 'Download metadata XML') }}
2023
</NcButton>
21-
<NcButton variant="tertiary" :disabled="!isDirty" @click="cancelChanges">
22-
{{ t('user_saml', 'Cancel') }}
23-
</NcButton>
2424
<NcButton variant="primary" type="submit" :disabled="!isDirty || isSaving">
25-
{{ isSaving ? t('user_saml', 'Saving…') : t('user_saml', 'Edit') }}
25+
{{ isSaving ? t('user_saml', 'Saving changes…') : t('user_saml', 'Save changes') }}
2626
</NcButton>
2727
</template>
2828

0 commit comments

Comments
 (0)