Add Stripe Account ID localization to profile page in English, Spanish, and French. Update warning message for deletion in English.

This commit is contained in:
2025-04-18 04:43:45 -04:00
parent e21020e5aa
commit ebe6fb70a2
4 changed files with 5 additions and 2 deletions

View File

@@ -11,11 +11,12 @@
"name": "Name", "name": "Name",
"slug": "URL", "slug": "URL",
"title": "Title", "title": "Title",
"stripeAccountId": "Stripe Account ID",
"socialnetwork": "Social Networks" "socialnetwork": "Social Networks"
}, },
"danger": { "danger": {
"title": "Danger Zone", "title": "Danger Zone",
"warning": "CAUTION: This will delete your creator page and suspend all tips and donations.", "warning": "WARNING: This will delete your creator page and suspend all tips and donations.",
"delete": "DELETE PAGE", "delete": "DELETE PAGE",
"restore": "RESTORE PAGE" "restore": "RESTORE PAGE"
} }

View File

@@ -11,6 +11,7 @@
"name": "Nombre", "name": "Nombre",
"slug": "URL", "slug": "URL",
"title": "Título", "title": "Título",
"stripeAccountId": "ID de cuenta Stripe",
"socialnetwork": "Redes sociales" "socialnetwork": "Redes sociales"
}, },
"danger": { "danger": {

View File

@@ -11,6 +11,7 @@
"name": "Nom", "name": "Nom",
"slug": "URL", "slug": "URL",
"title": "Titre", "title": "Titre",
"stripeAccountId": "ID du compte Stripe",
"socialnetwork": "Réseaux sociaux" "socialnetwork": "Réseaux sociaux"
}, },
"danger": { "danger": {

View File

@@ -201,7 +201,7 @@ const closeDialog = () => {
<!-- STRIPE --> <!-- STRIPE -->
<button class="action" @click="openDialog('ChangeStripeIdDialog')"> <button class="action" @click="openDialog('ChangeStripeIdDialog')">
<span class="label">Stripe Account ID</span> <span class="label">{{ t('creator.stripeAccountId') }}</span>
<span class="value">{{ creatorProfileStore.creator.stripeId }}</span> <span class="value">{{ creatorProfileStore.creator.stripeId }}</span>
<span class="chevron"><v-icon>mdi-chevron-right</v-icon></span> <span class="chevron"><v-icon>mdi-chevron-right</v-icon></span>
</button> </button>