+
+ {{ $t('actions.cancel') }}
+
+ {{ $t('settings.deleteUserAccount.name') }}
+
+
+
+
+
+
+
+
diff --git a/webapp/locales/de.json b/webapp/locales/de.json
index 1ec1bcbb2..8b4416f30 100644
--- a/webapp/locales/de.json
+++ b/webapp/locales/de.json
@@ -640,11 +640,12 @@
"accountDescription": "Sei dir bewusst, dass deine Beiträge und Kommentare für unsere Community wichtig sind. Wenn du sie trotzdem löschen möchtest, musst du sie unten markieren.",
"accountWarning": "Dein Konto, deine Beiträge oder Kommentare kannst du nach dem Löschen WEDER VERWALTEN NOCH WIEDERHERSTELLEN!",
"accountWarningAdmin": "Das Konto, die Beiträge oder Kommentare können nach dem Löschen WEDER VERWALTEN NOCH WIEDERHERGESTELLT WERDEN!",
- "accountWarningIsAdmin": "Achtung! Du bist Admin!!",
+ "accountWarningIsAdmin": "Achtung! Du löschst jetzt ein Benutzerkonto!",
"commentedCount": "Meine {count} Kommentare löschen",
"contributionsCount": "Meine {count} Beiträge löschen",
+ "confirmDeleting": "Benutzerkonto jetzt löschen",
"infoAdmin": "Alle Beiträge und Kommentare des Users werden zusätzlich gelöscht!",
- "name": "Benutzerkonto löschen",
+ "name": "Benutzerkonto löschen",
"pleaseConfirm": "Zerstörerische Aktion! Gib „{confirm}“ ein, um zu bestätigen.",
"success": "Konto erfolgreich gelöscht!"
},
diff --git a/webapp/locales/en.json b/webapp/locales/en.json
index 6e4020783..0a8391ee1 100644
--- a/webapp/locales/en.json
+++ b/webapp/locales/en.json
@@ -640,9 +640,10 @@
"accountDescription": "Be aware that your Posts and Comments are important to our community. If you still choose to delete them, you have to mark them below.",
"accountWarning": "You CAN'T MANAGE and CAN'T RECOVER your Account, Posts, or Comments after deleting your account!",
"accountWarningAdmin": "The account, contributions or comments can NOT BE ADMINISTERED OR RESTORED after deletion!",
- "accountWarningIsAdmin": "Heads up! You are Admin!!",
+ "accountWarningIsAdmin": "Heads up! You are about to delete a user account!",
"commentedCount": "Delete my {count} comments",
"contributionsCount": "Delete my {count} posts",
+ "confirmDeleting": "Delete user account now",
"infoAdmin": "All contributions and comments of the user are additionally deleted!",
"name": "Delete user account",
"pleaseConfirm": "Destructive action! Type “{confirm}” to confirm.",
diff --git a/webapp/pages/profile/_id/_slug.vue b/webapp/pages/profile/_id/_slug.vue
index a5de575f9..ba34ae6a2 100644
--- a/webapp/pages/profile/_id/_slug.vue
+++ b/webapp/pages/profile/_id/_slug.vue
@@ -441,13 +441,7 @@ export default {
this.$store.commit('modal/SET_OPEN', {
name: 'delete',
data: {
- id: userdata.id,
- name: userdata.name,
- slug: userdata.slug,
- avatar: userdata.avatar,
- contributionsCount: userdata.contributionsCount,
- commentedCount: userdata.commentedCount,
- createdAt: userdata.createdAt,
+ userdata: userdata,
},
})
},