Soften RSVP cancellation dialog wording

Replace harsh "permanently cancelled" language with friendlier
"The organizer will no longer see you as attending" and rename
buttons from "Cancel attendance" to "Cancel RSVP".

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 22:32:19 +01:00
parent c51eacb261
commit 8885dbd722
4 changed files with 13 additions and 13 deletions

View File

@@ -25,7 +25,7 @@
type="button"
@click="$emit('cancel')"
>
Cancel attendance
Cancel RSVP
</button>
</Transition>
</div>

View File

@@ -129,9 +129,9 @@
<!-- Cancel confirmation dialog -->
<ConfirmDialog
:open="confirmCancelOpen"
title="Cancel attendance?"
message="Your attendance will be permanently cancelled."
confirm-label="Cancel attendance"
title="Cancel RSVP?"
message="The organizer will no longer see you as attending."
confirm-label="Cancel RSVP"
cancel-label="Keep"
@confirm="handleCancelRsvp"
@cancel="confirmCancelOpen = false"