From 9cfceac0601448e2b7cb7139ccbeea50b046424e Mon Sep 17 00:00:00 2001 From: limepotato Date: Wed, 4 Sep 2024 00:46:41 -0600 Subject: [PATCH] kill -> destroy --- locales/en-US.yml | 12 ++++++------ packages/client/src/scripts/get-user-menu.ts | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/locales/en-US.yml b/locales/en-US.yml index 26772bf00..3dde086d5 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -141,11 +141,11 @@ renoteMute: "Mute rebeeps" renoteUnmute: "Unmute rebeeps" block: "Block" unblock: "Unblock" -suspend: "Kill" +suspend: "Destroy" unsuspend: "Revive" blockConfirm: "Are you sure that you want to block this account?" unblockConfirm: "Are you sure that you want to unblock this account?" -suspendConfirm: "Are you sure that you want to kill this account?" +suspendConfirm: "Are you sure that you want to destroy this account?" unsuspendConfirm: "Are you sure that you want to revive this account?" selectList: "Select a list" selectAntenna: "Select an antenna" @@ -259,7 +259,7 @@ noJobs: "There are no jobs" federating: "Federating" blocked: "Blocked" silenced: "Silenced" -suspended: "Killed" +suspended: "Destroyed" all: "All" subscribing: "Subscribing" publishing: "Publishing" @@ -612,10 +612,10 @@ deleteAllFilesConfirm: "Are you sure that you want to delete all files?" removeAllFollowing: "Unfollow all observing creatures" removeAllFollowingDescription: "Executing this unobserves all accounts from {host}. Please run this if the server e.g. no longer exists." -userSuspended: "This creature has been killed." +userSuspended: "This creature has been destroyed." userSilenced: "This creature is silenced." -yourAccountSuspendedTitle: "This account is killed" -yourAccountSuspendedDescription: "This account has been killed due to breaking +yourAccountSuspendedTitle: "This account is destroyed" +yourAccountSuspendedDescription: "This account has been destroyed due to breaking the server's terms of services or similar. Contact the administrator if you would like to know a more detailed reason. Please do not create a new account." menu: "Menu" diff --git a/packages/client/src/scripts/get-user-menu.ts b/packages/client/src/scripts/get-user-menu.ts index 8e578bcc7..eb439464b 100644 --- a/packages/client/src/scripts/get-user-menu.ts +++ b/packages/client/src/scripts/get-user-menu.ts @@ -379,7 +379,7 @@ export function getUserMenu(user, router: Router = mainRouter) { action: toggleSilence, }, { - icon: "ph-knife ph-bold ph-lg", + icon: "ph-hammer ph-bold ph-lg", text: user.isSuspended ? i18n.ts.unsuspend : i18n.ts.suspend, action: toggleSuspend, },