Skip to content

Commit

Permalink
Fix code example for similar commands (#1168)
Browse files Browse the repository at this point in the history
Co-authored-by: KnorpelSenf <shtrog@gmail.com>
  • Loading branch information
eikowagenknecht and KnorpelSenf authored Dec 21, 2024
1 parent f323033 commit f82e1c7
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
8 changes: 4 additions & 4 deletions site/docs/es/plugins/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,13 +496,13 @@ bot
.filter(commandNotFound(myCommands))
// Si es así, significa que no fue manejado por ninguno de nuestros comandos.
.use(async (ctx) => {
// Encontramos una coincidencia potencial
if (ctx.commandSuggestion) {
// Encontramos una coincidencia potencial
await ctx.reply(
`Hmm... No conozco ese comando. ¿Te refieres a ${ctx.commandSuggestion}?`,
);
return;
}

// Nada parece acercarse a lo que el usuario escribió
await ctx.reply("Uy... No conozco ese comando :/");
});
Expand All @@ -520,13 +520,13 @@ bot
.filter(commandNotFound(myCommands))
// Si es así, significa que no fue manejado por ninguno de nuestros comandos.
.use(async (ctx) => {
// Encontramos una coincidencia potencial
if (ctx.commandSuggestion) {
// Encontramos una coincidencia potencial
await ctx.reply(
`Hmm... No conozco ese comando. ¿Te refieres a ${ctx.commandSuggestion}?`,
);
return;
}

// Nada parece acercarse a lo que el usuario escribió
await ctx.reply("Uy... No conozco ese comando :/");
});
Expand Down
8 changes: 4 additions & 4 deletions site/docs/id/plugins/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -511,13 +511,13 @@ bot
.filter(commandNotFound(myCommands))
// Jika mengandung perintah, berarti ia tidak ditangani oleh penangan perintah sebelumnya.
.use(async (ctx) => {
// Sarankan perintah yang mirip.
if (ctx.commandSuggestion) {
// Sarankan perintah yang mirip.
await ctx.reply(
`Maaf, saya tidak tahu perintah tersebut. Apakah maksud Anda ${ctx.commandSuggestion}?`,
);
return;
}

// Perintah yang mirip tidak ditemukan.
await ctx.reply("Maaf, saya tidak tahu perintah tersebut.");
});
Expand All @@ -534,13 +534,13 @@ bot
.filter(commandNotFound(myCommands))
// Jika mengandung perintah, berarti ia tidak ditangani oleh penangan perintah sebelumnya.
.use(async (ctx) => {
// Sarankan perintah yang mirip.
if (ctx.commandSuggestion) {
// Sarankan perintah yang mirip.
await ctx.reply(
`Maaf, saya tidak tahu perintah tersebut. Apakah maksud Anda ${ctx.commandSuggestion}?`,
);
return;
}

// Perintah yang mirip tidak ditemukan.
await ctx.reply("Maaf, saya tidak tahu perintah tersebut.");
});
Expand Down
8 changes: 4 additions & 4 deletions site/docs/plugins/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -492,13 +492,13 @@ bot
.filter(commandNotFound(myCommands))
// If so, that means it wasn't handled by any of our commands.
.use(async (ctx) => {
// We found a potential match
if (ctx.commandSuggestion) {
// We found a potential match
await ctx.reply(
`Hmm... I don't know that command. Did you mean ${ctx.commandSuggestion}?`,
);
return;
}

// Nothing seems to come close to what the user typed
await ctx.reply("Oops... I don't know that command :/");
});
Expand All @@ -516,13 +516,13 @@ bot
.filter(commandNotFound(myCommands))
// If so, that means it wasn't handled by any of our commands.
.use(async (ctx) => {
// We found a potential match
if (ctx.commandSuggestion) {
// We found a potential match
await ctx.reply(
`Hmm... I don't know that command. Did you mean ${ctx.commandSuggestion}?`,
);
return;
}

// Nothing seems to come close to what the user typed
await ctx.reply("Oops... I don't know that command :/");
});
Expand Down
8 changes: 4 additions & 4 deletions site/docs/ru/plugins/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -498,13 +498,13 @@ bot
.filter(commandNotFound(myCommands))
// Если да, значит, она не была обработана нашими командами
.use(async (ctx) => {
// Мы нашли возможное совпадение
if (ctx.commandSuggestion) {
// Мы нашли возможное совпадение
await ctx.reply(
`Хм... Я не знаю такой команды. Возможно, вы имели в виду ${ctx.commandSuggestion}?`,
);
return;
}

// Похоже, ничего не похоже на то, что ввёл пользователь
await ctx.reply("Упс... Я не знаю такой команды :/");
});
Expand All @@ -522,13 +522,13 @@ bot
.filter(commandNotFound(myCommands))
// Если да, значит, она не была обработана нашими командами
.use(async (ctx) => {
// Мы нашли возможное совпадение
if (ctx.commandSuggestion) {
// Мы нашли возможное совпадение
await ctx.reply(
`Хм... Я не знаю такой команды. Возможно, вы имели в виду ${ctx.commandSuggestion}?`,
);
return;
}

// Похоже, ничего не похоже на то, что ввёл пользователь
await ctx.reply("Упс... Я не знаю такой команды :/");
});
Expand Down
8 changes: 4 additions & 4 deletions site/docs/uk/plugins/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -501,13 +501,13 @@ bot
.filter(commandNotFound(myCommands))
// Якщо так, то це означає, що її не обробив жоден з наших обробників команд.
.use(async (ctx) => {
// Ми знайшли потенційний збіг.
if (ctx.commandSuggestion) {
// Ми знайшли потенційний збіг.
await ctx.reply(
`Хм... Я не знаю цієї команди. Може, ви мали на увазі ${ctx.commandSuggestion}?`,
);
return;
}

// Здається, ніщо не збігається з тим, що ввів користувач.
await ctx.reply("Упс... Я не знаю цієї команди. :/");
});
Expand All @@ -524,13 +524,13 @@ bot
.filter(commandNotFound(myCommands))
// Якщо так, то це означає, що її не обробив жоден з наших обробників команд.
.use(async (ctx) => {
// Ми знайшли потенційний збіг.
if (ctx.commandSuggestion) {
// Ми знайшли потенційний збіг.
await ctx.reply(
`Хм... Я не знаю цієї команди. Може, ви мали на увазі ${ctx.commandSuggestion}?`,
);
return;
}

// Здається, ніщо не збігається з тим, що ввів користувач.
await ctx.reply("Упс... Я не знаю цієї команди. :/");
});
Expand Down
8 changes: 4 additions & 4 deletions site/docs/zh/plugins/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -493,13 +493,13 @@ bot
.filter(commandNotFound(myCommands))
// 如果有,则意味着我们的任何指令都没有处理它。
.use(async (ctx) => {
// 我们找到了潜在的匹配对象
if (ctx.commandSuggestion) {
// 我们找到了潜在的匹配对象
await ctx.reply(
`Hmm... I don't know that command. Did you mean ${ctx.commandSuggestion}?`,
);
return;
}

// 似乎没有什么与用户输入的内容相近
await ctx.reply("Oops... I don't know that command :/");
});
Expand All @@ -517,13 +517,13 @@ bot
.filter(commandNotFound(myCommands))
// 如果有,则意味着我们的任何指令都没有处理它。
.use(async (ctx) => {
// 我们找到了潜在的匹配对象
if (ctx.commandSuggestion) {
// 我们找到了潜在的匹配对象
await ctx.reply(
`Hmm... I don't know that command. Did you mean ${ctx.commandSuggestion}?`,
);
return;
}

// 似乎没有什么与用户输入的内容相近
await ctx.reply("Oops... I don't know that command :/");
});
Expand Down

0 comments on commit f82e1c7

Please sign in to comment.