diff --git a/commands/!DISABLED/ban.js b/commands/!DISABLED/ban.js index 1dad1d88..bf1bcb64 100644 --- a/commands/!DISABLED/ban.js +++ b/commands/!DISABLED/ban.js @@ -56,7 +56,7 @@ class Ban extends BaseCommand { moderationPosition = interaction.member.roles.highest.position; if (member.user.bot) return interaction.error("misc:BOT_USER", null, { ephemeral: true, edit: true }); - if (member.id === interaction.member.id) return interaction.error("moderation/ban:YOURSELF", null, { ephemeral: true, edit: true }); + if (member.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF", null, { ephemeral: true, edit: true }); if (interaction.guild.ownerId !== interaction.member.id && !(moderationPosition > memberPosition) && member.bannable) return interaction.error("moderation/ban:SUPERIOR", null, { ephemeral: true, edit: true }); await member.ban({ diff --git a/commands/!DISABLED/kick.js b/commands/!DISABLED/kick.js index 18c1b9d5..86b1e0cd 100644 --- a/commands/!DISABLED/kick.js +++ b/commands/!DISABLED/kick.js @@ -56,7 +56,7 @@ class Kick extends BaseCommand { moderationPosition = interaction.member.roles.highest.position; if (member.user.bot) return interaction.error("misc:BOT_USER", null, { ephemeral: true, edit: true }); - if (member.id === interaction.member.id) return interaction.error("moderation/kick:YOURSELF", null, { ephemeral: true, edit: true }); + if (member.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF", null, { ephemeral: true, edit: true }); if (interaction.guild.ownerId !== interaction.member.id && !(moderationPosition > memberPosition) && member.kickable) return interaction.error("moderation/kick:SUPERIOR", null, { ephemeral: true, edit: true }); await member.kick({ diff --git a/commands/Economy/marry.js b/commands/Economy/marry.js index 5b854e0d..32cb636b 100644 --- a/commands/Economy/marry.js +++ b/commands/Economy/marry.js @@ -44,7 +44,7 @@ class Marry extends BaseCommand { const member = interaction.options.getMember("user"); if (member.user.bot) return interaction.error("economy/marry:BOT_USER"); - if (member.id === interaction.member.id) return interaction.error("economy/marry:YOURSELF"); + if (member.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF"); const otherUserData = await client.getUserData(member.id); if (otherUserData.lover) return interaction.error("economy/marry:ALREADY_MARRIED_USER", { user: member.toString() }); diff --git a/commands/Economy/pay.js b/commands/Economy/pay.js index d79b127a..575578dd 100644 --- a/commands/Economy/pay.js +++ b/commands/Economy/pay.js @@ -50,7 +50,7 @@ class Pay extends BaseCommand { const memberData = interaction.data.member, otherMember = interaction.options.getMember("user"); if (otherMember.user.bot) return interaction.error("economy/pay:BOT_USER"); - if (otherMember.id === interaction.member.id) return interaction.error("economy/pay:YOURSELF"); + if (otherMember.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF"); const amount = interaction.options.getInteger("amount"); if (amount <= 0) return interaction.error("misc:MORE_THAN_ZERO"); diff --git a/commands/Economy/rep.js b/commands/Economy/rep.js index 760304c0..550127cf 100644 --- a/commands/Economy/rep.js +++ b/commands/Economy/rep.js @@ -49,7 +49,7 @@ class Rep extends BaseCommand { const user = interaction.options.getUser("user"); if (user.bot) return interaction.error("economy/rep:BOT_USER"); - if (user.id === interaction.user.id) return interaction.error("economy/rep:YOURSELF"); + if (user.id === interaction.user.id) return interaction.error("misc:CANT_YOURSELF"); const toWait = Math.floor((Date.now() + 12 * 60 * 60 * 1000) / 1000); // 12 hours if (!userData.cooldowns) userData.cooldowns = {}; diff --git a/commands/Economy/rob.js b/commands/Economy/rob.js index 7890c431..b263331b 100644 --- a/commands/Economy/rob.js +++ b/commands/Economy/rob.js @@ -50,7 +50,7 @@ class Rob extends BaseCommand { const memberData = interaction.data.member, otherMember = interaction.options.getMember("user"); if (otherMember.user.bot) return interaction.error("economy/pay:BOT_USER"); - if (otherMember.id === interaction.member.id) return interaction.error("economy/rob:YOURSELF"); + if (otherMember.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF"); const amount = interaction.options.getInteger("amount"); if (amount <= 0) return interaction.error("misc:MORE_THAN_ZERO"); diff --git a/commands/Moderation/clearwarns.js b/commands/Moderation/clearwarns.js index ba13d17e..95209493 100644 --- a/commands/Moderation/clearwarns.js +++ b/commands/Moderation/clearwarns.js @@ -39,6 +39,7 @@ class Clearwarns extends BaseCommand { */ async execute(client, interaction) { const member = interaction.options.getMember("user"); + if (member.user.id === interaction.user.id) return interaction.error("misc:CANT_YOURSELF"); const memberData = await client.getMemberData(member.id, interaction.guildId); diff --git a/commands/Moderation/untimeout.js b/commands/Moderation/untimeout.js index 80ace0c9..46b0dfd6 100644 --- a/commands/Moderation/untimeout.js +++ b/commands/Moderation/untimeout.js @@ -44,7 +44,7 @@ class Ban extends BaseCommand { timedout = member.isCommunicationDisabled(); if (member.user.bot) return interaction.error("misc:BOT_USER", null, { ephemeral: true, edit: true }); - if (member.id === interaction.member.id) return interaction.error("moderation/untimeout:YOURSELF", null, { ephemeral: true, edit: true }); + if (member.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF", null, { ephemeral: true, edit: true }); if (!timedout) return interaction.error("moderation/untimeout:NOT_TIMEDOUT", null, { ephemeral: true, edit: true }); await member.timeout(null); diff --git a/commands/Moderation/warn.c.js b/commands/Moderation/warn.c.js index 85998c40..b3a4a0e6 100644 --- a/commands/Moderation/warn.c.js +++ b/commands/Moderation/warn.c.js @@ -29,7 +29,7 @@ class WarnContext extends BaseCommand { moderationPosition = interaction.member.roles.highest.position; if (member.user.bot) return interaction.error("misc:BOT_USER", null, { ephemeral: true }); - if (member.id === interaction.member.id) return interaction.error("moderation/warn:YOURSELF", null, { ephemeral: true }); + if (member.id === interaction.member.id) return interaction.error("misc:CANT_YOURSELF", null, { ephemeral: true }); if (interaction.guild.ownerId !== interaction.member.id && !(moderationPosition > memberPosition)) return interaction.error("moderation/warn:SUPERIOR", null, { ephemeral: true }); const memberData = await client.getMemberData(member.id, interaction.guildId); diff --git a/helpers/tictactoe.js b/helpers/tictactoe.js index d5730587..c8076587 100644 --- a/helpers/tictactoe.js +++ b/helpers/tictactoe.js @@ -47,7 +47,7 @@ async function tictactoe(interaction, options = {}) { if (opponent.id == (interaction.user ? interaction.user : interaction.author).id) return interaction.reply({ - content: interaction.translate("fun/tictactoe:YOURSELF"), + content: interaction.translate("misc:CANT_YOURSELF"), ephemeral: true, }); } else if (!interaction.commandId) { @@ -66,7 +66,7 @@ async function tictactoe(interaction, options = {}) { if (opponent.id === interaction.member.id) return interaction.reply({ - content: interaction.translate("fun/tictactoe:YOURSELF"), + content: interaction.translate("misc:CANT_YOURSELF"), }); } diff --git a/languages/en-US/economy/marry.json b/languages/en-US/economy/marry.json index d5115c84..1938c526 100644 --- a/languages/en-US/economy/marry.json +++ b/languages/en-US/economy/marry.json @@ -5,7 +5,6 @@ "BOT_USER": "Bots are forever alone ;(", "ALREADY_MARRIED": "You are already married! You can divorce using the `divorce` command", "ALREADY_MARRIED_USER": "You're too late! {{user}} is already married", - "YOURSELF": "You cannot marry yourself", "REQUEST_AUTHOR_TO_AMEMBER": "You have already sent a proposal to {{user}}", "REQUEST_AMEMBER_TO_AUTHOR": "{{user}} has sent you a proposal! You can accept or decline it (or wait for the proposal to expire)", "REQUEST_AMEMBER_TO_MEMBER": "{{secondUser}} has already sent a proposal to {{firstUser}}", diff --git a/languages/en-US/economy/pay.json b/languages/en-US/economy/pay.json index 85a6c8f4..a49f2db3 100644 --- a/languages/en-US/economy/pay.json +++ b/languages/en-US/economy/pay.json @@ -3,7 +3,6 @@ "USAGE": "[@user] [amount]", "EXAMPLES": "pay user:@jonny_bro amount:1000", "BOT_USER": "Bots don't need money B)", - "YOURSELF": "You cannot transfer credits to yourself", "INVALID_AMOUNT": "Please specify an amount", "ENOUGH_MONEY": "You don't have {{amount}}", "SUCCESS": "You have sent {{amount}} to {{user}}!" diff --git a/languages/en-US/economy/rep.json b/languages/en-US/economy/rep.json index d3f45a79..cd1de752 100644 --- a/languages/en-US/economy/rep.json +++ b/languages/en-US/economy/rep.json @@ -4,6 +4,5 @@ "EXAMPLES": "rep user:@jonny_bro", "COOLDOWN": "You must wait **{{time}}** before using it again", "BOT_USER": "Bots are already cool B)", - "YOURSELF": "You cannot give reputation to yourself", "SUCCESS": "You have given a reputation point to {{user}}" } \ No newline at end of file diff --git a/languages/en-US/economy/rob.json b/languages/en-US/economy/rob.json index 48f43bfb..6219a43f 100644 --- a/languages/en-US/economy/rob.json +++ b/languages/en-US/economy/rob.json @@ -3,7 +3,6 @@ "USAGE": "[@user] [amount]", "EXAMPLES": "rob user:@jonny_bro amount:100", "BOT_USER": "You cannot rob a bot", - "YOURSELF": "You cannot rob yourself", "NOT_ENOUGH_AUTHOR": "You must have at least {{moneyMin}} to rob this user (you currently have {{moneyCurrent}})", "NOT_ENOUGH_MEMBER": "You cannot rob {{user}} because they don't have that many credits", "COOLDOWN": "🕵️ {{user}} is under protection... Try again later", diff --git a/languages/en-US/fun/tictactoe.json b/languages/en-US/fun/tictactoe.json index 3ef15c04..3b3759c0 100644 --- a/languages/en-US/fun/tictactoe.json +++ b/languages/en-US/fun/tictactoe.json @@ -3,7 +3,6 @@ "USAGE": "[@user]", "EXAMPLES": "tictactoe user:@jonny_bro", "BOT_USER": "You cannot play against a bot!", - "YOURSELF": "You cannot play against yourself!", "INVITE_USER": "<@{{opponent}}>, you have been invited to play Tic Tac Toe!", "REQUEST_SEND": "Request sent to <@{{opponent}}>", "REQUEST_WAIT": "Waiting for {{user}} to respond", diff --git a/languages/en-US/misc.json b/languages/en-US/misc.json index 992fbc90..5ac9a231 100644 --- a/languages/en-US/misc.json +++ b/languages/en-US/misc.json @@ -1,5 +1,6 @@ { - "BOT_USER": "You cannot do this with the bot.", + "BOT_USER": "You can't use this command on bots.", + "CANT_YOURSELF": "You can't use this command on yourself.", "CANT_DM": "I cannot DM you. Please check your privacy settings.", "FORCE_STOP": "The game has been forcibly ended, {{user}}, nobody won (the number was {{number}}).", "LEVEL_UP": "You have reached the next level! Your new level is: **{{level}}**", diff --git a/languages/en-US/moderation/ban.json b/languages/en-US/moderation/ban.json index 0f429e89..12a92d98 100644 --- a/languages/en-US/moderation/ban.json +++ b/languages/en-US/moderation/ban.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Bans a user", "USAGE": "[@user] [reason]", "EXAMPLES": "ban user:@jonny_bro reason:Violation of server rules", - "YOURSELF": "You cannot ban yourself", "SUPERIOR": "You cannot ban this user (or I am unable to do so)", "SUCCESS": "{{user}} has been banned for **{{reason}}**" } \ No newline at end of file diff --git a/languages/en-US/moderation/kick.json b/languages/en-US/moderation/kick.json index 66667609..bd9074bc 100644 --- a/languages/en-US/moderation/kick.json +++ b/languages/en-US/moderation/kick.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Kicks a user", "USAGE": "[@user] [reason]", "EXAMPLES": "kick user:@jonny_bro reason:Come back tomorrow when I stop getting offended", - "YOURSELF": "You cannot kick yourself", "SUPERIOR": "You cannot kick this user (or I am unable to do so)", "SUCCESS": "{{user}} has been kicked for **{{reason}}**" } \ No newline at end of file diff --git a/languages/en-US/moderation/untimeout.json b/languages/en-US/moderation/untimeout.json index 1ac0f2cf..bac1f0db 100644 --- a/languages/en-US/moderation/untimeout.json +++ b/languages/en-US/moderation/untimeout.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Removes timeout from a user", "USAGE": "[@user]", "EXAMPLES": "untimeout user:@jonny_bro", - "YOURSELF": "You cannot remove timeout from yourself", "NOT_TIMEDOUT": "This user is not currently timed out", "SUCCESS": "Timeout for {{user}} has been removed" } \ No newline at end of file diff --git a/languages/en-US/moderation/warn.json b/languages/en-US/moderation/warn.json index d379e324..23236a72 100644 --- a/languages/en-US/moderation/warn.json +++ b/languages/en-US/moderation/warn.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Issues a warning to a user", "USAGE": "Right-click on the user > Applications > warn (With JaBa avatar)", "EXAMPLES": "warn", - "YOURSELF": "You cannot issue a warning to yourself", "SUPERIOR": "You cannot issue a warning to this user", "MODAL_TITLE": "Issue a warning to {{nickname}}", "MODAL_REASON": "Reason for the warning", diff --git a/languages/ru-RU/economy/marry.json b/languages/ru-RU/economy/marry.json index 152b42af..62cc743b 100644 --- a/languages/ru-RU/economy/marry.json +++ b/languages/ru-RU/economy/marry.json @@ -5,7 +5,6 @@ "BOT_USER": "Боты вечно одиноки ;(", "ALREADY_MARRIED": "Вы уже состоите в браке! Вы можете развестить с помощью команды `divorce`", "ALREADY_MARRIED_USER": "Вы опоздали! {{user}} уже состоит в браке", - "YOURSELF": "Вы не можете жениться на себе", "REQUEST_AUTHOR_TO_AMEMBER": "Вы уже отправили предложение {{user}}", "REQUEST_AMEMBER_TO_AUTHOR": "{{user}} отправил(а) вам предложение! Вы можете отказать или согласиться (либо дождаться истечения срока предложения)", "REQUEST_AMEMBER_TO_MEMBER": "{{secondUser}} уже отправил(а) предложение {{firstUser}}", diff --git a/languages/ru-RU/economy/pay.json b/languages/ru-RU/economy/pay.json index 968aee88..0f3cae74 100644 --- a/languages/ru-RU/economy/pay.json +++ b/languages/ru-RU/economy/pay.json @@ -3,7 +3,6 @@ "USAGE": "[@user] [amount]", "EXAMPLES": "pay user:@jonny_bro amount:1000", "BOT_USER": "Ботам не нужны деньги B)", - "YOURSELF": "Вы не можете перевести кредиты самому себе", "INVALID_AMOUNT": "Укажите сумму", "ENOUGH_MONEY": "У вас нет {{amount}}", "SUCCESS": "Вы отправили {{user}} {{amount}}!" diff --git a/languages/ru-RU/economy/rep.json b/languages/ru-RU/economy/rep.json index e3b308fb..dbe1a30e 100644 --- a/languages/ru-RU/economy/rep.json +++ b/languages/ru-RU/economy/rep.json @@ -4,6 +4,5 @@ "EXAMPLES": "rep user:@jonny_bro", "COOLDOWN": "Вы должны подождать **{{time}}** до следующего использования", "BOT_USER": "Боты и так крутые B)", - "YOURSELF": "Вы не можете дать очко репутации самому себе", "SUCCESS": "Вы дали очко репутации {{user}}" } \ No newline at end of file diff --git a/languages/ru-RU/economy/rob.json b/languages/ru-RU/economy/rob.json index 4cab2b4f..c63ecd07 100644 --- a/languages/ru-RU/economy/rob.json +++ b/languages/ru-RU/economy/rob.json @@ -3,7 +3,6 @@ "USAGE": "[@user] [amount]", "EXAMPLES": "rob user:@jonny_bro amount:100", "BOT_USER": "Вы не можете ограбить бота", - "YOURSELF": "Вы не можете ограбить себя", "NOT_ENOUGH_AUTHOR": "У вас должно быть хотя бы {{moneyMin}}, чтобы грабить данного пользователя (сейчас у вас {{moneyCurrent}})", "NOT_ENOUGH_MEMBER": "Вы не можете ограбить {{user}}, потому что у него нет столько кредитов", "COOLDOWN": "🕵️ {{user}} под защитой.... Попробуйте позже", diff --git a/languages/ru-RU/fun/tictactoe.json b/languages/ru-RU/fun/tictactoe.json index 1b0fa83f..7d89d758 100644 --- a/languages/ru-RU/fun/tictactoe.json +++ b/languages/ru-RU/fun/tictactoe.json @@ -3,7 +3,6 @@ "USAGE": "[@user]", "EXAMPLES": "tictactoe user:@jonny_bro", "BOT_USER": "Вы не можете играть против бота!", - "YOURSELF": "Вы не можете играть с самим собой!", "INVITE_USER": "<@{{opponent}}>, вам предложили сыграть в крестики-нолики!", "REQUEST_SEND": "Запрос отправлен <@{{opponent}}>", "REQUEST_WAIT": "Ожидаю ответа {{user}}", diff --git a/languages/ru-RU/misc.json b/languages/ru-RU/misc.json index b8715eb9..4863620f 100644 --- a/languages/ru-RU/misc.json +++ b/languages/ru-RU/misc.json @@ -1,5 +1,6 @@ { - "BOT_USER": "Вы не можете сделать это с ботом", + "BOT_USER": "Вы не можете использовать эту команду на боте", + "CANT_YOURSELF": "Вы не можете использовать эту команду на себе", "CANT_DM": "Я не могу отправить Вам личное сообщение, проверьте настройки конфиденциальности", "FORCE_STOP": "Игра принудительно окончена {{user}}, никто не победил (загаданное число - {{number}})", "LEVEL_UP": "Вы достигли следующего уровня! Ваш новый уровень: **{{level}}**", diff --git a/languages/ru-RU/moderation/ban.json b/languages/ru-RU/moderation/ban.json index 32cde2a3..c48add2f 100644 --- a/languages/ru-RU/moderation/ban.json +++ b/languages/ru-RU/moderation/ban.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Забанить пользователя", "USAGE": "[@user] [reason]", "EXAMPLES": "ban user:@jonny_bro reason:Нарушение правил сервера", - "YOURSELF": "Вы не можете забанить себя", "SUPERIOR": "Вы не можете забанить данного пользователя (или я не могу сделать этого)", "SUCCESS": "{{user}} был забанен по причине **{{reason}}**" } \ No newline at end of file diff --git a/languages/ru-RU/moderation/kick.json b/languages/ru-RU/moderation/kick.json index 5250eac9..dee6a3c6 100644 --- a/languages/ru-RU/moderation/kick.json +++ b/languages/ru-RU/moderation/kick.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Кикнуть пользователя", "USAGE": "[@user] [reason]", "EXAMPLES": "kick user:@jonny_bro reason:Зайдёшь завтра когда я перестану обижаться", - "YOURSELF": "Вы не можете кикнуть себя", "SUPERIOR": "Вы не можете кикнуть данного пользователя (или я не могу сделать этого)", "SUCCESS": "{{user}} был кикнут по причине **{{reason}}**" } \ No newline at end of file diff --git a/languages/ru-RU/moderation/untimeout.json b/languages/ru-RU/moderation/untimeout.json index b4bea9a1..0861e4af 100644 --- a/languages/ru-RU/moderation/untimeout.json +++ b/languages/ru-RU/moderation/untimeout.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Снять таймаут с пользователя", "USAGE": "[@user]", "EXAMPLES": "untimeout user:@jonny_bro", - "YOURSELF": "Вы не можете снять с себя таймаут", "NOT_TIMEDOUT": "Данный пользователь не находится в таймауте", "SUCCESS": "Таймаут с {{user}} снят" } \ No newline at end of file diff --git a/languages/ru-RU/moderation/warn.json b/languages/ru-RU/moderation/warn.json index 7956e5ef..a3caa011 100644 --- a/languages/ru-RU/moderation/warn.json +++ b/languages/ru-RU/moderation/warn.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Выдать предупреждение пользователю", "USAGE": "ПКМ на пользователя > Приложения > warn (С аватаркой JaBa)", "EXAMPLES": "warn", - "YOURSELF": "Вы не можете подать жалобу на себя", "SUPERIOR": "Вы не можете подать жалобу на данного пользователя", "MODAL_TITLE": "Выдать предупреждение {{nickname}}", "MODAL_REASON": "Причина предупреждения", diff --git a/languages/uk-UA/economy/marry.json b/languages/uk-UA/economy/marry.json index 3d4665c4..79f51831 100644 --- a/languages/uk-UA/economy/marry.json +++ b/languages/uk-UA/economy/marry.json @@ -5,7 +5,6 @@ "BOT_USER": "Боти завжди самотні ;(", "ALREADY_MARRIED": "Ви вже одружені! Ви можете розвести за допомогою команди `divorce`", "ALREADY_MARRIED_USER": "Ви запізнилися! {{user}} вже одружений", - "YOURSELF": "Ви не можете одружитися з собою", "REQUEST_AUTHOR_TO_AMEMBER": "Ви вже надіслали пропозицію {{user}}", "REQUEST_AMEMBER_TO_AUTHOR": "{{user}} надіслала вам пропозицію! Ви можете відмовити або погодитися (або дочекатися закінчення терміну пропозиції)", "REQUEST_AMEMBER_TO_MEMBER": "{{secondUser}} вже надіслала пропозицію {{firstUser}}", diff --git a/languages/uk-UA/economy/pay.json b/languages/uk-UA/economy/pay.json index 420b0012..f3e8039f 100644 --- a/languages/uk-UA/economy/pay.json +++ b/languages/uk-UA/economy/pay.json @@ -3,7 +3,6 @@ "USAGE": "[@user] [amount]", "EXAMPLES": "pay user:@jonny_bro amount:1000", "BOT_USER": "Ботам не потрібні гроші B)", - "YOURSELF": "Ви не можете переказати кредити самому собі", "INVALID_AMOUNT": "Вкажіть суму", "ENOUGH_MONEY": "У вас немає {{amount}}", "SUCCESS": "Ви відправили {{user}} {{amount}}" diff --git a/languages/uk-UA/economy/rep.json b/languages/uk-UA/economy/rep.json index a4c6a23c..d6b79362 100644 --- a/languages/uk-UA/economy/rep.json +++ b/languages/uk-UA/economy/rep.json @@ -4,6 +4,5 @@ "EXAMPLES": "rep user:@jonny_bro", "COOLDOWN": "Ви повинні почекати **{{time}}** до наступного використання", "BOT_USER": "Боти і так круті B)", - "YOURSELF": "Ви не можете дати поінт репутації самому собі", "SUCCESS": "Ви дали поінт репутації {{user}}" } \ No newline at end of file diff --git a/languages/uk-UA/economy/rob.json b/languages/uk-UA/economy/rob.json index d2ddff4f..e7aa5a5b 100644 --- a/languages/uk-UA/economy/rob.json +++ b/languages/uk-UA/economy/rob.json @@ -3,7 +3,6 @@ "USAGE": "[@user] [amount]", "EXAMPLES": "rob user:@jonny_bro amount:100", "BOT_USER": "Ви не можете пограбувати бота", - "YOURSELF": "Ви не можете пограбувати себе", "NOT_ENOUGH_AUTHOR": "У вас має бути хоча б {{moneyMin}}, щоб грабувати цього користувача (зараз у вас {{moneyCurrent}})", "NOT_ENOUGH_MEMBER": "Ви не можете пограбувати {{user}}, тому що у нього немає стільки кредитів", "COOLDOWN": "🕵️ {{user}} під захистом.... Спробуйте пізніше", diff --git a/languages/uk-UA/fun/tictactoe.json b/languages/uk-UA/fun/tictactoe.json index 27fcf37c..a1145a9e 100644 --- a/languages/uk-UA/fun/tictactoe.json +++ b/languages/uk-UA/fun/tictactoe.json @@ -3,7 +3,6 @@ "USAGE": "[@user]", "EXAMPLES": "tictactoe user:@jonny_bro", "BOT_USER": "Ви не можете грати проти бота", - "YOURSELF": "Ви не можете грати із самим собою", "INVITE_USER": "<@{{opponent}}>, вам запропонували зіграти в хрестики-нуліки", "REQUEST_SEND": "Запит надіслано <@{{opponent}}>", "REQUEST_WAIT": "Чекаю на відповідь <@{{user}}>", diff --git a/languages/uk-UA/misc.json b/languages/uk-UA/misc.json index e7f35961..ffc02d03 100644 --- a/languages/uk-UA/misc.json +++ b/languages/uk-UA/misc.json @@ -1,7 +1,8 @@ { - "BOT_USER": "Ви не можете зробити це з ботом", - "CANT_DM": "Я не можу надіслати Вам особисте повідомлення, перевірте налаштування конфіденційності.", - "FORCE_STOP": "Гра примусово закінчена, {{user}}, ніхто не переміг (загадане число - {{number}}).", + "BOT_USER": "Ви не можете використовувати цю команду на роботі", + "CANT_YOURSELF": "Ви не можете використовувати цю команду на собі", + "CANT_DM": "Я не можу надіслати Вам особисте повідомлення, перевірте налаштування конфіденційності", + "FORCE_STOP": "Гра примусово закінчена, {{user}}, ніхто не переміг (загадане число - {{number}})", "LEVEL_UP": "Ви досягли наступного рівня! Ваш новий рівень: **{{level}}**", "GUILD_ONLY": "Цю команду можна використовувати лише на сервері", "HELLO_SERVER": "Привіт! Всі мої команди доступні через **/** Використовуйте , щоб отримати список команд", diff --git a/languages/uk-UA/moderation/ban.json b/languages/uk-UA/moderation/ban.json index 4366834a..5ba31f09 100644 --- a/languages/uk-UA/moderation/ban.json +++ b/languages/uk-UA/moderation/ban.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Забанити користувача", "USAGE": "[@user] [reason]", "EXAMPLES": "ban user:@jonny_bro reason:Порушення правил сервера", - "YOURSELF": "Ви не можете забанити себе", "SUPERIOR": "Ви не можете забанити даного користувача (або я не можу цього зробити)", "SUCCESS": "{{user}} був забанений з причини **{{reason}}**" } \ No newline at end of file diff --git a/languages/uk-UA/moderation/kick.json b/languages/uk-UA/moderation/kick.json index b36f6a77..acd8e0ed 100644 --- a/languages/uk-UA/moderation/kick.json +++ b/languages/uk-UA/moderation/kick.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Вигнати користувача", "USAGE": "[@user] [reason]", "EXAMPLES": "kick user:@jonny_bro reason:Зайдеш завтра коли я перестану ображатись", - "YOURSELF": "Ви не можете вигнати себе", "SUPERIOR": "Ви не можете вигнати даного користувача (або я не можу цього зробити)", "SUCCESS": "{{user}} був вигнаний з причини **{{reason}}**" } \ No newline at end of file diff --git a/languages/uk-UA/moderation/untimeout.json b/languages/uk-UA/moderation/untimeout.json index 9ecd4f6a..5f87ab5a 100644 --- a/languages/uk-UA/moderation/untimeout.json +++ b/languages/uk-UA/moderation/untimeout.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Зняти таймаут з користувача", "USAGE": "[@user]", "EXAMPLES": "untimeout user:@jonny_bro", - "YOURSELF": "Ви не можете зняти таймаут з себе", "NOT_TIMEDOUT": "Даний користувач не перебуває у таймауті", "SUCCESS": "Таймаут з {{user}} знятий" } \ No newline at end of file diff --git a/languages/uk-UA/moderation/warn.json b/languages/uk-UA/moderation/warn.json index a89f4c62..b7adfdd6 100644 --- a/languages/uk-UA/moderation/warn.json +++ b/languages/uk-UA/moderation/warn.json @@ -2,7 +2,6 @@ "DESCRIPTION": "Видати попередження користувачеві", "USAGE": "ПКМ на користувача > Програми > warn (З аватаркою JaBa)", "EXAMPLES": "warn", - "YOURSELF": "Ви не можете подати скаргу на себе", "SUPERIOR": "Вы не можете податы скаргу на даного користувача", "MODAL_TITLE": "Видати попередження {{nickname}}", "MODAL_REASON": "Причина попередження",