diff --git a/src/commands/yugipedia.ts b/src/commands/yugipedia.ts index ed5b1de..28ad5e6 100644 --- a/src/commands/yugipedia.ts +++ b/src/commands/yugipedia.ts @@ -1,7 +1,7 @@ import { SlashCommandStringOption } from "@discordjs/builders"; import { RESTPostAPIApplicationCommandsJSONBody } from "discord-api-types/v10"; import { AutocompleteInteraction, ChatInputCommandInteraction } from "discord.js"; -import { Got } from "got"; +import { Got, TimeoutError } from "got"; import { LRUMap } from "mnemonist"; import { inject, injectable } from "tsyringe"; import { c, t, useLocale } from "ttag"; @@ -100,6 +100,7 @@ export class YugiCommand extends AutocompletableCommand { content = cached; this.#logger.info(serialiseInteraction(interaction, { page, cached })); } else { + const searchURL = ``; try { const start = Date.now(); const response = await this.search(page); @@ -107,11 +108,15 @@ export class YugiCommand extends AutocompletableCommand { this.#logger.info(serialiseInteraction(interaction, { page, latency, response })); useLocale(lang); const link = response[3][0]; - content = link || t`Could not find a Yugipedia page named \`${page}\`.`; + content = link || t`Could not find a [Yugipedia page named \`${page}\`](${searchURL}).`; } catch (error) { this.#logger.warn(serialiseInteraction(interaction, { page }), error); useLocale(lang); - content = t`Something went wrong searching Yugipedia for \`${page}\`.`; + if (error instanceof TimeoutError) { + content = t`Took too long [searching Yugipedia for \`${page}\`](${searchURL}). Is the site up?`; + } else { + content = t`Something went wrong [searching Yugipedia for \`${page}\`](${searchURL}). Is the site up?`; + } } } const reply = await interaction.reply({ content, fetchReply: true }); diff --git a/translations/de.po b/translations/de.po index 6bee3ec..2749076 100644 --- a/translations/de.po +++ b/translations/de.po @@ -79,70 +79,70 @@ msgstr "" msgid "Placeholder ID: ${ card.fake_password }" msgstr "" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "" -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "" @@ -261,11 +261,6 @@ msgstr "" msgid "Total latency: ${ latency } ms" msgstr "" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "" - #: src\events\message-ping.ts:47 msgid "Free and open source _Yu-Gi-Oh!_ bot" msgstr "" @@ -320,11 +315,11 @@ msgstr "" msgid "Upload to YGOPRODECK" msgstr "" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "" @@ -344,13 +339,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "" @@ -360,11 +355,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "" @@ -392,11 +387,6 @@ msgstr "" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -435,7 +425,7 @@ msgstr "" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -458,6 +448,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "" + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -871,8 +876,8 @@ msgctxt "command-option" msgid "input-language" msgstr "" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -931,8 +936,8 @@ msgctxt "command-option" msgid "password" msgstr "" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -966,17 +971,17 @@ msgctxt "command-option" msgid "vendor" msgstr "" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "" @@ -991,18 +996,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1062,7 +1067,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1083,7 +1088,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1149,22 +1154,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "" @@ -1189,28 +1194,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1255,7 +1255,7 @@ msgctxt "command-name" msgid "locale" msgstr "" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "" @@ -1265,7 +1265,7 @@ msgctxt "command-name" msgid "price" msgstr "" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "" @@ -1325,7 +1325,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "" @@ -1335,7 +1335,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "" @@ -1371,65 +1371,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/es.po b/translations/es.po index 56787c3..8d89940 100644 --- a/translations/es.po +++ b/translations/es.po @@ -79,70 +79,70 @@ msgstr "" msgid "Placeholder ID: ${ card.fake_password }" msgstr "" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "" -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "" @@ -261,11 +261,6 @@ msgstr "" msgid "Total latency: ${ latency } ms" msgstr "" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "" - #: src\events\message-ping.ts:47 msgid "Free and open source _Yu-Gi-Oh!_ bot" msgstr "" @@ -320,11 +315,11 @@ msgstr "" msgid "Upload to YGOPRODECK" msgstr "" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "" @@ -344,13 +339,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "" @@ -360,11 +355,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "" @@ -392,11 +387,6 @@ msgstr "" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -435,7 +425,7 @@ msgstr "" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -458,6 +448,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "" + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -871,8 +876,8 @@ msgctxt "command-option" msgid "input-language" msgstr "" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -931,8 +936,8 @@ msgctxt "command-option" msgid "password" msgstr "" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -966,17 +971,17 @@ msgctxt "command-option" msgid "vendor" msgstr "" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "" @@ -991,18 +996,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1062,7 +1067,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1083,7 +1088,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1149,22 +1154,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "" @@ -1189,28 +1194,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1255,7 +1255,7 @@ msgctxt "command-name" msgid "locale" msgstr "" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "" @@ -1265,7 +1265,7 @@ msgctxt "command-name" msgid "price" msgstr "" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "" @@ -1325,7 +1325,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "" @@ -1335,7 +1335,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "" @@ -1371,65 +1371,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/fr.po b/translations/fr.po index 8c6e457..b78dc10 100644 --- a/translations/fr.po +++ b/translations/fr.po @@ -79,70 +79,70 @@ msgstr "" msgid "Placeholder ID: ${ card.fake_password }" msgstr "" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "" -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "" @@ -261,11 +261,6 @@ msgstr "" msgid "Total latency: ${ latency } ms" msgstr "" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "" - #: src\events\message-ping.ts:47 msgid "Free and open source _Yu-Gi-Oh!_ bot" msgstr "" @@ -320,11 +315,11 @@ msgstr "" msgid "Upload to YGOPRODECK" msgstr "" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "" @@ -344,13 +339,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "" @@ -360,11 +355,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "" @@ -392,11 +387,6 @@ msgstr "" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -435,7 +425,7 @@ msgstr "" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -458,6 +448,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "" + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -871,8 +876,8 @@ msgctxt "command-option" msgid "input-language" msgstr "" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -931,8 +936,8 @@ msgctxt "command-option" msgid "password" msgstr "" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -966,17 +971,17 @@ msgctxt "command-option" msgid "vendor" msgstr "" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "" @@ -991,18 +996,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1062,7 +1067,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1083,7 +1088,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1149,22 +1154,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "" @@ -1189,28 +1194,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1255,7 +1255,7 @@ msgctxt "command-name" msgid "locale" msgstr "" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "" @@ -1265,7 +1265,7 @@ msgctxt "command-name" msgid "price" msgstr "" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "" @@ -1325,7 +1325,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "" @@ -1335,7 +1335,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "" @@ -1371,65 +1371,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/it.po b/translations/it.po index 9f19508..7dd4da5 100644 --- a/translations/it.po +++ b/translations/it.po @@ -79,70 +79,70 @@ msgstr "" msgid "Placeholder ID: ${ card.fake_password }" msgstr "" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "" -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "" @@ -261,11 +261,6 @@ msgstr "" msgid "Total latency: ${ latency } ms" msgstr "" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "" - #: src\events\message-ping.ts:47 msgid "Free and open source _Yu-Gi-Oh!_ bot" msgstr "" @@ -320,11 +315,11 @@ msgstr "" msgid "Upload to YGOPRODECK" msgstr "" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "" @@ -344,13 +339,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "" @@ -360,11 +355,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "" @@ -392,11 +387,6 @@ msgstr "" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -435,7 +425,7 @@ msgstr "" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -458,6 +448,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "" + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -871,8 +876,8 @@ msgctxt "command-option" msgid "input-language" msgstr "" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -931,8 +936,8 @@ msgctxt "command-option" msgid "password" msgstr "" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -966,17 +971,17 @@ msgctxt "command-option" msgid "vendor" msgstr "" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "" @@ -991,18 +996,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1062,7 +1067,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1083,7 +1088,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1149,22 +1154,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "" @@ -1189,28 +1194,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1255,7 +1255,7 @@ msgctxt "command-name" msgid "locale" msgstr "" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "" @@ -1265,7 +1265,7 @@ msgctxt "command-name" msgid "price" msgstr "" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "" @@ -1325,7 +1325,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "" @@ -1335,7 +1335,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "" @@ -1371,65 +1371,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/ja.po b/translations/ja.po index 5d0c6f9..24ceb45 100644 --- a/translations/ja.po +++ b/translations/ja.po @@ -79,70 +79,70 @@ msgstr "未発売" msgid "Placeholder ID: ${ card.fake_password }" msgstr "" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "🛠️ このコマンドは作成中です。" -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "📨 このボットへのご意見を[イシュートラッカー](https://github.com/DawnbrandBots/bastion-bot) か [ディスコードサーバ](https://discord.gg/4aFuPyuE96) に届けてもらえると嬉しいです!" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "このボットの開発をサポートしてくれると嬉しいです!" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "Bastionが稼働し続けられるようにしましょう!" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "Bastionが稼働し続けられるのはみなさんのおかけです!" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "Bastionがお好き?一緒に開発すればもっと好きになりますよ!" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "Bastionがお好き?一緒に開発しませんか?" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "Bastionがお役に立ちましたか?このボットの開発をサポートしてくれると嬉しいです!" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "Bastionがお役に立ちましたか?Bastionが稼働し続けられるようにしましょう!" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "Bastionがお役に立ちましたか?一緒に開発しませんか?" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "Bastionがお好き?Bastionが稼働し続けられるようにしましょう!" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "Bastionがお好き?このボットの開発をサポートしてくれると嬉しいです!" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "お探しの情報は見つかりましたか?このボットの開発をサポートしてくれると嬉しいです!" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "`${ input }`に一致するカードは見つかりませんでした!" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "`${ name }`のカード画像は見つかりませんでした!" @@ -257,11 +257,6 @@ msgstr "平均 WebSocket ping(新インスタンス): ${ ping } ms" msgid "Total latency: ${ latency } ms" msgstr "総レイテンシー: ${ latency } ms" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "`${ page }` という名前のYugipediaのページが見つかりませんでした。" - #: src\events\message-ping.ts:47 msgid "Free and open source _Yu-Gi-Oh!_ bot" msgstr "自由でオープンソースな _Yu-Gi-Oh!_ ボット" @@ -316,11 +311,11 @@ msgstr "`${ name }` の値段を見つけられませんでした!" msgid "Upload to YGOPRODECK" msgstr "YGOPRODECKにアップロード" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "💬 翻訳が存在しませんか?" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "このボットの翻訳プロジェクトへは上のリンクから。" @@ -352,13 +347,13 @@ msgstr "" "\n" "💬 翻訳がされていない場所がありますか? [GitHub](https://github.com/DawnbrandBots/bastion-bot)で翻訳を手伝ってくれると嬉しいです!" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "検索タイプ: ${ localisedType }" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "検索言語: **${ localisedInputLanguage }** (${ inputLanguage })。で言語設定のデフォルトを確認し、で設定できます。" @@ -368,11 +363,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "⚠️ Pingをもらいましたが、そのチャンネルにはこのボットに権限がありません!" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "サーバ管理者の方に[この問題](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)の対応をお願いいたします。" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "⚠️ そのチャンネルではこのボットに権限がありません!" @@ -398,11 +393,6 @@ msgstr "サーバー全体への上書き言語設定: ${ guildOverride }" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "`${ searchTerm }`でYGOPRODECKを検索中に何かエラーが起こったようです。" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "`${ page }`でYugipediaを検索中に何かエラーが起こったようです。" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -441,7 +431,7 @@ msgstr "**マスターデュエルレアリティ**: ${ rarityIcon } ${ localize msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -464,6 +454,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "[`${ page }` という名前のYugipediaのページ](${ searchURL })が見つかりませんでした。" + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "[`${ page }`でYugipediaを検索中](${ searchURL })に何かエラーが起こったようです。" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -877,8 +882,8 @@ msgctxt "command-option" msgid "input-language" msgstr "入力用言語" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -937,8 +942,8 @@ msgctxt "command-option" msgid "password" msgstr "パスワード" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -972,17 +977,17 @@ msgctxt "command-option" msgid "vendor" msgstr "販売店" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "検索" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "おみくじ" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "イラスト" @@ -997,18 +1002,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1068,7 +1073,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "この名称のカードのイラストを表示します" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1089,7 +1094,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "このパスワードのカードのイラストを表示します" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1155,22 +1160,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "カード名称の英語名" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "この名称のラッシュデュエルカードの情報を表示します" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "この公式カードDBのIDを持つラッシュデュエルカードの情報を表示します" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "ラッシュデュエル用カードのおみくじ" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "ラッシュデュエル用カードのイラストを表示します" @@ -1195,28 +1200,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1261,7 +1261,7 @@ msgctxt "command-name" msgid "locale" msgstr "げんごせってい" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "おみくじ" @@ -1271,7 +1271,7 @@ msgctxt "command-name" msgid "price" msgstr "かかく" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "らっしゅ" @@ -1331,7 +1331,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "このチャンネル(あるいはサーバー)のBastionのロケールを確認(あるいは変更)します。" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "遊戯王カードをランダムに表示します。" @@ -1341,7 +1341,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "カードの値段を表示します!" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "ラッシュデュエルのカード情報を探します。" @@ -1377,65 +1377,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "ディスコードのデフォルト" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/ko.po b/translations/ko.po index 687e298..4ce8ef0 100644 --- a/translations/ko.po +++ b/translations/ko.po @@ -79,70 +79,70 @@ msgstr "미발매" msgid "Placeholder ID: ${ card.fake_password }" msgstr "플레이스홀더 ID: ${ card.fake_password }" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "🛠️ 이 명령은 개발 중입니다." -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "📨 [문제 추적기](https://github.com/DawnbrandBots/bastion-bot) 또는 [지원 서버](https://discord.gg/4aFuPyuE96)로 피드백을 보내주십시오!" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "저희를 지원해 주세요!" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "Bastion을 온라인 상태로 유지하는 것을 도와 주세요!" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "저희가 Bastion을 온라인 상태로 유지하는 것을 도와 주세요!" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "Bastion이 도움이 되었나요? 저희를 지원해 주세요!" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "Bastion이 도움이 되었나요? 여러분의 지원이 필요해요!" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "Bastion이 유용하다고 생각했나요? 저희를 지원해 주시는 건 어떤가요?" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "Bastion이 유용하다고 생각했나요? 온라인 상태로 유지하는 것을 도와 주세요!" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "Bastion이 유용하다고 생각했나요? 여러분의 지원이 필요해요!" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "Bastion을 잘 사용하고 계신가요? 온라인 상태로 유지하는 것을 도와 주세요!" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "Bastion을 잘 사용하고 계신가요? 저희를 지원해 주시는 건 어떤가요?" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "찾으시려던 것을 찾으셨나요? 저희를 지원해 주시는 건 어떤가요?" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "`${ input }`에 일치하는 카드를 찾을 수 없습니다!" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "`${ name }`의 카드 일러스트를 찾을 수 없습니다!" @@ -213,11 +213,6 @@ msgstr "평균 WebSocket 핑 (새로운 인스턴스): ${ ping } ms" msgid "Total latency: ${ latency } ms" msgstr "총 지연 시간: ${ latency } ms" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "`${ page }`라는 이름의 Yugipedia 페이지를 찾을 수 없습니다." - #: src\commands\deck.ts:205 #, javascript-format msgid "${ counts.Monster } Monster" @@ -316,11 +311,11 @@ msgstr "`${ name }`의 가격을 찾을 수 없습니다!" msgid "Upload to YGOPRODECK" msgstr "YGOPRODECK에 업로드" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "💬 번역이 존재합니까?" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "위 링크에서 Bastion 번역을 도와주세요." @@ -340,13 +335,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "검색 종류: ${ localisedType }" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "검색 언어: **${ localisedInputLanguage }** (${ inputLanguage }). 의 기본값을 확인하고 를 설정합니다." @@ -356,11 +351,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "⚠️ 당신은 저를 부르셨지만, 해당 채널에서 권한이 없습니다!" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "서버 관리자에게 문의하십시오 [문제 해결](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "⚠️ 해당 채널에서 권한이 없습니다!" @@ -386,11 +381,6 @@ msgstr "서버 전체 로케일 재정의 : ${ guildOverride }" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "YGOPRODECK을 위해 `${ searchTerm }`을(를) 검색하는 데 문제가 발생하였습니다." -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "Yugipedia를 위해 `${ page }`을(를) 검색하는 데 문제가 발생하였습니다." - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -429,7 +419,7 @@ msgstr "**레어리티 (MD)**: ${ rarityIcon } ${ localizedRarity }" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -452,6 +442,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "[`${ page }`라는 이름의 Yugipedia 페이지를](${ searchURL }) 찾을 수 없습니다." + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "[Yugipedia를 위해 `${ page }`을(를) 검색하는](${ searchURL }) 데 문제가 발생하였습니다." + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -865,8 +870,8 @@ msgctxt "command-option" msgid "input-language" msgstr "입력언어" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -925,8 +930,8 @@ msgctxt "command-option" msgid "password" msgstr "패스워드" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -960,17 +965,17 @@ msgctxt "command-option" msgid "vendor" msgstr "상점" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "검색" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "무작위" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "일러스트" @@ -985,18 +990,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1056,7 +1061,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "이 이름으로 카드에 대한 일러스트를 표시합니다." -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1077,7 +1082,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "이 공식 데이터베이스 ID로 카드의 일러스트를 표시합니다." -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1143,22 +1148,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "찾고 있는 카드명은 영어입니다." -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "이 이름으로 러시 듀얼 카드에 대한 모든 정보를 찾습니다." -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "이 공식 데이터베이스 ID로 러시 듀얼 카드에 대한 모든 정보를 찾습니다." -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "무작위로 러시 듀얼 카드를 가져옵니다." -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "이 이름으로 러시 듀얼 카드에 대한 일러스트만 표시합니다." @@ -1183,28 +1188,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1249,7 +1249,7 @@ msgctxt "command-name" msgid "locale" msgstr "로케일" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "무작위" @@ -1259,7 +1259,7 @@ msgctxt "command-name" msgid "price" msgstr "가격" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "러시듀얼" @@ -1319,7 +1319,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "이 채널 또는 서버에 대한 Bastion의 로케일을 확인하거나 설정합니다." -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "유희왕 카드를 무작위로 받으십시오." @@ -1329,7 +1329,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "카드 가격 표시" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "러시 듀얼 카드 정보 찾기" @@ -1365,65 +1365,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "디스코드 기본값" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/pt.po b/translations/pt.po index 59d0519..a9536c9 100644 --- a/translations/pt.po +++ b/translations/pt.po @@ -79,70 +79,70 @@ msgstr "" msgid "Placeholder ID: ${ card.fake_password }" msgstr "" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "🛠️ Este comando está em desenvolvimento." -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "📨 Por favor, envie um feedback para o [nosso Github](https://github.com/DawnbrandBots/bastion-bot)ou no nosso [servidor no Discord](https://discord.gg/4aFuPyuE96)!" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "Por favor, considere nos apoiar!" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "Ajude a manter o Bastion online!" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "Por favor, ajude a manter o Bastion online!" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "Bastion foi útil? Nós precisamos do seu apoio!" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "Você acha que o Bastion foi útil? Conside nos apoiar!" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "Você acha que o Bastion foi útil? Ajude a mantê-lo online!" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "Você acha que o Bastion foi útil? Nós precisamos do seu apoio!" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "Você está gostando do Bastion? Ajude a mantê-lo online!" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "Você está gostando do Bastion? Considere nos apoiar!" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "Você encontrou o que procurava? Considere nos apoiar!" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "Não foi possível encontrar uma carta compatível com `${ input }`!" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "Não foi possível encontrar uma arte para `${ name }`!" @@ -261,11 +261,6 @@ msgstr "" msgid "Total latency: ${ latency } ms" msgstr "Latência total: ${ latency } ms" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "Não foi possível encontrar uma página na Yugipedia chamada `${ page }`." - #: src\events\message-ping.ts:47 msgid "Free and open source _Yu-Gi-Oh!_ bot" msgstr "Um bot de _Yu-Gi-Oh!_ gratuito e de código aberto" @@ -320,11 +315,11 @@ msgstr "" msgid "Upload to YGOPRODECK" msgstr "" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "" @@ -344,13 +339,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "" @@ -360,11 +355,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "" @@ -392,11 +387,6 @@ msgstr "" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -435,7 +425,7 @@ msgstr "" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -458,6 +448,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "Não foi possível encontrar [uma página na Yugipedia chamada `${ page }`](${ searchURL })." + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -871,8 +876,8 @@ msgctxt "command-option" msgid "input-language" msgstr "idioma-de-entrada" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -931,8 +936,8 @@ msgctxt "command-option" msgid "password" msgstr "" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -966,17 +971,17 @@ msgctxt "command-option" msgid "vendor" msgstr "" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "" @@ -991,18 +996,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1062,7 +1067,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1083,7 +1088,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1149,22 +1154,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "" @@ -1189,28 +1194,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1255,7 +1255,7 @@ msgctxt "command-name" msgid "locale" msgstr "" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "" @@ -1265,7 +1265,7 @@ msgctxt "command-name" msgid "price" msgstr "" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "" @@ -1325,7 +1325,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "" @@ -1335,7 +1335,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "" @@ -1371,65 +1371,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/zh-CN.po b/translations/zh-CN.po index 20e487c..10742c7 100644 --- a/translations/zh-CN.po +++ b/translations/zh-CN.po @@ -79,70 +79,70 @@ msgstr "未发行" msgid "Placeholder ID: ${ card.fake_password }" msgstr "假卡密: ${ card.fake_password }" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "🛠️ 这个指令正在开发中" -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "📨 如有意见或建议请反馈至[GitHub issue](https://github.com/DawnbrandBots/bastion-bot)或者[Discord服务器](https://discord.gg/4aFuPyuE96)!" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "请考虑捐助我们!" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "帮帮Bastion吧,宝宝快饿死了" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "请帮帮Bastion吧,宝宝真的快饿死了" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "Bastion有用么?请考虑捐助我们!" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "Bastion有用么?我们需要你的支持!" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "你觉得Bastion好用么?请考虑捐助我们!" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "你觉得Bastion好用么?那帮帮TA吧,孩子快饿死了" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "你觉得Bastion好用么?我们需要你的支持!" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "你觉得Bastion好用么?那帮帮TA吧,孩子快饿死了" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "觉得Bastion怎么样?请考虑捐助我们!" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "找到你要的东西了吗?请考虑捐助我们!" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "查无此卡:`${ input }`" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "没找到`${ name }`的卡图!" @@ -207,11 +207,6 @@ msgstr "" msgid "Total latency: ${ latency } ms" msgstr "延迟${ latency }ms" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "Yugipedia上找不到`${ page }`" - #: src\commands\deck.ts:205 #, javascript-format msgid "${ counts.Monster } Monster" @@ -328,11 +323,11 @@ msgstr "" msgid "Upload to YGOPRODECK" msgstr "上传至YGOPRODECK" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "💬缺少翻译?" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "在以上的网址帮忙翻译Bastion" @@ -352,13 +347,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "搜索类型:${ localisedType }" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "" @@ -368,11 +363,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "" @@ -386,11 +381,6 @@ msgstr "" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -429,7 +419,7 @@ msgstr "**稀有度 (Master Duel)**: ${ rarityIcon } ${ localizedRarity }" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -452,6 +442,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "[Yugipedia上找不到`${ page }`](${ searchURL })" + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "[Yugipedia上搜索`${ page }`](${ searchURL })太慢了,在线吗?" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "[Yugipedia上搜索`${ page }`](${ searchURL })出错了,在线吗?" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -865,8 +870,8 @@ msgctxt "command-option" msgid "input-language" msgstr "输入语言" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -925,8 +930,8 @@ msgctxt "command-option" msgid "password" msgstr "" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -960,17 +965,17 @@ msgctxt "command-option" msgid "vendor" msgstr "" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "" @@ -985,18 +990,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1056,7 +1061,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1077,7 +1082,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1143,22 +1148,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "" @@ -1183,28 +1188,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1249,7 +1249,7 @@ msgctxt "command-name" msgid "locale" msgstr "" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "" @@ -1259,7 +1259,7 @@ msgctxt "command-name" msgid "price" msgstr "" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "" @@ -1319,7 +1319,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "" @@ -1329,7 +1329,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "" @@ -1365,65 +1365,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr "" diff --git a/translations/zh-TW.po b/translations/zh-TW.po index 575e621..83e21f7 100644 --- a/translations/zh-TW.po +++ b/translations/zh-TW.po @@ -79,70 +79,70 @@ msgstr "未發行" msgid "Placeholder ID: ${ card.fake_password }" msgstr "假卡密: ${ card.fake_password }" -#: src\utils.ts:44 +#: src\utils.ts:45 msgid "🛠️ This command is in development." msgstr "🛠️ 這個指令正在開發中" -#: src\utils.ts:45 +#: src\utils.ts:46 msgid "📨 Please send feedback to [our issue tracker](https://github.com/DawnbrandBots/bastion-bot) or the [support server](https://discord.gg/4aFuPyuE96)!" msgstr "📨 如有意見或建議請反饋至[GitHub issue](https://github.com/DawnbrandBots/bastion-bot)或者[Discord服務器](https://discord.gg/4aFuPyuE96)!" -#: src\utils.ts:56 +#: src\utils.ts:57 msgid "Please consider supporting us!" msgstr "請考慮捐助我們!" -#: src\utils.ts:57 +#: src\utils.ts:58 msgid "Help keep Bastion online!" msgstr "幫幫Bastion吧,寶寶快餓死了" -#: src\utils.ts:58 +#: src\utils.ts:59 msgid "Please help keep Bastion online!" msgstr "請幫幫Bastion吧,寶寶真的快餓死了" -#: src\utils.ts:59 +#: src\utils.ts:60 msgid "Was Bastion helpful? Consider supporting us!" msgstr "Bastion有用麼?請考慮捐助我們!" -#: src\utils.ts:60 +#: src\utils.ts:61 msgid "Was Bastion helpful? We need your support!" msgstr "Bastion有用麼?我們需要你的支持!" -#: src\utils.ts:61 +#: src\utils.ts:62 msgid "Did you find Bastion useful? Consider supporting us!" msgstr "你覺得Bastion好用麼?請考慮捐助我們!" -#: src\utils.ts:62 +#: src\utils.ts:63 msgid "Did you find Bastion useful? Help keep it online!" msgstr "你覺得Bastion好用麼?那幫幫TA吧,孩子快餓死了" -#: src\utils.ts:63 +#: src\utils.ts:64 msgid "Did you find Bastion useful? We need your support!" msgstr "你覺得Bastion好用麼?我們需要你的支持!" -#: src\utils.ts:64 +#: src\utils.ts:65 msgid "Enjoy Bastion? Help keep it online!" msgstr "你覺得Bastion好用麼?那幫幫TA吧,孩子快餓死了" -#: src\utils.ts:65 +#: src\utils.ts:66 msgid "Enjoy Bastion? Consider supporting us!" msgstr "覺得Bastion怎麼樣?請考慮捐助我們!" -#: src\utils.ts:66 +#: src\utils.ts:67 msgid "Found what you were looking for? Consider supporting us!" msgstr "找到你要的東西了嗎?請考慮捐助我們!" #: src\commands\art.ts:63 #: src\commands\price.ts:132 -#: src\commands\rush-duel.ts:171 -#: src\commands\rush-duel.ts:202 +#: src\commands\rush-duel.ts:170 +#: src\commands\rush-duel.ts:200 #: src\commands\search.ts:64 -#: src\events\message-search.ts:265 +#: src\events\message-search.ts:272 #, javascript-format msgid "Could not find a card matching `${ input }`!" msgstr "查無此卡:`${ input }`" #: src\commands\art.ts:70 -#: src\commands\rush-duel.ts:235 +#: src\commands\rush-duel.ts:231 #, javascript-format msgid "Could not find art for `${ name }`!" msgstr "沒找到`${ name }`的卡圖!" @@ -207,11 +207,6 @@ msgstr "" msgid "Total latency: ${ latency } ms" msgstr "延遲${ latency }ms" -#: src\commands\yugipedia.ts:106 -#, javascript-format -msgid "Could not find a Yugipedia page named `${ page }`." -msgstr "Yugipedia上找不到`${ page }`" - #: src\commands\deck.ts:205 #, javascript-format msgid "${ counts.Monster } Monster" @@ -328,11 +323,11 @@ msgstr "" msgid "Upload to YGOPRODECK" msgstr "上傳至YGOPRODECK" -#: src\events\message-search.ts:271 +#: src\events\message-search.ts:278 msgid "💬 Translations missing?" msgstr "💬缺少翻譯?" -#: src\events\message-search.ts:272 +#: src\events\message-search.ts:279 msgid "Help translate Bastion at the links above." msgstr "在以上的網址幫忙翻譯Bastion" @@ -352,13 +347,13 @@ msgid "" "💬 Translations missing? Help translate Bastion on [GitHub](https://github.com/DawnbrandBots/bastion-bot)." msgstr "" -#: src\events\message-search.ts:263 -#: src\events\message-search.ts:302 +#: src\events\message-search.ts:270 +#: src\events\message-search.ts:309 #, javascript-format msgid "Search type: ${ localisedType }" msgstr "搜索類型:${ localisedType }" -#: src\events\message-search.ts:242 +#: src\events\message-search.ts:249 #, javascript-format msgid "Search language: **${ localisedInputLanguage }** (${ inputLanguage }). Check defaults with and configure with " msgstr "" @@ -368,11 +363,11 @@ msgid "⚠️ You pinged me, but I am missing permissions in the channel!" msgstr "" #: src\events\message-ping.ts:96 -#: src\events\message-search.ts:340 +#: src\events\message-search.ts:347 msgid "Please have a server administrator [fix this](https://github.com/DawnbrandBots/bastion-bot#discord-permissions)." msgstr "" -#: src\events\message-search.ts:337 +#: src\events\message-search.ts:344 msgid "⚠️ I am missing permissions in the channel!" msgstr "" @@ -386,11 +381,6 @@ msgstr "" msgid "Something went wrong searching YGOPRODECK for `${ searchTerm }`." msgstr "" -#: src\commands\yugipedia.ts:110 -#, javascript-format -msgid "Something went wrong searching Yugipedia for `${ page }`." -msgstr "" - #: src\rush-duel.ts:49 #, javascript-format msgid "[Official Konami DB](${ official }) | [Rulings (Japanese)](${ rulings }) | [Yugipedia](${ yugipedia }) | [RushCard](${ rushcard })" @@ -429,7 +419,7 @@ msgstr "**稀有度 (Master Duel)**: ${ rarityIcon } ${ localizedRarity }" msgid "Using ${ searchTrigger }, you can search for Rush Duel cards directly in messages without autocomplete" msgstr "" -#: src\events\message-search.ts:304 +#: src\events\message-search.ts:311 #, javascript-format msgid "Could not find a Rush Duel card matching `${ input }`!" msgstr "" @@ -452,6 +442,21 @@ msgstr "" msgid "Locale for your direct messages reset to Discord default. Your Discord setting is ${ interaction.locale }." msgstr "" +#: src\commands\yugipedia.ts:111 +#, javascript-format +msgid "Could not find a [Yugipedia page named `${ page }`](${ searchURL })." +msgstr "[Yugipedia上找不到`${ page }`](${ searchURL })" + +#: src\commands\yugipedia.ts:116 +#, javascript-format +msgid "Took too long [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "[Yugipedia上搜索`${ page }`](${ searchURL })太慢了,在線嗎?" + +#: src\commands\yugipedia.ts:118 +#, javascript-format +msgid "Something went wrong [searching Yugipedia for `${ page }`](${ searchURL }). Is the site up?" +msgstr "[Yugipedia上搜索`${ page }`](${ searchURL })出錯了,在線嗎?" + #: src\card.ts:40 msgctxt "monster-type-race" msgid "Normal" @@ -865,8 +870,8 @@ msgctxt "command-option" msgid "input-language" msgstr "輸入語言" -#: src\commands\rush-duel.ts:67 -#: src\commands\rush-duel.ts:79 +#: src\commands\rush-duel.ts:66 +#: src\commands\rush-duel.ts:78 #: src\locale.ts:156 #: src\locale.ts:174 #: src\locale.ts:190 @@ -925,8 +930,8 @@ msgctxt "command-option" msgid "password" msgstr "" -#: src\commands\rush-duel.ts:72 -#: src\events\message-search.ts:301 +#: src\commands\rush-duel.ts:71 +#: src\events\message-search.ts:308 #: src\locale.ts:185 msgctxt "command-option" msgid "konami-id" @@ -960,17 +965,17 @@ msgctxt "command-option" msgid "vendor" msgstr "" -#: src\commands\rush-duel.ts:62 +#: src\commands\rush-duel.ts:61 msgctxt "command-option" msgid "search" msgstr "" -#: src\commands\rush-duel.ts:84 +#: src\commands\rush-duel.ts:83 msgctxt "command-option" msgid "random" msgstr "" -#: src\commands\rush-duel.ts:89 +#: src\commands\rush-duel.ts:88 msgctxt "command-option" msgid "art" msgstr "" @@ -985,18 +990,18 @@ msgctxt "command-option" msgid "strategies" msgstr "" -#: src\commands\metagame.ts:234 -#: src\commands\metagame.ts:274 +#: src\commands\metagame.ts:226 +#: src\commands\metagame.ts:266 msgctxt "command-option" msgid "format" msgstr "" -#: src\commands\metagame.ts:240 +#: src\commands\metagame.ts:232 msgctxt "command-option" msgid "cards" msgstr "" -#: src\commands\metagame.ts:310 +#: src\commands\metagame.ts:302 msgctxt "command-option" msgid "date-range" msgstr "" @@ -1056,7 +1061,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this name." msgstr "" -#: src\commands\rush-duel.ts:68 +#: src\commands\rush-duel.ts:67 #: src\locale.ts:157 msgctxt "command-option-description" msgid "Card name, fuzzy matching supported." @@ -1077,7 +1082,7 @@ msgctxt "command-option-description" msgid "Display the art for the card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:80 +#: src\commands\rush-duel.ts:79 #: src\locale.ts:191 msgctxt "command-option-description" msgid "Konami's official card database identifier." @@ -1143,22 +1148,22 @@ msgctxt "command-option-description" msgid "The English name of the card you're looking for." msgstr "" -#: src\commands\rush-duel.ts:63 +#: src\commands\rush-duel.ts:62 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this name." msgstr "" -#: src\commands\rush-duel.ts:74 +#: src\commands\rush-duel.ts:73 msgctxt "command-option-description" msgid "Find all information for the Rush Duel card with this official database ID." msgstr "" -#: src\commands\rush-duel.ts:85 +#: src\commands\rush-duel.ts:84 msgctxt "command-option-description" msgid "Get a random Rush Duel card." msgstr "" -#: src\commands\rush-duel.ts:90 +#: src\commands\rush-duel.ts:89 msgctxt "command-option-description" msgid "Display just the art for the Rush Duel card with this name." msgstr "" @@ -1183,28 +1188,23 @@ msgctxt "command-option-description" msgid "The new default language to use for user-installed Bastion." msgstr "" -#: src\commands\metagame.ts:212 +#: src\commands\metagame.ts:211 msgctxt "command-option-description" msgid "Show the top competitive strategies in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:214 -msgctxt "command-option-description" -msgid "Show the top competitive strategies in tournaments." -msgstr "" - -#: src\commands\metagame.ts:235 -#: src\commands\metagame.ts:275 +#: src\commands\metagame.ts:227 +#: src\commands\metagame.ts:267 msgctxt "command-option-description" msgid "Game region." msgstr "" -#: src\commands\metagame.ts:242 +#: src\commands\metagame.ts:234 msgctxt "command-option-description" msgid "Show the most popular cards in tournaments and the Master Duel ranked ladder." msgstr "" -#: src\commands\metagame.ts:312 +#: src\commands\metagame.ts:304 msgctxt "command-option-description" msgid "Limit card usage statistics to this date range. Has no effect for Master Duel." msgstr "" @@ -1249,7 +1249,7 @@ msgctxt "command-name" msgid "locale" msgstr "" -#: src\commands\random.ts:43 +#: src\commands\random.ts:44 msgctxt "command-name" msgid "random" msgstr "" @@ -1259,7 +1259,7 @@ msgctxt "command-name" msgid "price" msgstr "" -#: src\commands\rush-duel.ts:57 +#: src\commands\rush-duel.ts:56 msgctxt "command-name" msgid "rush-duel" msgstr "" @@ -1319,7 +1319,7 @@ msgctxt "command-description" msgid "Check or set Bastion's locale for this channel or server." msgstr "" -#: src\commands\random.ts:44 +#: src\commands\random.ts:45 msgctxt "command-description" msgid "Get a random Yu-Gi-Oh! card." msgstr "" @@ -1329,7 +1329,7 @@ msgctxt "command-description" msgid "Display the price for a card!" msgstr "" -#: src\commands\rush-duel.ts:58 +#: src\commands\rush-duel.ts:57 msgctxt "command-description" msgid "Find information on Rush Duel cards." msgstr "" @@ -1365,65 +1365,65 @@ msgctxt "command-option-choice" msgid "Discord default" msgstr "" -#: src\commands\metagame.ts:219 -#: src\commands\metagame.ts:251 +#: src\commands\metagame.ts:217 +#: src\commands\metagame.ts:243 msgctxt "command-option-choice" msgid "TCG" msgstr "" -#: src\commands\metagame.ts:220 -#: src\commands\metagame.ts:255 +#: src\commands\metagame.ts:218 +#: src\commands\metagame.ts:247 msgctxt "command-option-choice" msgid "OCG" msgstr "" -#: src\commands\metagame.ts:221 -#: src\commands\metagame.ts:259 +#: src\commands\metagame.ts:219 +#: src\commands\metagame.ts:251 msgctxt "command-option-choice" msgid "OCG (Asian-English)" msgstr "" -#: src\commands\metagame.ts:228 +#: src\commands\metagame.ts:222 msgctxt "command-option-choice" msgid "Master Duel Diamond+ tier list" msgstr "" -#: src\commands\metagame.ts:261 +#: src\commands\metagame.ts:253 msgctxt "command-option-choice" msgid "Master Duel ranked ladder" msgstr "" -#: src\commands\metagame.ts:283 +#: src\commands\metagame.ts:275 msgctxt "command-option-choice" msgid "Current format" msgstr "" -#: src\commands\metagame.ts:287 +#: src\commands\metagame.ts:279 msgctxt "command-option-choice" msgid "Since last Forbidden/Limited List" msgstr "" -#: src\commands\metagame.ts:291 +#: src\commands\metagame.ts:283 msgctxt "command-option-choice" msgid "Last 7 days" msgstr "" -#: src\commands\metagame.ts:295 +#: src\commands\metagame.ts:287 msgctxt "command-option-choice" msgid "Last 14 days" msgstr "" -#: src\commands\metagame.ts:299 +#: src\commands\metagame.ts:291 msgctxt "command-option-choice" msgid "Last 30 days" msgstr "" -#: src\commands\metagame.ts:303 +#: src\commands\metagame.ts:295 msgctxt "command-option-choice" msgid "Last three months" msgstr "" -#: src\commands\metagame.ts:307 +#: src\commands\metagame.ts:299 msgctxt "command-option-choice" msgid "Last six months" msgstr ""