Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
fix(lang): change "ubanSuccess" to "unbanSuccess" (#1075)
Browse files Browse the repository at this point in the history
  • Loading branch information
MoustacheOff authored Nov 27, 2022
1 parent b1290ee commit 53ca478
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lang/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"description": "Un-ban someone from the server",
"slashMemberDescription": "Who do you like to un-ban?",
"slashReasonDescription": "Un-ban reason",
"ubanSuccess": "**{user}** has been **`UN-BANNED`** from the server.",
"unbanSuccess": "**{user}** has been **`UN-BANNED`** from the server.",
"unbanFail": "Unable to **`UN-BAN`** member, because: `{message}`",
"unbannedByString": "Un-banned by: {author}",
"usage": "{prefix}unban <id> [reason]"
Expand Down
2 changes: 1 addition & 1 deletion lang/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"description": "Desbanea a alguien del servidor",
"slashMemberDescription": "¿A quién quisieras desbanear?",
"slashReasonDescription": "Razón de desbaneo",
"ubanSuccess": "**{user}** ha sido **`DESBANEADO`** del servidor.",
"unbanSuccess": "**{user}** ha sido **`DESBANEADO`** del servidor.",
"unbanFail": "No se pudo **`DESBANEAR`** al miembro, razón: `{message}`",
"unbannedByString": "Desbaneado por: {author}",
"usage": "{prefix}unban <id> [razón]"
Expand Down
2 changes: 1 addition & 1 deletion lang/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"description": "Débannir quelqu'un du serveur",
"slashMemberDescription": "Qui voudrez-vous débannir ?",
"slashReasonDescription": "Raison du débanissement",
"ubanSuccess": "**{user}** a été **`DÉBANNI`** du serveur.",
"unbanSuccess": "**{user}** a été **`DÉBANNI`** du serveur.",
"unbanFail": "Impossible de **`DÉBANNIR`** ce membre, parce que : `{message}`",
"unbannedByString": "Débanni par : {author}",
"usage": "{prefix}unban <id> [raison]"
Expand Down
2 changes: 1 addition & 1 deletion lang/id.json
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
"description": "Unban seseorang dari server",
"slashMemberDescription": "Siapa yang ingin anda un-ban?",
"slashReasonDescription": "Alasan un-ban",
"ubanSuccess": "**{user}** telah di **`UN-BAN`** dari server ini.",
"unbanSuccess": "**{user}** telah di **`UN-BAN`** dari server ini.",
"unbanFail": "Tidak dapat **`UN-BAN`** member, dikarenakan: `{message}`",
"usage": "{prefix}unban <id> [alasan]"
},
Expand Down
2 changes: 1 addition & 1 deletion src/commands/moderation/UnBanCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class UnBanCommand extends BaseCommand {

return ctx.reply({
embeds: [
createEmbed("success", i18n.__mf("commands.moderation.unban.ubanSuccess", { user: user.tag }), true)
createEmbed("success", i18n.__mf("commands.moderation.unban.unbanSuccess", { user: user.tag }), true)
]
});
}
Expand Down

0 comments on commit 53ca478

Please sign in to comment.